Earlier quoted context omitted.
I think the fact that this leaks DNS lookups is really quite key because that gives away a huge amount about what you're looking at over your "vpn", not to mention services like netflix that are pointing you to different responses based upon the source of your dns lookups. In firefox you want to go to about:config page and turn on network.proxy.socks_remote_dns
I'm using the latest stable release of Firefox (34.0.5) and I see a "Remote DNS" checkbox under my SOCKS proxy configuration. Isn't that the same option in the GUI? No about:config tweaks needed? I would think so, but everyone seems to be giving the about:config business, so maybe I am missing something.
Be your own VPN provider with OpenBSD
41–50 of 63 posts
Re: Be your own VPN provider with OpenBSD
#42Re: Be your own VPN provider with OpenBSD
#43Which is why I had to mention IPsec VPN and link to a good article on how to manage it on OpenBSD.
Re: Be your own VPN provider with OpenBSD
#44Earlier quoted context omitted.
Even better trick is SSH can actually tunnel level 3 data! Via TUN/TAP interfaces (this is effectively how some VPN implementations do it). See "-w" option Here are a few guides. This is more involved than just adding the -D option and setting a "proxy" field in some applications but this is more general as well: http://sleepyhead.de/howto/?href=vpn https://wiki.archlinux.org/index.php/VPN_over_SSH https://help.ubunt…
Yes, except for the TCP-over-TCP issue.
Also, if your connection to the VPN host is quite good, then the TCP-over-TCP issue does not apply as much. The bad cases happen when that connection has packet loss.
Re: Be your own VPN provider with OpenBSD
#45Re: Be your own VPN provider with OpenBSD
#46Re: Be your own VPN provider with OpenBSD
#47SSH over socks 5 would be a better option than OpenBSD
Re: Be your own VPN provider with OpenBSD
#48If 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…
I sometimes use sshuttle when I want to tunnel traffic through a remote server, can intercept and route DNS requests along the tunnel to using --dns. sshuttle --dns -r root@XX.XX.XX.XX 0/0 --exclude 192.168.0.0/9 Exclude as used here stops local addresses being tunneled.
I hope someone is able to crank out a version that used pf soon.
Re: Be your own VPN provider with OpenBSD
#49If you don't trust us and prefer to do it on your own, that's fine too, it's open source: https://github.com/tinfoil/openvpn_autoconfig/blob/master/bi...
Re: Be your own VPN provider with OpenBSD
#50Why would you trust a VPS more than a VPN? They still can log or intercept your traffic, can't they?