Currently, I have something like:
iptables -A INPUT -p ICMP --icmp-type 8 -j DROP
iptables -A INPUT -s x.x.x.x -p ICMP --icmp-type 8 -j ACCEPT
However, when I run the second command, it looks as if iptables just stops. I have to break out of it to get back to terminal. Perhaps I am doing it all wrong, but some insight would be helpful.
Thanks!

-Ato-I– Patrick Jun 14 '11 at 1:48iptables -L -nvand check out the counters when you're testing your rules you'll find out it's probably incrementing dropping the packets never reaching your other rule. – xenoterracide♦ Jun 14 '11 at 2:32