diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-11-09 22:53:24 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-11-09 22:53:24 +0000 |
commit | b5209428481a6799775bdd3a9e365e8dfddb3f26 (patch) | |
tree | 21404b0cd3f05db642d3b15e069b31d6174d284e /net/proxy-connect/pkg-descr | |
parent | 53443c8dd85767b7caa628c11fa7b17899bd4cab (diff) |
Notes
Diffstat (limited to 'net/proxy-connect/pkg-descr')
-rw-r--r-- | net/proxy-connect/pkg-descr | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/net/proxy-connect/pkg-descr b/net/proxy-connect/pkg-descr index 6a26a145a642..c550ba7f6696 100644 --- a/net/proxy-connect/pkg-descr +++ b/net/proxy-connect/pkg-descr @@ -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 |