2009-10-23 16:51:51 +00:00
|
|
|
#!/bin/sh
|
2011-12-01 22:48:35 +00:00
|
|
|
|
2012-12-19 16:07:50 +00:00
|
|
|
. /lib/functions.sh
|
2011-12-01 22:48:35 +00:00
|
|
|
. /lib/ramips.sh
|
2011-12-01 22:48:48 +00:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2011-12-01 22:48:35 +00:00
|
|
|
|
2012-08-29 10:37:38 +00:00
|
|
|
ramips_setup_rt3x5x_vlans()
|
|
|
|
{
|
|
|
|
if [ ! -x /sbin/swconfig ]; then
|
|
|
|
# legacy default
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
local wanports=""
|
|
|
|
local lanports=""
|
|
|
|
for port in 5 4 3 2 1 0; do
|
|
|
|
if [ `swconfig dev rt305x port $port get disable` = "1" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
if [ `swconfig dev rt305x port $port get lan` = "0" ]; then
|
|
|
|
wanports="$port $wanports"
|
|
|
|
else
|
|
|
|
lanports="$port $lanports"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "rt305x" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "rt305x" "1" "$lanports 6t"
|
|
|
|
ucidef_add_switch_vlan "rt305x" "2" "$wanports 6t"
|
|
|
|
}
|
|
|
|
|
2011-12-01 22:48:43 +00:00
|
|
|
ramips_setup_interfaces()
|
|
|
|
{
|
|
|
|
local board="$1"
|
2011-12-01 22:48:35 +00:00
|
|
|
|
2011-12-01 22:48:48 +00:00
|
|
|
ucidef_set_interface_loopback
|
|
|
|
|
2011-12-01 22:48:43 +00:00
|
|
|
case $board in
|
2013-01-19 17:05:06 +00:00
|
|
|
3g300m | \
|
2013-04-03 10:00:21 +00:00
|
|
|
w150m | \
|
2012-03-27 19:29:57 +00:00
|
|
|
all0256n | \
|
2012-12-10 14:13:01 +00:00
|
|
|
all5002 | \
|
2013-04-25 19:03:01 +00:00
|
|
|
all5003 | \
|
2013-07-24 08:54:41 +00:00
|
|
|
awm002-evb | \
|
2013-04-09 14:19:33 +00:00
|
|
|
broadway | \
|
|
|
|
wnce2001)
|
2013-01-28 17:44:41 +00:00
|
|
|
ucidef_add_switch "switch0" "1" "0"
|
2012-08-29 10:37:47 +00:00
|
|
|
ucidef_set_interface_lan "eth0"
|
|
|
|
;;
|
|
|
|
|
2013-04-03 10:00:03 +00:00
|
|
|
3g-6200nl | \
|
2012-03-27 19:29:57 +00:00
|
|
|
wl-330n)
|
2012-01-24 11:48:47 +00:00
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
;;
|
|
|
|
|
2012-07-12 13:29:46 +00:00
|
|
|
3g-6200n | \
|
2011-12-01 22:48:35 +00:00
|
|
|
argus-atp52b | \
|
2011-12-01 22:48:37 +00:00
|
|
|
b2c | \
|
2011-12-28 08:43:32 +00:00
|
|
|
nw718 | \
|
2012-06-19 09:52:15 +00:00
|
|
|
psr-680w | \
|
2012-02-19 16:44:49 +00:00
|
|
|
sl-r7205 | \
|
2012-02-11 15:11:36 +00:00
|
|
|
w502u | \
|
|
|
|
wr6202)
|
2011-12-05 16:54:48 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2011-12-01 22:48:35 +00:00
|
|
|
;;
|
2011-12-01 22:48:43 +00:00
|
|
|
|
2013-04-25 19:02:53 +00:00
|
|
|
asl26555)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
|
|
|
|
;;
|
|
|
|
|
2012-10-18 07:23:03 +00:00
|
|
|
dir-645)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0 6t"
|
|
|
|
;;
|
|
|
|
|
2013-08-14 19:35:27 +00:00
|
|
|
dir-610-a1 | \
|
2013-09-18 16:31:37 +00:00
|
|
|
dir-300-b7 | \
|
|
|
|
dir-320-b1 | \
|
2013-04-05 23:37:45 +00:00
|
|
|
dir-615-h1 | \
|
2012-12-29 17:50:38 +00:00
|
|
|
mzk-w300nh2)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 6t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "4 6t"
|
|
|
|
;;
|
|
|
|
|
2012-02-22 19:46:19 +00:00
|
|
|
f5d8235-v1 | \
|
|
|
|
f5d8235-v2 | \
|
2013-07-23 13:07:00 +00:00
|
|
|
hg255d | \
|
2013-03-11 21:02:43 +00:00
|
|
|
ur-326n4g)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0 6t"
|
|
|
|
;;
|
|
|
|
|
2012-04-23 16:56:06 +00:00
|
|
|
ur-336un)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
;;
|
|
|
|
|
2013-01-06 11:11:42 +00:00
|
|
|
br6524n | \
|
2012-02-22 19:46:19 +00:00
|
|
|
v11st-fe)
|
2011-12-23 14:27:16 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2012-02-22 19:46:17 +00:00
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0 5t"
|
2011-12-23 14:27:16 +00:00
|
|
|
;;
|
|
|
|
|
2012-02-22 19:46:19 +00:00
|
|
|
rt-n15 | \
|
|
|
|
wl-351)
|
2012-02-22 19:46:15 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2012-02-22 19:46:17 +00:00
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "4 5t"
|
2012-02-22 19:46:15 +00:00
|
|
|
;;
|
|
|
|
|
2012-02-13 15:18:04 +00:00
|
|
|
rt-n56u)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 8t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "4 8t"
|
|
|
|
;;
|
|
|
|
|
2012-10-18 07:23:12 +00:00
|
|
|
tew-691gr|\
|
2012-10-18 07:23:07 +00:00
|
|
|
tew-692gr)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0t 1 2 3 4"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0t 5"
|
|
|
|
;;
|
|
|
|
|
2012-01-23 10:23:32 +00:00
|
|
|
wcr-150gn)
|
2012-03-29 16:03:04 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.2" "eth0.1"
|
2011-12-27 16:56:30 +00:00
|
|
|
;;
|
|
|
|
|
2013-04-03 10:00:08 +00:00
|
|
|
d105 | \
|
2013-02-02 17:21:05 +00:00
|
|
|
omni-emb-hpm|\
|
2012-01-23 10:23:32 +00:00
|
|
|
wli-tx4-ag300n)
|
|
|
|
ucidef_set_interface_lan "eth0"
|
2011-12-01 22:48:54 +00:00
|
|
|
;;
|
|
|
|
|
2011-12-01 22:48:35 +00:00
|
|
|
*)
|
2012-09-25 14:47:18 +00:00
|
|
|
RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350)"`
|
2011-12-01 22:48:51 +00:00
|
|
|
if [ -n "${RT3X5X}" ]; then
|
2012-08-29 10:37:38 +00:00
|
|
|
ramips_setup_rt3x5x_vlans
|
2011-12-01 22:48:51 +00:00
|
|
|
else
|
2011-12-05 16:54:48 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
2011-12-01 22:48:51 +00:00
|
|
|
fi
|
2011-12-01 22:48:35 +00:00
|
|
|
;;
|
2011-12-01 22:48:43 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
ramips_setup_macs()
|
|
|
|
{
|
|
|
|
local board="$1"
|
2011-12-01 22:48:45 +00:00
|
|
|
local lan_mac=""
|
|
|
|
local wan_mac=""
|
2011-12-01 22:48:43 +00:00
|
|
|
|
|
|
|
case $board in
|
2012-07-24 20:38:14 +00:00
|
|
|
all0256n | \
|
2012-08-17 17:56:05 +00:00
|
|
|
all5002 | \
|
|
|
|
dir-615-h1)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 40)
|
2012-01-24 11:48:47 +00:00
|
|
|
;;
|
2012-07-12 13:29:46 +00:00
|
|
|
3g-6200n | \
|
2013-01-19 17:05:06 +00:00
|
|
|
3g300m | \
|
2013-04-03 10:00:21 +00:00
|
|
|
w150m | \
|
2012-12-29 17:50:32 +00:00
|
|
|
air3gii | \
|
2011-12-01 22:48:43 +00:00
|
|
|
argus-atp52b | \
|
2012-08-12 12:48:24 +00:00
|
|
|
bc2 | \
|
2013-02-02 17:01:50 +00:00
|
|
|
br6425 | \
|
2012-12-10 14:13:01 +00:00
|
|
|
broadway | \
|
2013-04-25 19:02:48 +00:00
|
|
|
dir-620-d1 | \
|
2011-12-28 08:43:43 +00:00
|
|
|
f5d8235-v1 | \
|
2013-08-01 14:31:15 +00:00
|
|
|
ip2202 | \
|
2013-07-27 09:23:52 +00:00
|
|
|
mpr-a1 | \
|
2013-06-10 08:24:56 +00:00
|
|
|
mpr-a2 | \
|
2013-09-18 16:31:37 +00:00
|
|
|
dir-300-b7 | \
|
|
|
|
dir-320-b1 | \
|
2012-12-29 17:50:38 +00:00
|
|
|
mzk-w300nh2 | \
|
2011-12-01 22:48:54 +00:00
|
|
|
nw718 | \
|
2012-06-19 09:52:15 +00:00
|
|
|
psr-680w | \
|
2011-12-23 14:27:16 +00:00
|
|
|
rt-n15 | \
|
2012-02-19 16:44:49 +00:00
|
|
|
sl-r7205 | \
|
2011-12-23 14:27:16 +00:00
|
|
|
wl-351)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 4)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2011-12-01 22:48:43 +00:00
|
|
|
;;
|
2011-12-05 17:27:07 +00:00
|
|
|
|
2013-04-25 19:02:53 +00:00
|
|
|
asl26555)
|
|
|
|
lan_mac=$(mtd_get_mac_binary devdata 16388)
|
|
|
|
;;
|
|
|
|
|
2012-04-21 12:30:40 +00:00
|
|
|
w306r-v20)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 4)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 5)
|
2012-04-21 12:30:40 +00:00
|
|
|
;;
|
|
|
|
|
2012-11-29 17:37:13 +00:00
|
|
|
rt-n13u | \
|
2013-07-22 15:36:39 +00:00
|
|
|
hg255d | \
|
2013-08-14 19:08:55 +00:00
|
|
|
fonera20n | \
|
2013-08-14 18:15:35 +00:00
|
|
|
dir-810l)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 40)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2012-06-23 13:58:29 +00:00
|
|
|
;;
|
|
|
|
|
2011-12-06 20:06:08 +00:00
|
|
|
dir-300-b1 |\
|
|
|
|
dir-300-b2 |\
|
2013-08-14 19:35:27 +00:00
|
|
|
dir-600-b1 |\
|
|
|
|
dir-610-a1)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary devdata 16388)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2011-12-06 20:06:08 +00:00
|
|
|
;;
|
|
|
|
|
2012-08-12 12:48:24 +00:00
|
|
|
dir-620-a1)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 4)
|
2013-02-16 11:50:25 +00:00
|
|
|
lan_mac=$(macaddr_setbit_la "$lan_mac")
|
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2012-08-12 12:48:24 +00:00
|
|
|
;;
|
|
|
|
|
2012-10-18 07:23:03 +00:00
|
|
|
dir-645)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_ascii nvram lanmac)
|
|
|
|
wan_mac=$(mtd_get_mac_ascii nvram wanmac)
|
2012-10-18 07:23:03 +00:00
|
|
|
;;
|
|
|
|
|
2011-12-23 14:27:10 +00:00
|
|
|
esr-9753 | \
|
2013-03-11 21:02:43 +00:00
|
|
|
ur-326n4g | \
|
2012-04-23 16:56:06 +00:00
|
|
|
ur-336un)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary devdata 16388)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2012-04-23 16:56:06 +00:00
|
|
|
;;
|
|
|
|
|
2013-08-01 14:30:58 +00:00
|
|
|
m3 |\
|
2013-08-01 14:31:04 +00:00
|
|
|
m4 |\
|
2013-08-01 14:31:09 +00:00
|
|
|
x5 |\
|
|
|
|
x8)
|
2013-08-01 14:30:53 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 4)
|
|
|
|
lan_mac=$(macaddr_add "$lan_mac" -1)
|
|
|
|
;;
|
|
|
|
|
2012-02-11 15:11:34 +00:00
|
|
|
nbg-419n | \
|
|
|
|
wcr-150gn)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 4)
|
|
|
|
wan_mac=$(mtd_get_mac_binary factory 40)
|
2011-12-05 17:27:07 +00:00
|
|
|
;;
|
2011-12-27 16:56:30 +00:00
|
|
|
|
2013-02-02 17:21:05 +00:00
|
|
|
omni-emb-hpm)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 40)
|
2013-02-02 17:21:05 +00:00
|
|
|
;;
|
|
|
|
|
2012-01-23 10:23:32 +00:00
|
|
|
f5d8235-v2)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary "u-boot" 262148)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2012-01-23 10:23:32 +00:00
|
|
|
;;
|
|
|
|
|
2012-02-13 15:18:04 +00:00
|
|
|
rt-n56u)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 4)
|
|
|
|
wan_mac=$(mtd_get_mac_binary factory 32772)
|
2012-02-13 15:18:04 +00:00
|
|
|
;;
|
|
|
|
|
2012-10-18 07:23:12 +00:00
|
|
|
tew-691gr)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 40)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 3)
|
2012-10-18 07:23:12 +00:00
|
|
|
;;
|
|
|
|
|
2012-10-18 07:23:07 +00:00
|
|
|
tew-692gr)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 40)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 4)
|
2012-10-18 07:23:07 +00:00
|
|
|
;;
|
|
|
|
|
2012-08-17 17:56:07 +00:00
|
|
|
all0239-3g | \
|
2012-08-29 10:37:43 +00:00
|
|
|
carambola | \
|
2013-05-06 16:45:35 +00:00
|
|
|
freestation5 | \
|
2013-04-09 14:19:33 +00:00
|
|
|
w502u | \
|
|
|
|
wnce2001)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 40)
|
|
|
|
wan_mac=$(mtd_get_mac_binary factory 46)
|
2011-12-28 08:43:32 +00:00
|
|
|
;;
|
|
|
|
|
2012-01-26 10:44:23 +00:00
|
|
|
wl341v3)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary board-nvram 65440)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2012-01-26 10:44:23 +00:00
|
|
|
;;
|
|
|
|
|
2013-04-03 10:00:08 +00:00
|
|
|
d105 | \
|
2011-12-27 16:56:30 +00:00
|
|
|
wli-tx4-ag300n)
|
2013-02-16 11:50:21 +00:00
|
|
|
lan_mac=$(mtd_get_mac_binary factory 4)
|
2011-12-27 16:56:30 +00:00
|
|
|
;;
|
|
|
|
|
2011-12-01 22:48:43 +00:00
|
|
|
esac
|
2011-12-01 22:48:45 +00:00
|
|
|
|
2012-01-23 10:23:32 +00:00
|
|
|
[ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac
|
|
|
|
[ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac
|
2011-12-01 22:48:43 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 22:48:51 +00:00
|
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/network
|
|
|
|
|
2011-12-01 22:48:43 +00:00
|
|
|
board=$(ramips_board_name)
|
|
|
|
|
|
|
|
ramips_setup_interfaces $board
|
|
|
|
ramips_setup_macs $board
|
2011-12-01 22:48:48 +00:00
|
|
|
|
|
|
|
uci commit network
|
|
|
|
|
|
|
|
exit 0
|