mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-27 16:31:05 +02:00
comgt: make firewalling changes when umts goes up or down
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5476 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e3eab11e63
commit
82fff1cdab
@ -3,8 +3,19 @@ config_load network
|
|||||||
scan_interfaces
|
scan_interfaces
|
||||||
config_get proto "$INTERFACE" proto
|
config_get proto "$INTERFACE" proto
|
||||||
[ "$proto" = "3g" ] && {
|
[ "$proto" = "3g" ] && {
|
||||||
|
config_get iface "$INTERFACE" ifname
|
||||||
case "$ACTION" in
|
case "$ACTION" in
|
||||||
ifup) set_3g_led 1 1 0;;
|
ifup)
|
||||||
ifdown) set_3g_led 0 0 0;;
|
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
|
esac
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user