[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit

Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/ap/app/Script/scripts/upnp_ipt_remove.sh b/ap/app/Script/scripts/upnp_ipt_remove.sh
new file mode 100644
index 0000000..4cbcb1d
--- /dev/null
+++ b/ap/app/Script/scripts/upnp_ipt_remove.sh
@@ -0,0 +1,25 @@
+#! /bin/sh
+# $Id: iptables_removeall.sh,v 1.1 2008-09-15 12:28:53 winfred Exp $
+
+path_sh=`nv get path_sh`
+. $path_sh/global.sh
+
+echo "Info: upnp_ipt_remove.sh start" >> $test_log
+
+IPTABLES=iptables
+
+#change this parameters :
+EXTIF="$defwan_rel"
+
+#removing the MINIUPNPD chain for nat
+$IPTABLES -t nat -F MINIUPNPD
+#removing the rule to MINIUPNPD
+#$IPTABLES -t nat -D PREROUTING -d $EXTIP -i $EXTIF -j MINIUPNPD
+$IPTABLES -t nat -D PREROUTING -i $EXTIF -j MINIUPNPD
+$IPTABLES -t nat -X MINIUPNPD
+
+#removing the MINIUPNPD chain for filter
+$IPTABLES -t filter -F MINIUPNPD
+#adding the rule to MINIUPNPD
+$IPTABLES -t filter -D FORWARD -i $EXTIF -o ! $EXTIF -j MINIUPNPD
+$IPTABLES -t filter -X MINIUPNPD