I have a network setup as depicted in the upper part of this figure:
All devices in the local network are connected to the router via Ethernet/WIFI, while the router connects to the internet over 3G. The router is set up to provide DHCP addresses and to reroute ssh requests from the internet to my server, while blocking everything else. The server itself runs Ubuntu.
Currently all the traffic from my local network to the internet goes through the router directly. What I want to set up now is an OpenVPN connection on the server and redirect all traffic through this OpenVPN tunnel as depicted in the lower part of the figure. Therefore I suspect I need the following:
- create an OpenVPN configuration on the server that reconnects each time the tunnel breaks down for some reason
- get a dhcp service running on the server, that provides the correct information to the rest of the clients in the network (will replace the dhcp service on the router)
- a special iptables configuration on the server that does the redirection and still allows connections to my ssh server that don't go through the tunnel but are redirected from the internet to the router...
What I've come so far is the dhcp configuration for the server, that just tells the clients the ips and gives 10.0.0.3 as dns server and gateway. The iptables setup was largely borrowed from here
http://tldp.org/HOWTO/Masquerading-Simple-HOWTO/summary.html
and looks like this (assuming tun0 to be the vpn tunnel and eth0 to be the one and only ethernet interface of the server):
$> modprobe ipt_MASQUERADE # If this fails, try continuing anyway
$> iptables -F; iptables -t nat -F; iptables -t mangle -F
$> iptables -t nat -A POSTROUTING -o tun0 -j MASQUERADE
$> echo 1 > /proc/sys/net/ipv4/ip_forward
$> iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
$> iptables -A INPUT -m state --state NEW -i eth0 -j ACCEPT # -> passing "! tun0" does not work here giving "bad interface" error
$> iptables -P INPUT DROP #only if the first two are succesful
$> iptables -A FORWARD -i tun0 -o tun0 -j REJECT
$> iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
$> iptables -A OUTPUT -p tcp -m tcp --dport 22 -j ACCEPT
the problem I face now is that with this configuration, the server is not able to do a dns request for the openvpn server PRIOR to connection - so "openvpn --config mydedicatedvpnserver.config" fails due to the not resolvable ip address. I can circumvent this by adding
$> iptables -A INPUT -p udp --dport 53 -j ACCEPT
but I'm not sure if the traffic then still goes through the tunnel or bypasses it somewhere - I feel dns requests are then set up to bypass the tunnel. Also changing the default policy of the INPUT chain to ACCEPT would do the trick, but that's probably not a good idea. I also don't know if I have to additionally alter the routing table with "route "- something...
Any help how to set this configuration up correctly is highly appreciated. I hope someone has already a working setup....