mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-22 12:28:23 +00:00
9 lines
185 B
Plaintext
9 lines
185 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
[ "$ACTION" = ifup ] || exit 0
|
||
|
|
||
|
fw3 -q network "$INTERFACE" >/dev/null || exit 0
|
||
|
|
||
|
logger -t firewall "Restarting firewall due to ifup of $INTERFACE ($DEVICE)"
|
||
|
fw3 -q restart
|