New answers tagged openvpn
2
You need to modify your iptables rule: It should be for UDP, not for TCP. Additionally, your server gets the UDP traffic to port 2000 as your router rewrites the destination port and IP:
iptables -t filter -A INPUT -p udp --dport 2000 -j ACCEPT
0
It maybe missing a gateway address. – Salton
Thanks, that was it. The script provided by OpenVPN apparantly doesn't copy that part from eth0. – InFerNo
Top 50 recent answers are included