Skip to content
Snippets Groups Projects
Commit ccc401e4 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

comgt: make firewalling changes when umts goes up or down

SVN-Revision: 5476
parent e3e87f09
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment