Tag Archives: openvpn

Using iptables to route OpenVPN traffic
avatar

To have your vpn traffic be able to reach the internet you just need to add the following iptable rules: iptables -A FORWARD -i tun0 -j ACCEPT iptables -A FORWARD -i tun0 -o eth0 -m state –state RELATED,ESTABLISHED -j ACCEPT iptables -A FORWARD … Continue reading

Posted in Arch, CentOS, Fedora, Guides, Linux, Networking | Tagged , | Leave a comment