DEV Community

Cover image for [Video] How to proxy your web traffic via your Linux Server without a VPN
Bobby Iliev
Bobby Iliev

Posted on • Originally published at devdojo.com

26 12

[Video] How to proxy your web traffic via your Linux Server without a VPN

In this video, I will show you a pretty cool and easy way on how to proxy your web traffic without having to install a VPN or do any special server configuration by just using SSH tunneling!

All you would need is a server and SSH access.

You can use my DigitalOcean referral code to get a free $100 credit to spin up your own servers:

Free $100 DigitalOcean credit

The command that you would need to use is:

ssh -ND 1080 root@your-server.com
Enter fullscreen mode Exit fullscreen mode

There would be no output. This would open a socket that we would use to connect to and proxy our network traffic.

Rundown of the command:

  • -N - Do not execute a remote command. This is useful for just forwarding ports also hides the output from the SSH connection.

  • -D - 1080 creates a local “dynamic” application-level port forwarding, in this case 1080, on your local computer. 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.

Once you have the socket ready you can use any browser to connect to the SSH tunnel. In my case, I would use Firefox.

You need to go to Preferences -> Advanced -> Network -> Settings -> And update your Configure Manual proxy configuration.

Update the SOCKS HOST to localhost and the port to 1080. Make sure to choose SOCKS v5.

This is pretty much it, now all of your Web Traffic would be routed through your Web Server:

To stop the SSH tunnel, just interrupt the SSH connection and change your Firefox settings back to No Proxy.

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (3)

Collapse
 
realtebo profile image
Mirko Tebaldi

Could you suggest a use case?

Collapse
 
koas profile image
Koas

There are some services that are restricted to users from a certain country. Here in Spain, for example, you can watch the state TV channels from their website but only if you connect from Spain.

Using the method Bobby explained you can use a spanish server as a proxy and watch those channels from anywhere in the world, since to the TV site you'll look as if you're connecting from inside Spain.

Collapse
 
bobbyiliev profile image
Bobby Iliev • Edited

Yep, thank you for the answer @koas ! 🙌

Whenever you need to browse the web from another IP you can use this approach rather than setting up a full-blown OpenVPN server or paying for a VPN service.

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

If this post resonated with you, feel free to hit ❤️ or leave a quick comment to share your thoughts!

Okay