summaryrefslogtreecommitdiff
path: root/package/comgt/files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-05-26 20:14:42 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-05-26 20:14:42 +0000
commitf6f89817e30255c3e9503181ab464308504298df (patch)
tree5fa510463d23ce4c64ae4459d103218ac8a202dc /package/comgt/files
parent0ab7d18462b9ea1d46191aedb16d4380d3c1aa0a (diff)
downloadmtk-20170518-f6f89817e30255c3e9503181ab464308504298df.zip
mtk-20170518-f6f89817e30255c3e9503181ab464308504298df.tar.gz
mtk-20170518-f6f89817e30255c3e9503181ab464308504298df.tar.bz2
comgt: remove obsolete iptables support code
SVN-Revision: 21574
Diffstat (limited to 'package/comgt/files')
-rw-r--r--package/comgt/files/3g.iface6
1 files changed, 0 insertions, 6 deletions
diff --git a/package/comgt/files/3g.iface b/package/comgt/files/3g.iface
index cd4e4cc..a89f053 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