vote up 0 vote down star

I have an SSH account with a web hosting company, is there any way I can utilize this to set up my own socks server? I mean so that I can set up the proxy settings in IE: a proxy server IP address (apparently, my host) and a port in order to browse the web anonymously through my hosting server from my personal computer?

Thanks!

flag

not programming related – Nathan Koop Apr 1 at 15:02
yeah, sucks doesn't it – kavoir.com Apr 2 at 0:27

closed as not programming related by cletus, Rowland Shaw, Mehrdad Afshari, sharptooth, Manni Apr 1 at 15:52

3 Answers

vote up 1 vote down check

Using PuTTY you can create a 'dynamic' tunnel which will forward all traffic to the server you are connected to, but the server has have the feature turned on.

In PuTTY Configuration under Connection > SSH > Tunnels enter the port you want, select the radio button for 'Dynamic' and click 'Add'.

link|flag
Thanks! That's absolutely helpful! – kavoir.com Apr 2 at 7:46
vote up 0 vote down

In addition to the SSH tunnel described in another answer, you need to run a http proxy or a SOCKS server on your web hosting machine. If the hosting company don't provide one, you can google for an open source one and compile it there (assuming you can compile programs).

link|flag
ssh itself can act as a SOCKS proxy – Adam Jaskiewicz Apr 1 at 15:27
vote up 1 vote down

From man ssh:

     -D [bind_address:]port
             Specifies a local ``dynamic'' application-level port forwarding.
             This works by allocating a socket to listen to port on the local
             side, optionally bound to the specified bind_address.  Whenever a
             connection is made to this port, the connection is forwarded over
             the secure channel, and the application protocol is then used to
             determine where to connect to from the remote machine.  Currently
             the SOCKS4 and SOCKS5 protocols are supported, and ssh will act
             as a SOCKS server.  Only root can forward privileged ports.
             Dynamic port forwardings can also be specified in the configura-
             tion file.
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.