Be your own VPN provider with OpenBSD
networkfilter.blogspot.com
Be your own VPN provider with OpenBSD
1–10 of 63 posts
Re: Be your own VPN provider with OpenBSD
#2$ ssh -D 1080 myserver.myhost.net
Then configure Chrome or Firefox or whatever to use a SOCKS5 proxy on localhost, port 1080. (N.B. that this does not tunnel DNS lookups by default.)
The OpenVPN-based route is the way to go for something used regularly, but the above is sometimes super-convenient!
Re: Be your own VPN provider with OpenBSD
#3If anyone's ever looking for an even quicker hack, ssh has built-in the ability to act as a SOCKS5 proxy, tunneling your traffic over ssh to whatever remote machine you might have access to: $ ssh -D 1080 myserver.myhost.net Then configure Chrome or Firefox or whatever to use a SOCKS5 proxy on localhost, port 1080. (N.B. that this does not tunnel DNS lookups by default.) The OpenVPN-based route is the way to go for s…
Re: Be your own VPN provider with OpenBSD
#4If anyone's ever looking for an even quicker hack, ssh has built-in the ability to act as a SOCKS5 proxy, tunneling your traffic over ssh to whatever remote machine you might have access to: $ ssh -D 1080 myserver.myhost.net Then configure Chrome or Firefox or whatever to use a SOCKS5 proxy on localhost, port 1080. (N.B. that this does not tunnel DNS lookups by default.) The OpenVPN-based route is the way to go for s…
Very useful.
Re: Be your own VPN provider with OpenBSD
#5If anyone's ever looking for an even quicker hack, ssh has built-in the ability to act as a SOCKS5 proxy, tunneling your traffic over ssh to whatever remote machine you might have access to: $ ssh -D 1080 myserver.myhost.net Then configure Chrome or Firefox or whatever to use a SOCKS5 proxy on localhost, port 1080. (N.B. that this does not tunnel DNS lookups by default.) The OpenVPN-based route is the way to go for s…
You can bundle all the configuration for a particular client into a .ovpn file - this includes the client and CA certificates.
I use this on iPhones and iPads, with the OpenVPN iOS app - works great for a family of iOS devices that need access to some geo-locked services.
Re: Be your own VPN provider with OpenBSD
#6[0]https://github.com/OpenVPN/easy-rsa
[1]https://community.openvpn.net/openvpn/wiki/EasyRSA3-OpenVPN-....
Re: Be your own VPN provider with OpenBSD
#7Re: Be your own VPN provider with OpenBSD
#8Re: Be your own VPN provider with OpenBSD
#9I've been considering running all my mobile data through a VPN for better security, and saving all of it so I can analyze anything after the fact. Anyone doing anything like this?