X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/82fff1cdab4c59468df342c6e605d852ee5cb1dc..da46ade1fea521eea85e8d8785b04f690a3d8fa4:/package/comgt/files/3g.iface

diff --git a/package/comgt/files/3g.iface b/package/comgt/files/3g.iface
index cd4e4cc5c..a89f05387 100644
--- a/package/comgt/files/3g.iface
+++ b/package/comgt/files/3g.iface
@@ -6,15 +6,9 @@ config_get proto "$INTERFACE" proto
 	config_get iface "$INTERFACE" ifname
 	case "$ACTION" in
 		ifup)
-			iptables -I LAN_ACCEPT 1 -i "$iface" -j RETURN
-			iptables -A FORWARD -o "$iface" -j ACCEPT
-			iptables -t nat -A POSTROUTING -o "$iface" -j MASQUERADE 
 			set_3g_led 1 1 0
 		;;
 		ifdown)
-			iptables -D LAN_ACCEPT -i "$iface" -j RETURN
-			iptables -D FORWARD -o "$iface" -j ACCEPT
-			iptables -t nat -D POSTROUTING -o "$iface" -j MASQUERADE 
 			set_3g_led 0 0 0
 		;;
 	esac