2006-11-04 02:21:54 +02:00
|
|
|
include /lib/network
|
|
|
|
config_load network
|
|
|
|
scan_interfaces
|
|
|
|
config_get proto "$INTERFACE" proto
|
|
|
|
[ "$proto" = "3g" ] && {
|
2006-11-09 07:40:27 +02:00
|
|
|
config_get iface "$INTERFACE" ifname
|
2006-11-04 02:21:54 +02:00
|
|
|
case "$ACTION" in
|
2006-11-09 07:40:27 +02:00
|
|
|
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
|
|
|
|
;;
|
2006-11-04 02:21:54 +02:00
|
|
|
esac
|
|
|
|
}
|