5886bd2d985d71462e53a6e6deb7e9b5f1af9692
[openwrt-github/.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 else
24         ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
25         ucidef_add_switch_vlan "switch0" "2" "4 5t"
26 fi
27
28 uci commit network
29
30 exit 0