firewall: Remove even more redundant rules.

This commit is contained in:
Michael Tremer
2014-02-21 11:35:05 +01:00
parent cc21b588df
commit c2f7250b23

View File

@@ -230,14 +230,6 @@ iptables_init() {
# read new firewall
/usr/local/bin/firewallctrl
if [ "$DROPINPUT" == "on" ]; then
iptables -A INPUT -m limit --limit 10/minute -j LOG --log-prefix "DROP_INPUT"
fi
iptables -A INPUT -j DROP -m comment --comment "DROP_INPUT"
if [ "$DROPFORWARD" == "on" ]; then
iptables -A FORWARD -m limit --limit 10/minute -j LOG --log-prefix "DROP_FORWARD"
fi
}
iptables_red() {