11

I'm looking for a way to use configured a Socks5 across the whole system including terminals, apps, browsers, etc.

For instance, I run a socks5 proxy on my localhost on port 1080 using V2ray or Shadowsocks or an SSH tunnel then I can use these proxies on my browsers via Firefox proxy configuration to listen from 1080 port or via FoxyProxy extension on the Chrome by the same way. Now, I'm going to find a way to use this across my whole system same as connecting to a VPN.

Any help would be greatly appreciated.

andrew.46
  • 39,359
Benyamin Jafari
  • 4,234
  • 4
  • 27
  • 37

1 Answers1

1

You can use sshuttle to create a transparent proxy that routes all your system traffic through an SSH tunnel. It works like a VPN but uses SSH. Just run:

sshuttle -dns -r user@remote_host 0.0.0.0/0
Arash
  • 11