I'm using CentOS 5.x trying to wrap my mind around the following iptables rule on one of my servers:
-A RH-Firewall-1-INPUT -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
On another server I have:
-A RH-Firewall-1-INPUT -p icmp --icmp-type echo-request -m limit --limit 1/s --limit-burst 3 -j ACCEPT
I understand that both of these rules are designed to allow (and throttle) incoming ping requests but what is the limit-burst
option about? And are these allowances on a per host basis? Or do they apply to any/all incoming ICMP connections at all?