Proxy using SSH Tunnel

Browse the web using your SSH Server by making it a proxy server


To use it, you can use your terminal if you are in Linux, or Putty/WSL in Windows.

ssh -D8888 login@10.0.0.30


The SSH client will create a SOCKS proxy you can configure applications to use. All the traffic sent through the proxy would be sent through the SSH server. It takes local traffic sent to a specific port on your PC and sends it over the SSH connection to a remote location.
And on your browser (i do recommend firefox for it) you can configure as a socket proxy. Using address localhost and the same port that you choosed.

Comments are Disabled