diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-26 20:14:42 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-26 20:14:42 +0000 |
commit | f6f89817e30255c3e9503181ab464308504298df (patch) | |
tree | 5fa510463d23ce4c64ae4459d103218ac8a202dc /package/comgt/files | |
parent | 0ab7d18462b9ea1d46191aedb16d4380d3c1aa0a (diff) | |
download | upstream-f6f89817e30255c3e9503181ab464308504298df.tar.gz upstream-f6f89817e30255c3e9503181ab464308504298df.tar.bz2 upstream-f6f89817e30255c3e9503181ab464308504298df.zip |
comgt: remove obsolete iptables support code
SVN-Revision: 21574
Diffstat (limited to 'package/comgt/files')
-rw-r--r-- | package/comgt/files/3g.iface | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/package/comgt/files/3g.iface b/package/comgt/files/3g.iface index cd4e4cc5c6..a89f053873 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 |