> # iptables -I FORWARD -i eth0 -d 192.168.0.0/255.255.0.0 -j DROP > # iptables -A FORWARD -i eth0 -s 192.168.0.0/255.255.0.0 -j ACCEPT > # iptables -A FORWARD -i eth1 -d 192.168.0.0/255.255.0.0 -j ACCEPT
I'm still working through my iptables for my home router, but I think you need to specify both the input and output cards for the FORWARD directive to get them to work. Try: iptables -I FORWARD -i eth0 -o eth1 -d 192.168.0.0/255.255.0.0 -j DROP iptables -A FORWARD -i eth0 -o eth1 -s 192.168.0.0/255.255.0.0 -j ACCEPT iptables -A FORWARD -I eth1 -o eth0 -d 192.168.0.0/255.255.0.0 -j ACCEPT -- gentoo-user@gentoo.org mailing list