1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Update to 100

- Pass maintainership to submitter

PR:		128619
Submitted by:	Steven Kreuzer <skreuzer@exit2shell.com>
This commit is contained in:
Martin Wilke 2008-11-09 22:53:24 +00:00
parent 53443c8dd8
commit b520942848
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=222645
3 changed files with 27 additions and 12 deletions

View File

@ -1,4 +1,4 @@
# New ports collection makefile for: replay
# New ports collection makefile for: proxy-connect
# Date created: 22 Jun 2005
# Whom: alfred@freebsd.org
#
@ -6,13 +6,14 @@
#
PORTNAME= proxy-connect
PORTVERSION= 1.96
PORTVERSION= 100
CATEGORIES= net
MASTER_SITES= http://people.freebsd.org/~alfred/sources/proxy-connect/
MASTER_SITES= http://www.exit2shell.com/~skreuzer/distfiles/ \
http://www.atarininja.org/distfiles/
DISTNAME= $(PORTNAME)-$(PORTVERSION)
MAINTAINER= ports@FreeBSD.org
COMMENT= A socks4, socks5 and http proxy tool
MAINTAINER= skreuzer@exit2shell.com
COMMENT= Command to make network connections via SOCKS and HTTPS proxies
USE_BZIP2= yes

View File

@ -1,3 +1,3 @@
MD5 (proxy-connect-1.96.tar.bz2) = a7f780cfe3ed26650be3ad2527986db2
SHA256 (proxy-connect-1.96.tar.bz2) = bbc187cdfe8d0b7c7b6d43d3ccdae52023fcc768f6be4313bfc41c98049269e4
SIZE (proxy-connect-1.96.tar.bz2) = 20767
MD5 (proxy-connect-100.tar.bz2) = 5210df1f2beedd28f27735ad72f0e33c
SHA256 (proxy-connect-100.tar.bz2) = dc9660277aa6cc0253f1fab3a3e636a422360f90630eeba97f8f4b7e4fac4355
SIZE (proxy-connect-100.tar.bz2) = 21907

View File

@ -1,7 +1,21 @@
A proxy tunnel tool, best used as a wrapper for ssh.
proxy-connect is a simple relaying command to make network connection via SOCKS
and HTTPS proxies. It is mainly intended to be used as proxy command for
OpenSSH.
ProxyCommand /usr/local/sbin/proxy-connect -S socks:1080 %h %p
Features of proxy-connect are:
Docs here: http://zippo.taiyo.co.jp/~gotoh/ssh/connect.html
* Supports SOCKS (version 4/4a/5) and HTTPS CONNECT method.
* Supports NO-AUTH and USERPASS authentication of SOCKS
* Partially supports telnet proxy (experimental).
* You can input password from tty, ssh-askpass or environment variable.
* Simple and general program independent from OpenSSH.
* You can also relay local socket stream instead of standard I/O.
-Alfred Perlstein <alfred@freebsd.org>
Example Usage:
Add to ~/.ssh/config
Host remote.outside.net
ProxyCommand /usr/local/sbin/proxy-connect -S socks:1080 %h %p
WWW: http://www.meadowy.org/~gotoh/projects/connect