summaryrefslogtreecommitdiffstats
path: root/package/network/config/firewall3/files
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/config/firewall3/files')
-rw-r--r--package/network/config/firewall3/files/firewall.hotplug2
-rwxr-xr-xpackage/network/config/firewall3/files/firewall.init6
2 files changed, 7 insertions, 1 deletions
diff --git a/package/network/config/firewall3/files/firewall.hotplug b/package/network/config/firewall3/files/firewall.hotplug
index dbb98cdcd..34f3afec9 100644
--- a/package/network/config/firewall3/files/firewall.hotplug
+++ b/package/network/config/firewall3/files/firewall.hotplug
@@ -2,6 +2,8 @@
[ "$ACTION" = ifup ] || exit 0
+/etc/init.d/firewall enabled || exit 0
+
fw3 -q network "$INTERFACE" >/dev/null || exit 0
logger -t firewall "Reloading firewall due to ifup of $INTERFACE ($DEVICE)"
diff --git a/package/network/config/firewall3/files/firewall.init b/package/network/config/firewall3/files/firewall.init
index 8c1dbd94c..64e3a8c12 100755
--- a/package/network/config/firewall3/files/firewall.init
+++ b/package/network/config/firewall3/files/firewall.init
@@ -13,9 +13,13 @@ start() {
}
stop() {
- fw3 stop
+ fw3 flush
}
restart() {
fw3 restart
}
+
+reload() {
+ fw3 reload
+}