mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:43:08 +02:00
[package] firewall: properly handle negated ports in nat reflection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27334 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
9d43dbd716
commit
9179216cd8
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
PKG_NAME:=firewall
|
||||
|
||||
PKG_VERSION:=2
|
||||
PKG_RELEASE:=27
|
||||
PKG_RELEASE:=28
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
|
@ -91,23 +91,31 @@ if [ "$ACTION" = "add" ] && [ "$INTERFACE" = "wan" ]; then
|
||||
[ "${inthost#!}" = "$inthost" ] || return 0
|
||||
[ "${exthost#!}" = "$exthost" ] || return 0
|
||||
|
||||
[ "${epmin#!}" != "$epmin" ] && \
|
||||
extport="! --dport ${epmin#!}${epmax:+:$epmax}" || \
|
||||
extport="--dport $epmin${epmax:+:$epmax}"
|
||||
|
||||
[ "${ipmin#!}" != "$ipmin" ] && \
|
||||
intport="! --dport ${ipmin#!}${ipmax:+:$ipmax}" || \
|
||||
intport="--dport $ipmin${ipmax:+:$ipmax}"
|
||||
|
||||
local p
|
||||
for p in ${proto:-tcp udp}; do
|
||||
case "$p" in
|
||||
tcp|udp)
|
||||
iptables -t nat -A nat_reflection_in \
|
||||
-s $lanip/$lanmk -d $exthost \
|
||||
-p $p --dport $epmin${epmax:+:$epmax} \
|
||||
-j DNAT --to $inthost:$ipmin${ipmax:+-$ipmax}
|
||||
-p $p $extport \
|
||||
-j DNAT --to $inthost:${ipmin#!}${ipmax:+-$ipmax}
|
||||
|
||||
iptables -t nat -A nat_reflection_out \
|
||||
-s $lanip/$lanmk -d $inthost \
|
||||
-p $p --dport $ipmin${ipmax:+:$ipmax} \
|
||||
-p $p $intport \
|
||||
-j SNAT --to-source $lanip
|
||||
|
||||
iptables -t filter -A nat_reflection_fwd \
|
||||
-s $lanip/$lanmk -d $inthost \
|
||||
-p $p --dport $ipmin${ipmax:+:$ipmax} \
|
||||
-p $p $intport \
|
||||
-j ACCEPT
|
||||
;;
|
||||
esac
|
||||
|
Loading…
Reference in New Issue
Block a user