summaryrefslogtreecommitdiffstats
path: root/package/comgt
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-09 05:40:27 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-09 05:40:27 +0000
commitccc401e49e662234e3d880ea521506e0914e4fac (patch)
tree4287c1ec7f3084fd3898d5f788dcb123d5b7112b /package/comgt
parente3e87f09d912a1891590b6d31619eb28ad8e9469 (diff)
downloadmaster-31e0f0ae-ccc401e49e662234e3d880ea521506e0914e4fac.tar.gz
master-31e0f0ae-ccc401e49e662234e3d880ea521506e0914e4fac.tar.bz2
master-31e0f0ae-ccc401e49e662234e3d880ea521506e0914e4fac.zip
comgt: make firewalling changes when umts goes up or down
SVN-Revision: 5476
Diffstat (limited to 'package/comgt')
-rw-r--r--package/comgt/files/3g.iface15
1 files changed, 13 insertions, 2 deletions
diff --git a/package/comgt/files/3g.iface b/package/comgt/files/3g.iface
index a8476ca8df..cd4e4cc5c6 100644
--- a/package/comgt/files/3g.iface
+++ b/package/comgt/files/3g.iface
@@ -3,8 +3,19 @@ config_load network
scan_interfaces
config_get proto "$INTERFACE" proto
[ "$proto" = "3g" ] && {
+ config_get iface "$INTERFACE" ifname
case "$ACTION" in
- ifup) set_3g_led 1 1 0;;
- ifdown) set_3g_led 0 0 0;;
+ 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
}