ar71xx: add support for Ubiquiti AirRouter
[openwrt/openwrt.git] / target / linux / ar71xx / base-files / etc / uci-defaults / 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 . /lib/ar71xx.sh
12
13 ucidef_set_interface_loopback
14
15 board=$(ar71xx_board_name)
16
17 case "$board" in
18 all0258n)
19 ucidef_set_interface_lan "eth0 eth1"
20 ;;
21
22 dir-825-b1)
23 ucidef_set_interfaces_lan_wan "eth0.1" "eth1"
24 ucidef_add_switch "rtl8366s" "1" "1"
25 ucidef_add_switch_vlan "rtl8366s" "1" "0 1 2 3 5t"
26 ;;
27
28 nbg460n_550n_550nh)
29 ucidef_set_interfaces_lan_wan "eth0" "eth1"
30 ucidef_add_switch "rtl8366s" "1" "1"
31 ucidef_add_switch_vlan "rtl8366s" "0" "0 1 2 3 5"
32 ;;
33
34 rb-433 |\
35 rb-433u)
36 ucidef_set_interfaces_lan_wan "eth1" "eth0"
37 ucidef_add_switch "switch0" "1" "1"
38 ucidef_add_switch_vlan "switch0" "1" "1 2 5"
39 ;;
40
41 rb-450)
42 ucidef_set_interfaces_lan_wan "eth1" "eth0"
43 ucidef_add_switch "eth1" "1" "1"
44 ucidef_add_switch_vlan "eth1" "1" "0 1 2 3 5"
45 ;;
46
47 rb-450g |\
48 routerstation-pro)
49 ucidef_set_interfaces_lan_wan "eth1" "eth0"
50 ucidef_add_switch "switch0" "1" "1"
51 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 4"
52 ;;
53
54 rb-493g)
55 ucidef_set_interfaces_lan_wan "eth0 eth1.1" "eth1.2"
56 ucidef_add_switch "switch0" "1" "1"
57 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 4"
58 ucidef_add_switch "switch1" "1" "1"
59 ucidef_add_switch_vlan "switch1" "1" "0t 1 2 3 4"
60 ucidef_add_switch_vlan "switch1" "2" "0t 5"
61 ;;
62
63 pb92)
64 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
65 ucidef_add_switch "eth0" "1" "1"
66 ucidef_add_switch_vlan "eth0" "1" "0t 1 3 4 5"
67 ucidef_add_switch_vlan "eth0" "2" "0t 2"
68 ;;
69
70 tl-wa901nd)
71 ucidef_set_interface_raw "eth" "eth0"
72 ucidef_set_interface_lan "lan"
73 ;;
74
75 tl-wr1043nd)
76 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
77 ucidef_add_switch "rtl8366rb" "1" "1"
78 ucidef_add_switch_vlan "rtl8366rb" "1" "1 2 3 4 5t"
79 ucidef_add_switch_vlan "rtl8366rb" "2" "0 5t"
80 ;;
81
82 tl-wr841n-v1|\
83 tl-wr941nd)
84 ucidef_set_interface_raw "eth" "eth0"
85 ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4" "wan"
86 ;;
87
88 wrt160nl)
89 ucidef_set_interfaces_lan_wan "eth0" "eth1"
90 ucidef_add_switch "eth0" "1" "1"
91 ucidef_add_switch_vlan "eth0" "1" "0 1 2 3 4 5"
92 ;;
93
94 wzr-hp-g300nh)
95 ucidef_set_interfaces_lan_wan "eth0.1" "eth1"
96 ucidef_add_switch "switch0" "1" "1"
97 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
98 ;;
99
100 aw-nr580 |\
101 bullet-m |\
102 eap7660d |\
103 rb-411 |\
104 tl-wa901nd-v2 |\
105 tl-wr703n |\
106 wp543)
107 ucidef_set_interface_lan "eth0"
108 ;;
109
110 ap83 |\
111 jwap003 |\
112 pb42 |\
113 pb44 |\
114 routerstation)
115 ucidef_set_interfaces_lan_wan "eth1" "eth0"
116 ;;
117
118 ap121 |\
119 ap121-mini |\
120 ap96 |\
121 airrouter |\
122 dir-600-a1 |\
123 dir-615-c1 |\
124 ja76pf |\
125 rb750 |\
126 tew-632brp |\
127 tl-mr3220 |\
128 tl-mr3420 |\
129 tl-wr741nd |\
130 tl-wr741nd-v4 |\
131 whr-g301n |\
132 whr-hp-g300n |\
133 whr-hp-gn |\
134 wzr-hp-ag300h)
135 ucidef_set_interfaces_lan_wan "eth0" "eth1"
136 ucidef_add_switch "eth0" "1" "1"
137 ucidef_add_switch_vlan "eth0" "1" "0 1 2 3 4"
138 ;;
139
140 *)
141 ucidef_set_interfaces_lan_wan "eth0" "eth1"
142 ;;
143 esac
144
145 uci commit network
146
147 exit 0