mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
add direction matching patch for qos-scripts from #1708
SVN-Revision: 7571
This commit is contained in:
parent
bcf211ceaf
commit
0c8cccc9f7
@ -116,6 +116,14 @@ parse_matching_rule() {
|
|||||||
add_insmod ipt_connbytes
|
add_insmod ipt_connbytes
|
||||||
append "$var" "-m connbytes --connbytes $value --connbytes-dir both --connbytes-mode bytes"
|
append "$var" "-m connbytes --connbytes $value --connbytes-dir both --connbytes-mode bytes"
|
||||||
;;
|
;;
|
||||||
|
*:direction)
|
||||||
|
value="$(echo "$value" | sed -e 's,-,:,g')"
|
||||||
|
if [ "$value" = "out" ]; then
|
||||||
|
append "$var" "-o $device"
|
||||||
|
elif [ "$value" = "in" ]; then
|
||||||
|
append "$var" "-i $device"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
1:pktsize)
|
1:pktsize)
|
||||||
value="$(echo "$value" | sed -e 's,-,:,g')"
|
value="$(echo "$value" | sed -e 's,-,:,g')"
|
||||||
add_insmod ipt_length
|
add_insmod ipt_length
|
||||||
@ -357,6 +365,7 @@ start_cg() {
|
|||||||
append down "iptables -t mangle -A POSTROUTING -o $device -j IMQ --todev $imqdev" "$N"
|
append down "iptables -t mangle -A POSTROUTING -o $device -j IMQ --todev $imqdev" "$N"
|
||||||
}
|
}
|
||||||
append down "iptables -t mangle -A PREROUTING -i $device -j ${cg}" "$N"
|
append down "iptables -t mangle -A PREROUTING -i $device -j ${cg}" "$N"
|
||||||
|
append down "iptables -t mangle -A POSTROUTING -o $device -j ${cg}" "$N"
|
||||||
append down "iptables -t mangle -A PREROUTING -i $device -j IMQ --todev $imqdev" "$N"
|
append down "iptables -t mangle -A PREROUTING -i $device -j IMQ --todev $imqdev" "$N"
|
||||||
}
|
}
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user