Posted 17 May 2005 - 06:05 AM
I am running FC3 with newes SSH version (can't remember of the top of my head).. but you can specify a proxy server in your ssh_config file (either /etc/ssh/ssh_config or ~/.ssh/ssh_config for a specific user)
Here's what I put..
Host *
ProxyCommand /usr/local/bin/sconnect -4 -S localhost:<proxyPort>%h %p
So.. everytime you try to connect to an ssh server, it will alway try to run 'connect' to to your local socks server at port <proxyPort> using the parameters passed from your ssh commandline.
Likewise.. you can use a program like socat to redirect your ssh tunnel to a proxy on your network like this:
Host *
ProxyCommand socat STDIO SOCKS4A:<proxysvrIP>:%h:%p,socksport=<proxyPort>
Is your proxy local to your machine or your network?