On 25/09/09 16:40, Thomas.Hluchnik@xxxxxxxxxxxxx wrote:
Hello, I am a bit new to ipfilter stuff and didnt succeed in forwarding my OpenVPN traffic. Maybe someone is able to tell me the iptables commands. Situation: I got a dedicated Rootserver with one network interface. Some days ago I setup a OpenVPN server (IP-Range 10.47.11.0/24) on that box which works for itself. At home I have a OpenVPN client connected to the server, which works, too. I can ping the tun Interface of the server, I can login through the VPN channel on the server and I can dig @tun-interface any-domain.
Check that you have ip forwarding enabled. cat /proc/sys/net/ipv4/ip_forward echo 1 > /proc/sys/net/ipv4/ip_forward (to enable it) man sysctl (also check openvpn startup script) to make the changes permanent. There should also be a FORWARD line in you firewall something like this (if you use the tun interface): iptables -A FORWARD -i tun+ -s 10.47.11.0/24 -j ACCEPT Giannis -- To unsubscribe from this list: send the line "unsubscribe netfilter" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html