소스 검색

Add destination ip of the wan adapter useful if you have multiple ip addresses.

SVN-Revision: 19574
Travis Kemen 16 년 전
부모
커밋
9f3a73d9e2
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      package/firewall/files/uci_firewall.sh

+ 2 - 0
package/firewall/files/uci_firewall.sh

@@ -343,6 +343,7 @@ fw_redirect() {
 
 	config_get src $1 src
 	config_get src_ip $1 src_ip
+	config_get src_dip $1 src_dip
 	config_get src_port $1 src_port
 	config_get src_dport $1 src_dport
 	config_get src_mac $1 src_mac
@@ -372,6 +373,7 @@ fw_redirect() {
 		$IPTABLES -A zone_${src}_prerouting -t nat \
 			${proto:+-p $proto} \
 			${src_ip:+-s $src_ip} \
+			${src_dip:+-d $src_dip} \
 			${src_port:+--sport $src_port} \
 			${src_dport:+--dport $src_dport} \
 			${src_mac:+-m mac --mac-source $src_mac} \