Skip to content

Instantly share code, notes, and snippets.

@rstrlcpy
Created September 26, 2018 11:32
Show Gist options
  • Save rstrlcpy/2f45d476a2a6bd4a106cd6affe2f16c8 to your computer and use it in GitHub Desktop.
Save rstrlcpy/2f45d476a2a6bd4a106cd6affe2f16c8 to your computer and use it in GitHub Desktop.
openvpn-iptables
How to configure iptables for openvpn
If you have installed the openvpn server and iptable is blocking the service by default then use these configurations for openvpn to function properly. First let's allow the tcp connection on the openvpn port. If you are using udp or another port number then change this line accordingly.
iptables -A INPUT -i eth0 -m state --state NEW -p udp --dport 1194 -j ACCEPT
Allow TUN interface connections to OpenVPN server
iptables -A INPUT -i tun+ -j ACCEPT
Allow TUN interface connections to be forwarded through other interfaces
iptables -A FORWARD -i tun+ -j ACCEPT
iptables -A FORWARD -i tun+ -o eth0 -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i eth0 -o tun+ -m state --state RELATED,ESTABLISHED -j ACCEPT
NAT the VPN client traffic to the Internet. change the ip address mask according to your info of tun0 result while running "ifconfig" command.
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE
If your default iptables OUTPUT value is not ACCEPT, you will also need a line like:
iptables -A OUTPUT -o tun+ -j ACCEPT
That's it now restart the iptables service and you are finished.
original: https://arashmilani.com/post?id=53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment