The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

connect-tunnel - Create CONNECT tunnels through HTTP proxies

SYNOPSIS

connect-tunnel [ -v ] [ -A user:pass ] [ -P proxy:port ] -T port:host:hostport [ -T port:host:hostport ]

DESCRIPTION

connect-tunnel sets up tunneled connections to external hosts by redirecting connections to local ports towards thoses hosts/ports through a HTTP proxy.

connect-tunnel makes use of the HTTP CONNECT method to ask the proxy to create a tunnel to an outside server. Be aware that some proxies are set up to deny some outside tunnels (either to ports other than 443 or outside a specified set of outside hosts).

OPTIONS

The program follows the usual GNU command line syntax, with long options starting with two dashes.

-A, --proxy-authentication user:password

Proxy authentication information.

Please note that all the authentication schemes supported by LWP::UserAgent are supported (we use an LWP::UserAgent).

This means we also support NTLM, since it is supported as from libwww-perl 5.66.

-L, --local-only

Create the tunnels so that they will only listen on localhost. Thus, only connections originating from the machine that runs connect-tunnel will be accepted.

That was the default behaviour in connect-tunnel version 0.02.

-P, --proxy proxy[:port]

The proxy is required to connect the tunnels. If no port is given, 8080 is used by default.

See also "ENVIRONMENT VARIABLES".

-T, --tunnel port:host:hostport

Specifies that the given port on the local host is to be forwarded to the given host and hostport on the remote side. This works by allocating a socket to listen to port on the local side, and whenever a connection is made to this port, the connection is forwarded through the proxy, and a connection is made to the remote host at port hostport.

On Unix systems, only root can forward privileged ports.

Note that you can setup tunnels to multiple destinations, by using the --tunnel option several times.

-U, --user-agent string

Specify User-Agent value to send in HTTP requests. The default is to send connect-tunnel/version.

-v, --verbose

Verbose output.

This option can be used several times for more verbose output.

EXAMPLES

To connect to a SSH server running beyond the proxy on port 443, through the proxy proxy.company.com, running on port 8080, use the following command:

 connect-tunnel -P proxy.company.com:8080 -T 22:ssh.example.com:443

And now point your favorite ssh client to the machine running connect-tunnel.

You can also emulate a "standard" user-agent:

 connect-tunnel -U "Mozilla/4.03 [en] (X11; I; Linux 2.1.89 i586)"
                -P proxy.company.com:8080 -T 22:ssh.example.com:443

connect-tunnel can easily use your proxy credentials to connect outside:

 connect-tunnel -U "Mozilla/4.03 [en] (X11; I; Linux 2.1.89 i586)"
                -P proxy.company.com:8080 -T 22:ssh.example.com:443
                -A book:s3kr3t

But if you don't want anybody else to connect to your tunnels and through the proxy with your credentials, use the --local-only option:

 connect-tunnel -U "Mozilla/4.03 [en] (X11; I; Linux 2.1.89 i586)"
                -P proxy.company.com:8080 -T 22:ssh.example.com:443
                -A book:s3kr3t -L

If you have several destinations, there is no need to run several instances of connect-tunnel:

 connect-tunnel -U "Mozilla/4.03 [en] (X11; I; Linux 2.1.89 i586)"
                -P proxy.company.com:8080 -A book:s3kr3t -L
                -T 22:ssh.example.com:443
                -T 222:ssh2.example.com:443

But naturally, you will need to correctly set up the ports in your clients.

Mmm, such a long command line would perfectly fit in an alias or a .BAT file. ;-)

ENVIRONMENT VARIABLES

The LWP::UserAgent that is used to connect to the proxy accept the usual HTTP_PROXY environment variable to define the proxy.

The environment variable is overriden by the --proxy option, if passed to connect-tunnel.

TODO

Next version should have an option to create a control port, to which one could connect to interact with connect-tunnel and add/remove tunnels, close connections, change the User-Agent string, and so on.

AUTHOR

Philippe "BooK" Bruhat <book@cpan.org>

I seem to have re-invented a well-known wheel with that script, but at least hope I have added a few interesting options to it.

Bits of the documentation wording is stolen from OpenSSH documentation about options -L and -R.

COPYRIGHT

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.