Martin's Tex-Blog

Posts on programming and generally technical topics

Archive for November 2009

Hello world!

leave a comment »


Hello everyone, just moved my WordPress blog from other server, here. I hope to stay here for a longer time.

Written by Marcin

November 30, 2009 at 12:06 pm

Posted in Uncategorized

Configure firefox to use proxy using ssh

leave a comment »


If you own some remote server access over ssh, then you can easily tunell all your http request over it. Under linux ssh tool is available by default, under windows its best to install Cygwin with ssh. After that all you have to do is issue following command:

$ ssh -ND localhost:8080 $USER@$REMOTE_SERVER

where localhost:8080 means that ssh will bind to localhost on port 8080, $USER is the name of your user account on remote server $REMOTE_SERVER.

after that you need to configure firefox to. Under firefox : enter Tools->Options->Advanced->Network->Settings, choose manual configuration and fill “Host Socks” with localhost:8080.

and thats all

Advertisement

Written by Marcin

November 18, 2009 at 7:40 am

Posted in Linux