mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
This fixes packet loss due to reloading firewall every minute with IPv6 implementation of certain ISPs. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39332 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
336 B
Bash
12 lines
336 B
Bash
#!/bin/sh
|
|
|
|
[ "$ACTION" = ifup -o "$ACTION" = ifupdate ] || exit 0
|
|
[ "$ACTION" = ifupdate -a -z "$IFUPDATE_ADDRESSES" -a -z "$IFUPDATE_DATA" ] && exit 0
|
|
|
|
/etc/init.d/firewall enabled || exit 0
|
|
|
|
fw3 -q network "$INTERFACE" >/dev/null || exit 0
|
|
|
|
logger -t firewall "Reloading firewall due to $ACTION of $INTERFACE ($DEVICE)"
|
|
fw3 -q reload
|