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
|
2014-08-18 13:09:20 +00:00
|
|
|
. /lib/functions/uci-defaults-new.sh
|
2014-07-23 07:49:50 +00:00
|
|
|
. /lib/functions/system.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
|
2014-10-29 11:01:17 +00:00
|
|
|
a5-v11)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 6t"
|
|
|
|
;;
|
|
|
|
|
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-04-09 14:19:33 +00:00
|
|
|
broadway | \
|
2013-09-19 05:56:46 +00:00
|
|
|
dcs-930| \
|
2014-07-02 07:42:44 +00:00
|
|
|
ncs601w | \
|
2013-04-09 14:19:33 +00:00
|
|
|
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 | \
|
2014-07-26 20:36:22 +00:00
|
|
|
mlw221)
|
|
|
|
ucidef_set_interface_lan "eth0.2"
|
|
|
|
;;
|
|
|
|
|
2014-08-01 11:19:50 +00:00
|
|
|
wizard8800 | \
|
2013-11-16 20:28:52 +00:00
|
|
|
wl-330n | \
|
2013-11-17 13:14:46 +00:00
|
|
|
wmr300)
|
2012-01-24 11:48:47 +00:00
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
;;
|
|
|
|
|
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
|
|
|
|
2014-06-13 09:16:15 +00:00
|
|
|
awapn2403)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 6t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "1 6t"
|
|
|
|
;;
|
|
|
|
|
2014-01-15 18:29:44 +00:00
|
|
|
br-6475nd)
|
|
|
|
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 9t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0 9t"
|
|
|
|
;;
|
|
|
|
|
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"
|
|
|
|
;;
|
|
|
|
|
2014-06-02 12:42:52 +00:00
|
|
|
cy-swr1100)
|
|
|
|
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 9t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "4 9t"
|
|
|
|
;;
|
|
|
|
|
2014-10-06 04:52:07 +00:00
|
|
|
ht-tm02)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "4 6t"
|
|
|
|
;;
|
|
|
|
|
2014-08-18 13:10:04 +00:00
|
|
|
3g-6200n | \
|
2014-12-13 08:07:03 +00:00
|
|
|
ai-br100 | \
|
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 | \
|
2014-01-12 12:07:40 +00:00
|
|
|
hlk-rm04 | \
|
2014-11-12 14:55:00 +00:00
|
|
|
mt7621 | \
|
2014-11-06 09:31:31 +00:00
|
|
|
mt7628 | \
|
2014-07-14 17:10:39 +00:00
|
|
|
mzk-w300nh2 | \
|
2014-10-10 08:56:43 +00:00
|
|
|
mzk-750dhp | \
|
2014-10-30 10:10:51 +00:00
|
|
|
whr-300hp2 | \
|
|
|
|
whr-600d | \
|
2014-11-14 16:52:36 +00:00
|
|
|
wsr-600 | \
|
|
|
|
wsr-1166 | \
|
2014-12-12 16:17:31 +00:00
|
|
|
wt1520 | \
|
|
|
|
y1)
|
2012-12-29 17:50:38 +00:00
|
|
|
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"
|
|
|
|
;;
|
2014-11-14 16:52:36 +00:00
|
|
|
|
2014-11-16 11:39:19 +00:00
|
|
|
whr-1166d)
|
2014-11-03 20:20:40 +00:00
|
|
|
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" "5 6t"
|
|
|
|
;;
|
2012-12-29 17:50:38 +00:00
|
|
|
|
2014-06-16 18:54:48 +00:00
|
|
|
awm002-evb | \
|
2014-07-26 20:36:01 +00:00
|
|
|
awm003-evb | \
|
2013-11-30 08:36:56 +00:00
|
|
|
argus-atp52b | \
|
|
|
|
dir-645 | \
|
2012-02-22 19:46:19 +00:00
|
|
|
f5d8235-v1 | \
|
|
|
|
f5d8235-v2 | \
|
2013-07-23 13:07:00 +00:00
|
|
|
hg255d | \
|
2013-12-25 17:04:50 +00:00
|
|
|
rt-n14u | \
|
2014-03-07 09:54:59 +00:00
|
|
|
wrtnode | \
|
2014-10-20 06:28:48 +00:00
|
|
|
wt3020 | \
|
2014-07-10 22:02:28 +00:00
|
|
|
ur-326n4g | \
|
|
|
|
zbt-wa05)
|
2013-03-11 21:02:43 +00:00
|
|
|
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
|
|
|
;;
|
|
|
|
|
2014-11-03 08:00:13 +00:00
|
|
|
ar670w | \
|
2014-04-22 08:08:35 +00:00
|
|
|
ar725w | \
|
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"
|
|
|
|
;;
|
|
|
|
|
2014-08-01 20:51:24 +00:00
|
|
|
vocore)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 4 6t"
|
|
|
|
;;
|
|
|
|
|
2012-01-23 10:23:32 +00:00
|
|
|
wcr-150gn)
|
2013-11-30 08:36:56 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 6t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "6t"
|
2011-12-27 16:56:30 +00:00
|
|
|
;;
|
|
|
|
|
2014-07-12 06:54:03 +00:00
|
|
|
wr8305rt)
|
|
|
|
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 4 6t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "4 6t"
|
|
|
|
;;
|
|
|
|
|
2014-08-03 11:13:52 +00:00
|
|
|
y1s)
|
|
|
|
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 5 6t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0 6t"
|
|
|
|
;;
|
2013-04-03 10:00:08 +00:00
|
|
|
d105 | \
|
2014-02-18 13:33:25 +00:00
|
|
|
na930 | \
|
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
|
|
|
;;
|
|
|
|
|
2014-11-05 14:37:13 +00:00
|
|
|
e1700 | \
|
2014-10-29 18:51:02 +00:00
|
|
|
mt7620a_mt7530)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
ucidef_add_switch "switch1" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch1" "1" "0 1 2 3 6t"
|
|
|
|
ucidef_add_switch_vlan "switch1" "2" "4 6t"
|
|
|
|
;;
|
|
|
|
|
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
|
2013-11-18 09:35:14 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
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
|
2014-01-15 18:29:44 +00:00
|
|
|
br-6475nd)
|
2014-07-26 20:36:09 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2014-01-15 18:29:44 +00:00
|
|
|
wan_mac=$(mtd_get_mac_binary devdata 7)
|
|
|
|
;;
|
|
|
|
|
2012-04-21 12:30:40 +00:00
|
|
|
w306r-v20)
|
2014-07-26 20:36:09 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2013-02-16 11:50:25 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 5)
|
2012-04-21 12:30:40 +00:00
|
|
|
;;
|
|
|
|
|
2013-11-25 08:33:42 +00:00
|
|
|
tew-691gr)
|
2014-07-26 20:36:09 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2013-11-25 08:33:42 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 3)
|
2012-06-23 13:58:29 +00:00
|
|
|
;;
|
|
|
|
|
2013-11-25 08:33:42 +00:00
|
|
|
tew-692gr)
|
2014-07-26 20:36:09 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2013-11-25 08:33:42 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 4)
|
|
|
|
;;
|
|
|
|
|
|
|
|
m3 |\
|
|
|
|
m4 |\
|
|
|
|
x5 |\
|
|
|
|
x8)
|
2014-07-26 20:36:09 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
|
|
|
lan_mac=$(macaddr_add "$lan_mac" -2)
|
2011-12-06 20:06:08 +00:00
|
|
|
;;
|
|
|
|
|
2014-10-29 11:01:17 +00:00
|
|
|
a5-v11 |\
|
2014-07-26 20:36:09 +00:00
|
|
|
bc2 |\
|
|
|
|
broadway |\
|
|
|
|
d105 |\
|
|
|
|
dir-620-a1 |\
|
|
|
|
esr-9753 |\
|
|
|
|
freestation5 |\
|
|
|
|
hlk-rm04 | \
|
|
|
|
mpr-a1 | \
|
|
|
|
mpr-a2 | \
|
2014-10-06 04:52:07 +00:00
|
|
|
ht-tm02 | \
|
2014-07-26 20:36:09 +00:00
|
|
|
dir-300-b7 | \
|
|
|
|
dir-320-b1 | \
|
|
|
|
psr-680w |\
|
2014-08-03 11:13:52 +00:00
|
|
|
sl-r7205 |\
|
|
|
|
y1 |\
|
|
|
|
y1s)
|
2014-07-26 20:36:09 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
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
|
|
|
;;
|
|
|
|
|
2014-06-02 12:42:52 +00:00
|
|
|
cy-swr1100 | \
|
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
|
|
|
;;
|
|
|
|
|
2014-11-05 14:37:13 +00:00
|
|
|
e1700)
|
|
|
|
wan_mac=$(mtd_get_mac_ascii config WAN_MAC_ADDR)
|
|
|
|
;;
|
|
|
|
|
2012-02-11 15:11:34 +00:00
|
|
|
wcr-150gn)
|
2013-02-16 11:50:21 +00:00
|
|
|
wan_mac=$(mtd_get_mac_binary factory 40)
|
2011-12-05 17:27:07 +00:00
|
|
|
;;
|
2011-12-27 16:56:30 +00:00
|
|
|
|
2012-02-13 15:18:04 +00:00
|
|
|
rt-n56u)
|
2014-07-26 20:36:09 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
|
|
|
lan_mac=$(macaddr_setbit_la "$lan_mac")
|
2013-02-16 11:50:21 +00:00
|
|
|
wan_mac=$(mtd_get_mac_binary factory 32772)
|
2012-02-13 15:18:04 +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
|
|
|
wan_mac=$(mtd_get_mac_binary factory 46)
|
2011-12-28 08:43:32 +00:00
|
|
|
;;
|
|
|
|
|
2014-06-02 12:43:04 +00:00
|
|
|
*)
|
2014-07-14 07:38:23 +00:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2014-06-02 12:43:04 +00:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
|
|
|
;;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-08-18 13:09:20 +00:00
|
|
|
board_config_update
|
2011-12-01 22:48:43 +00:00
|
|
|
board=$(ramips_board_name)
|
|
|
|
ramips_setup_interfaces $board
|
|
|
|
ramips_setup_macs $board
|
2014-08-18 13:09:20 +00:00
|
|
|
board_config_flush
|
2011-12-01 22:48:48 +00:00
|
|
|
|
|
|
|
exit 0
|