bcm53xx: add default config for switch
[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 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
17 ucidef_add_switch_vlan "switch0" "2" "4 5t"
18
19 uci commit network
20
21 exit 0