mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 03:58:35 +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
@ -29,7 +29,7 @@ fw_load_rule() {
|
||||
|
||||
rule_src_port=$(fw_get_port_range $rule_src_port)
|
||||
rule_dest_port=$(fw_get_port_range $rule_dest_port)
|
||||
|
||||
|
||||
local chain=input
|
||||
[ -n "$rule_src" ] && {
|
||||
[ -z "$rule_dest" ] && {
|
||||
@ -47,11 +47,11 @@ fw_load_rule() {
|
||||
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 rule_pos
|
||||
eval 'rule_pos=$((++FW__RULE_COUNT_'$mode'_'$chain'))'
|
||||
|
||||
[ "$rule_proto" == "tcpudp" ] && rule_proto="tcp udp"
|
||||
for rule_proto in $rule_proto; do
|
||||
fw add $mode f $chain $target $rule_pos { $rule_src_ip $rule_dest_ip } { \
|
||||
|
Loading…
Reference in New Issue
Block a user