1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 23:46:16 +02:00

[backfire] backport r23318

git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@23324 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-10-08 13:50:30 +00:00
parent 8da83a1c65
commit e03b255302
2 changed files with 8 additions and 4 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=firewall
PKG_VERSION:=1
PKG_RELEASE:=19
PKG_RELEASE:=20
include $(INCLUDE_DIR)/package.mk

View File

@ -388,10 +388,11 @@ fw_rule() {
[ -n "$dest" ] && TARGET="zone_${dest}_${TARGET}"
fi
eval 'RULE_COUNT=$((++RULE_COUNT_'$ZONE'))'
local pos
eval 'pos=$((++FW__RULE_COUNT_'$ZONE'))'
add_rule() {
$IPTABLES -t $TABLE -I $ZONE $RULE_COUNT \
$IPTABLES -t $TABLE -I $ZONE $pos \
$srcaddr $destaddr \
${proto:+-p $proto} \
${icmp_type:+--icmp-type $icmp_type} \
@ -501,7 +502,10 @@ fw_redirect() {
get_portrange destports "${dest_port-$src_dport}" ":"
add_rule() {
$IPTABLES -I $natchain 1 -t nat \
local pos
eval 'pos=$((++FW__REDIR_COUNT_'$natchain'))'
$IPTABLES -I $natchain $pos -t nat \
$srcaddr $srcdaddr \
${proto:+-p $proto} \
${srcports:+--sport $srcports} \