-- I have been trying to block all traffic from an internal ip address, and packets are still going out, (seen with tcpdump) I don't see any traffic coming in for that ip. here are the rukles I have put in place. /sbin/iptables -A INPUT -i $CLEANIF1 -s 192.168.31.208 -j DROP /sbin/iptables -A INPUT -i $CLEANIF1 -d 192.168.31.208 -j DROP I thought this would shut down 192.168.31.208, however that is not the case. any advice would be appreciated.