public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] drop excessive ICMP ping traffic to the firewall
@ 2019-07-04 17:31 Peter Müller
  2019-07-04 18:18 ` Michael Tremer
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Müller @ 2019-07-04 17:31 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1235 bytes --]

pings are replied to for diagnostic reasons only. As unlimited
response generation may open up a (D)DoS attack surface for
both external and internal networks, dropping excessive traffic
is reasonable.

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 src/initscripts/system/firewall | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall
index b3483a744..622d7de4e 100644
--- a/src/initscripts/system/firewall
+++ b/src/initscripts/system/firewall
@@ -214,10 +214,12 @@ iptables_init() {
 	iptables -N IPTVFORWARD
 	iptables -A FORWARD -j IPTVFORWARD
 
-	# Allow to ping the firewall.
+	# Allow non-excessive pings to the firewall
 	iptables -N ICMPINPUT
 	iptables -A INPUT -j ICMPINPUT
-	iptables -A ICMPINPUT -p icmp --icmp-type 8 -j ACCEPT
+	iptables -A ICMPINPUT -p icmp --icmp-type 8 -m limit --limit 100/second -j ACCEPT
+	iptables -A ICMPINPUT -p icmp --icmp-type 8 -m limit --limit 10/minute -j LOG --log-prefix "DROP_PINGFLOOD " -m comment --comment "DROP ping flood"
+	iptables -A ICMPINPUT -p icmp --icmp-type 8 -j DROP
 
 	# Accept everything on loopback
 	iptables -N LOOPBACK
-- 
2.16.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-07-04 18:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-04 17:31 [PATCH] drop excessive ICMP ping traffic to the firewall Peter Müller
2019-07-04 18:18 ` Michael Tremer
2019-07-04 18:32   ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox