7e030acfff80957683f5d753ed1348491bbeceda
[openwrt.git] / target / linux / brcm47xx / base-files / lib / preinit / 05_set_failsafe_switch_brcm
1 #!/bin/sh
2
3 failsafe_ip() {
4         [ -d /proc/switch/eth0 ] && [ "$ifname" = "eth0" ] && {
5                 # The switch will connect all ports, The switch will leak
6                 # packages from wan to lan and vice versa in failsafe mode
7                 echo 1 > /proc/switch/eth0/reset
8                 echo 1 > /proc/switch/eth0/enable
9                 echo 0 > /proc/switch/eth0/enable_vlan
10                 echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/1/ports
11         }
12
13         [ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
14                 ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
15         }
16 }
17
18 boot_hook_add failsafe failsafe_ip