I have an openvpn server running on my 8.09.1 router. My clients are able to connect to the VPN server and also ping/access the IP of the VPN server, however they are not able to reach any IPs behind the router (the routes are set up properly). Before I upgraded to this version (from 8.07) I used these rules:
iptables -A INPUT -i tun+ -j ACCEPT
iptables -A FORWARD -i tun+ -j ACCEPT
iptables -A OUTPUT -o tun+ -j ACCEPT
iptables -A FORWARD -o tun+ -j ACCEPT
iptables -A forwarding_rule -o tun+ -j ACCEPT
iptables -t nat -A postrouting_rule -o tun+ -j MASQUERADE
However, they don't seem to work anymore. Does anyone know how to set this up properly (preferrably in /etc/config/firewall)? It needs to work both ways as the VPN is connecting two LANs.
Thanks for any help!
Thomas