mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-26 04:00:53 +03:00
init.d: keenetic udp fix script
This commit is contained in:
parent
395b9480c5
commit
d77a1c8cd6
20
init.d/sysv/custom.d.examples/10-keenetic-udp-fix
Normal file
20
init.d/sysv/custom.d.examples/10-keenetic-udp-fix
Normal file
@ -0,0 +1,20 @@
|
||||
# This script fixes keenetic issue with nfqws generated udp packets
|
||||
# Keenetic uses proprietary ndmmark and does not masquerade without this mark
|
||||
# If not masqueraded packets go to WAN with LAN IP and get dropped by ISP
|
||||
|
||||
# !!! MUST set IFACE_WAN in config !!!
|
||||
|
||||
zapret_custom_firewall()
|
||||
{
|
||||
# $1 - 1 - add, 0 - stop
|
||||
|
||||
local wan
|
||||
|
||||
ipt_print_op $1 "-j MASQUERADE" "keenetic udp fix"
|
||||
|
||||
if [ -n "$IFACE_WAN" ] ; then
|
||||
for wan in $IFACE_WAN; do
|
||||
ipt_add_del $1 POSTROUTING -t nat -o $wan -j MASQUERADE
|
||||
done
|
||||
fi
|
||||
}
|
Loading…
Reference in New Issue
Block a user