On Fri, May 12, 2006 at 07:29:53PM, Keith McGavin wrote: > #drop addresses that may be spoofed from external hosts. > iptables -A INPUT -i ppp0 -s 10.0.0.0/8 -j DUMP > iptables -A INPUT -i ppp0 -s 192.168.0.0/16 -j DUMP
DUMP is a user-defined target and the default DROP target was intended. iptables -A INPUT -i ppp0 -s 10.0.0.0/8 -j DROP iptables -A INPUT -i ppp0 -s 192.168.0.0/16 -j DROP apologies for the error. --- keith.
