2

I want to setup a SOCKS proxy server on linux, any recommendations?

I currently use SS5 and want to know if there are any better alternatives.

TristanK
  • 9,073
  • 2
  • 28
  • 39
user12145
  • 1,115
  • 6
  • 28
  • 47
  • 1
    Shopping Questions are Off-Topic on any of the [se] sites. See [Q&A is hard, lets go Shopping](http://blog.stackoverflow.com/2010/11/qa-is-hard-lets-go-shopping) and the [FAQ] for more details. – Chris S Feb 21 '13 at 03:23

4 Answers4

1

I dunno whether it's the best one or not, but I can mention DeleGate.

Gfy
  • 103
  • 5
poige
  • 9,448
  • 2
  • 25
  • 52
0

Depends on what you need, but the good old Squid can do almost anything.

Janne Pikkarainen
  • 31,852
  • 4
  • 58
  • 81
0

Better? sure, try Zeus's ZXTM, way better but tens of thousands of dollars per license - could you try narrowing down your requirements please.

Chopper3
  • 101,299
  • 9
  • 108
  • 239
  • I simply need a socks 5 proxy server that would sit on one physical server with about 30 ips and proxy traffic from traffic from other servers. – user12145 Jul 30 '10 at 18:03
0

I recommend SSH as well, mainly because of the strong crypto and maturity of the code. Here is the command I use:

ssh -p 22 -C2qTnN -D 8080 user@remote-ssh-server.net

belteshazzar
  • 302
  • 4
  • 9
  • 1
    You don't actually want a ssh server to do socks on something like a gateway router because of the added issues. A dedicated socks server is alot better – placid chat Sep 06 '21 at 05:43