mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 11:12:47 +02:00
[package] firewall: count rules per chain and family, fix wrong order of ip6tables rules when ipv4 only or dual family rules are defined
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21533 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7962741d94
commit
81279ca0f1
@ -47,11 +47,11 @@ fw_load_rule() {
|
|||||||
target=zone_${rule_dest}_${target}
|
target=zone_${rule_dest}_${target}
|
||||||
}
|
}
|
||||||
|
|
||||||
local rule_pos
|
|
||||||
eval 'rule_pos=$((++FW__RULE_COUNT_'$chain'))'
|
|
||||||
|
|
||||||
local mode=$(fw_get_family_mode ${rule_family:-x} $rule_src I)
|
local mode=$(fw_get_family_mode ${rule_family:-x} $rule_src I)
|
||||||
|
|
||||||
|
local rule_pos
|
||||||
|
eval 'rule_pos=$((++FW__RULE_COUNT_'$mode'_'$chain'))'
|
||||||
|
|
||||||
[ "$rule_proto" == "tcpudp" ] && rule_proto="tcp udp"
|
[ "$rule_proto" == "tcpudp" ] && rule_proto="tcp udp"
|
||||||
for rule_proto in $rule_proto; do
|
for rule_proto in $rule_proto; do
|
||||||
fw add $mode f $chain $target $rule_pos { $rule_src_ip $rule_dest_ip } { \
|
fw add $mode f $chain $target $rule_pos { $rule_src_ip $rule_dest_ip } { \
|
||||||
|
Loading…
Reference in New Issue
Block a user