From: Michael Tremer Date: Tue, 20 May 2014 09:27:24 +0000 (+0200) Subject: firewall: Rename GUIINPUT chain to ICMPINPUT. X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=commitdiff_plain;h=8e59a6022bf7cb225c3509be2964833cce0e630c firewall: Rename GUIINPUT chain to ICMPINPUT. The name of the chain does not really explain what it does. --- diff --git a/src/initscripts/init.d/firewall b/src/initscripts/init.d/firewall index 837178110..853f195cf 100644 --- a/src/initscripts/init.d/firewall +++ b/src/initscripts/init.d/firewall @@ -120,10 +120,10 @@ iptables_init() { iptables -N IPTVFORWARD iptables -A FORWARD -j IPTVFORWARD - # filtering from GUI - iptables -N GUIINPUT - iptables -A INPUT -j GUIINPUT - iptables -A GUIINPUT -p icmp --icmp-type 8 -j ACCEPT + # Allow to ping the firewall. + iptables -N ICMPINPUT + iptables -A INPUT -j ICMPINPUT + iptables -A ICMPINPUT -p icmp --icmp-type 8 -j ACCEPT # Accept everything on loopback iptables -N LOOPBACK