How to implement local application proxy in Windows?
-
- Posts: 1
- Joined: Mon Mar 20, 2023 11:54 am
How to implement local application proxy in Windows?
I want to implement vpn only on my browser instead of the whole world, how can I do it?
-
- Posts: 1637
- Joined: Sun Feb 14, 2021 10:31 am
-
- Posts: 289
- Joined: Wed Dec 28, 2022 9:10 pm
Re: How to implement local application proxy in Windows?
Here is another solutionvalterjoyce wrote: ↑Mon Mar 20, 2023 12:00 pmI want to implement vpn only on my browser instead of the whole world, how can I do it?
Assuming
- you have VPS (Virtual Private Server) out of your restricted network
- on your PC you have install SSH
- your browser could be any which supports "socks5 proxy"
On you PC run
Code: Select all
ssh -fNTCD localhost:<PORT> <REMOTE-SERVER>
# example
ssh -fNTCD localhost:1080 root@1.2.3.4
You do not need a VPN for having a proxy