Run socks 5 as a vpn

BakaUsagi

Junior Member
Joined
Aug 14, 2018
Messages
198
Reaction score
109
is there a way to run sock 5 proxies as a vpn?
I'm looking for a program where I can input my socks ip:port:credentials
and it'll create a network connection like tunnel bear or open vpn do
1687566487941.png
 
SSH (Secure Shell): One common method is to use SSH to create a SOCKS tunnel. This is particularly useful if you have access to a remote server. By using SSH, you can create a local SOCKS proxy on your system and tunnel your traffic through it. Here is an example command for creating a SOCKS proxy using SSH:

mathematicaCopy code
ssh -D 8080 -f -C -q -N [email protected]
 
Socks a VPN? Not too sure about that, see if the existing programs that usually does that can run compatibility using Socks port. Otherwise, you could always get one coded, although that seems tricker typing it down now.
 
An experienced Chinese person in this field would tell you that there is a program called Clash. It can transform a SOCKS5 proxy into VPN mode and has clients available on all platforms. However, you need to set up its server-side on a VPS or directly purchase it. https://github.com/Fndroid/clash_for_windows_pkg/releases
 
Back
Top