mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2026-01-09 04:35:22 +00:00
11 lines
223 B
Bash
11 lines
223 B
Bash
#!/bin/sh
|
|
|
|
[ "$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)"
|
|
fw3 -q reload
|