How to use ssh from the command prompt to use a proxy.
First go to http://archive.ubuntu.com/ubuntu/poo...connect-proxy/
and get the latest tar.gz (not .deb) version of connect-proxy.
from the command prompt enter the directory you downloaded it to (default is /root in bt3)
go into the new directoryCode:tar -zxvf [latest version].tar.gz
Then, create a file ~/.ssh/config, whit this:Code:gcc -o connect-proxy connect.c cp connect-proxy /bin
---
Host *
ProxyCommand connect-proxy -H proxy2.your.proxy.com:8080 %h %p
---
Finally, test the connection:
ssh -F .ssh/config mysite.argentina.com.ar -p 3000
And i did a tunnel to another application:
ssh -F .ssh/config -g -L 8000:192.168.2.1:2211 mysite.argentina.com.ar -p 3000
Now you can go into firefox and change the network settings to use a proxy. Set it to manual configuration, and go down to socks HOST and enter 127.0.0.1 and 3000 for the port
Got this from http://serverlinux.blogspot.com/2008...in-ubuntu.html
and added the info for use in backtrack.
EDIT: Tested on 4 and works the same. "apt-get install connect-proxy" will work instead of compiling the file
this help anyone or was it something that was obvious?