bcm53xx: try to handle Netgear R8000 VLANs config
[librecmc/librecmc.git] / target / linux / bcm53xx / base-files / etc / uci-defaults / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2011 OpenWrt.org
4 #
5
6 [ -e /etc/config/network ] && exit 0
7
8 touch /etc/config/network
9
10 . /lib/functions/uci-defaults.sh
11
12 ucidef_set_interface_loopback
13
14 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
15 ucidef_add_switch "switch0" "1" "1"
16
17 vlan1ports="$(nvram get vlan1ports)"
18 vlan2ports="$(nvram get vlan2ports)"
19 if echo "$vlan1ports" | egrep -q "^1 2 3 4 5" && \
20    echo "$vlan2ports" | egrep -q "^0 5"; then
21         ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
22         ucidef_add_switch_vlan "switch0" "2" "0 5t"
23 elif echo "$vlan1ports" | egrep -q "^0 1 2 3 5 7 8" && \
24      echo "$vlan2ports" | egrep -q "^4 8"; then
25         ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5 7 8t"
26         ucidef_add_switch_vlan "switch0" "2" "4 8t"
27 else
28         # This also handles some funcy (e.g. R6250) configs like:
29         # vlan1ports=3 2 1 0 5*
30         # vlan2ports=4 5u
31         ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
32         ucidef_add_switch_vlan "switch0" "2" "4 5t"
33 fi
34
35 uci commit network
36
37 exit 0