From: Felix Fietkau Date: Tue, 2 May 2006 20:16:26 +0000 (+0000) Subject: fix stupid typo in firewall init script X-Git-Tag: reboot~30789 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e7e81657c7203e8a67e0ba234304b98cf83eb795;p=oweals%2Fopenwrt.git fix stupid typo in firewall init script SVN-Revision: 3724 --- diff --git a/openwrt/package/iptables/files/firewall.init b/openwrt/package/iptables/files/firewall.init index a7cde95b5f..ad014cbaa3 100755 --- a/openwrt/package/iptables/files/firewall.init +++ b/openwrt/package/iptables/files/firewall.init @@ -34,7 +34,7 @@ iptables -t nat -N postrouting_rule iptables -A INPUT -j input_rule # allow - iptables -A INPUT ${WAN:+-i \! $WAN} -j ACCEPT # allow from all interfaces except for wan + iptables -A INPUT ${WAN:+\! -i $WAN} -j ACCEPT # allow from all interfaces except for wan iptables -A INPUT -p icmp -j ACCEPT # allow ICMP iptables -A INPUT -p gre -j ACCEPT # allow GRE