bbcdf6fde7a9060cb88c9eafa4940bcd254d1a50
[openwrt/openwrt.git] / target / linux / ramips / base-files / etc / uci-defaults / 02_network
1 #!/bin/sh
2
3 . /lib/functions.sh
4 . /lib/ramips.sh
5 . /lib/functions/uci-defaults.sh
6
7 if [ ! -x /usr/sbin/maccalc ]; then
8 echo "$0: maccalc not found!"
9 return
10 fi
11
12 ramips_setup_rt3x5x_vlans()
13 {
14 if [ ! -x /sbin/swconfig ]; then
15 # legacy default
16 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
17 return
18 fi
19 local wanports=""
20 local lanports=""
21 swconfig dev rt305x set reset 1
22 for port in 5 4 3 2 1 0; do
23 if [ `swconfig dev rt305x port $port get disable` = "1" ]; then
24 continue
25 fi
26 if [ `swconfig dev rt305x port $port get lan` = "0" ]; then
27 wanports="$port $wanports"
28 else
29 lanports="$port $lanports"
30 fi
31 done
32 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
33 ucidef_add_switch "rt305x" "1" "1"
34 ucidef_add_switch_vlan "rt305x" "1" "$lanports 6t"
35 ucidef_add_switch_vlan "rt305x" "2" "$wanports 6t"
36 }
37
38 ramips_setup_interfaces()
39 {
40 local board="$1"
41
42 ucidef_set_interface_loopback
43
44 case $board in
45 all0256n | \
46 all5002 | \
47 broadway)
48 ucidef_set_interface_lan "eth0"
49 ;;
50
51 dir-615-h1 | \
52 wl-330n)
53 ucidef_set_interface_lan "eth0.1"
54 ;;
55
56 3g-6200n | \
57 argus-atp52b | \
58 b2c | \
59 nw718 | \
60 psr-680w | \
61 sl-r7205 | \
62 w502u | \
63 wr6202)
64 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
65 ;;
66
67 dir-645)
68 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
69 ucidef_add_switch "switch0" "1" "1"
70 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
71 ucidef_add_switch_vlan "switch0" "2" "0 6t"
72 ;;
73
74 mzk-w300nh2)
75 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
76 ucidef_add_switch "switch0" "1" "1"
77 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 6t"
78 ucidef_add_switch_vlan "switch0" "2" "4 6t"
79 ;;
80
81 f5d8235-v1 | \
82 f5d8235-v2 | \
83 ur-336un)
84 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
85 ;;
86
87 br6524n | \
88 v11st-fe)
89 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
90 ucidef_add_switch "switch0" "1" "1"
91 ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
92 ucidef_add_switch_vlan "switch0" "2" "0 5t"
93 ;;
94
95 rt-n15 | \
96 wl-351)
97 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
98 ucidef_add_switch "switch0" "1" "1"
99 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
100 ucidef_add_switch_vlan "switch0" "2" "4 5t"
101 ;;
102
103 rt-n56u)
104 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
105 ucidef_add_switch "switch0" "1" "1"
106 ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 8t"
107 ucidef_add_switch_vlan "switch0" "2" "4 8t"
108 ;;
109
110 tew-691gr|\
111 tew-692gr)
112 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
113 ucidef_add_switch "switch0" "1" "1"
114 ucidef_add_switch_vlan "switch0" "1" "0t 1 2 3 4"
115 ucidef_add_switch_vlan "switch0" "2" "0t 5"
116 ;;
117
118 freestation5 | \
119 wcr-150gn)
120 ucidef_set_interfaces_lan_wan "eth0.2" "eth0.1"
121 ;;
122
123 wli-tx4-ag300n)
124 ucidef_set_interface_lan "eth0"
125 ;;
126
127 *)
128 RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350)"`
129 if [ -n "${RT3X5X}" ]; then
130 ramips_setup_rt3x5x_vlans
131 else
132 ucidef_set_interfaces_lan_wan "eth0" "eth1"
133 fi
134 ;;
135 esac
136 }
137
138 ramips_setup_macs()
139 {
140 local board="$1"
141 local lan_mac=""
142 local wan_mac=""
143
144 case $board in
145 all0256n | \
146 all5002 | \
147 dir-615-h1)
148 lan_mac=$(ramips_get_mac_binary factory 40)
149 ;;
150 3g-6200n | \
151 air3gii | \
152 argus-atp52b | \
153 bc2 | \
154 broadway | \
155 f5d8235-v1 | \
156 mzk-w300nh2 | \
157 nw718 | \
158 psr-680w | \
159 rt-n15 | \
160 sl-r7205 | \
161 wl-351)
162 lan_mac=$(ramips_get_mac_binary factory 4)
163 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
164 ;;
165
166 w306r-v20)
167 lan_mac=$(ramips_get_mac_binary factory 4)
168 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 5)
169 ;;
170
171 rt-n13u | \
172 fonera20n)
173 lan_mac=$(ramips_get_mac_binary factory 40)
174 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
175 ;;
176
177 dir-300-b1 |\
178 dir-300-b2 |\
179 dir-600-b1)
180 lan_mac=$(ramips_get_mac_binary devdata 16388)
181 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
182 ;;
183
184 dir-620-a1)
185 lan_mac=$(ramips_get_mac_binary factory 4)
186 lan_mac=$(maccalc or "$lan_mac" "02:00:00:00:00:00")
187 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
188 ;;
189
190 dir-645)
191 lan_mac=$(ramips_get_mac_nvram nvram lanmac)
192 wan_mac=$(ramips_get_mac_nvram nvram wanmac)
193 ;;
194
195 esr-9753 | \
196 ur-336un)
197 lan_mac=$(ramips_get_mac_binary devdata 16388)
198 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
199 ;;
200
201 nbg-419n | \
202 wcr-150gn)
203 lan_mac=$(ramips_get_mac_binary factory 4)
204 wan_mac=$(ramips_get_mac_binary factory 40)
205 ;;
206
207 f5d8235-v2)
208 lan_mac=$(ramips_get_mac_binary "u-boot" 262148)
209 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
210 ;;
211
212 rt-n56u)
213 lan_mac=$(ramips_get_mac_binary factory 4)
214 wan_mac=$(ramips_get_mac_binary factory 32772)
215 ;;
216
217 tew-691gr)
218 lan_mac=$(ramips_get_mac_binary factory 40)
219 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 3)
220 ;;
221
222 tew-692gr)
223 lan_mac=$(ramips_get_mac_binary factory 40)
224 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 4)
225 ;;
226
227 all0239-3g | \
228 carambola | \
229 w502u)
230 lan_mac=$(ramips_get_mac_binary factory 40)
231 wan_mac=$(ramips_get_mac_binary factory 46)
232 ;;
233
234 wl341v3)
235 lan_mac=$(ramips_get_mac_binary board-nvram 65440)
236 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
237 ;;
238
239 wli-tx4-ag300n)
240 lan_mac=$(ramips_get_mac_binary factory 4)
241 ;;
242
243 esac
244
245 [ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac
246 [ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac
247 }
248
249 [ -e /etc/config/network ] && exit 0
250
251 touch /etc/config/network
252
253 board=$(ramips_board_name)
254
255 ramips_setup_interfaces $board
256 ramips_setup_macs $board
257
258 uci commit network
259
260 exit 0