Using shorewall-lite {en|dis}able instead of completely restarting Shorewall is much more efficient. But it also makes sense to move the starting of Shorewall from init to an interface hotplug event. The "lan" interface should be a good indicator that networking it ready. Besides, Shorewall won't start until br-lan is available. Signed-off-by: Brian J. Murrell <brian@interlinx.bc.ca>
19 lines
512 B
Bash
19 lines
512 B
Bash
#!/bin/sh
|
|
|
|
DEVICE=${DEVICE:-$(/sbin/uci -p /var/state get network."$INTERFACE".ifname)}
|
|
|
|
case "$ACTION" in
|
|
ifup)
|
|
if [ "$INTERFACE" = "lan" ]; then
|
|
/usr/sbin/shorewall -l start
|
|
elif [ "${INTERFACE:0:3}" = "wan" ] &&
|
|
[ "${INTERFACE:$((${#INTERFACE}-2)):2}" != "_6" ]; then
|
|
/etc/shorewall-lite/state/firewall enable "$DEVICE"
|
|
fi
|
|
;;
|
|
ifdown)
|
|
if [ "${INTERFACE:0:3}" = "wan" ]; then
|
|
/etc/shorewall-lite/state/firewall disable "$DEVICE"
|
|
fi
|
|
;;
|
|
esac
|