2009-10-24 00:51:51 +08:00
|
|
|
#!/bin/sh
|
2011-12-02 06:48:35 +08:00
|
|
|
|
2012-12-20 00:07:50 +08:00
|
|
|
. /lib/functions.sh
|
2011-12-02 06:48:35 +08:00
|
|
|
. /lib/ramips.sh
|
2014-08-18 21:09:20 +08:00
|
|
|
. /lib/functions/uci-defaults-new.sh
|
2014-07-23 15:49:50 +08:00
|
|
|
. /lib/functions/system.sh
|
2011-12-02 06:48:35 +08:00
|
|
|
|
2012-08-29 18:37:38 +08: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-02 06:48:43 +08:00
|
|
|
ramips_setup_interfaces()
|
|
|
|
{
|
|
|
|
local board="$1"
|
2011-12-02 06:48:35 +08:00
|
|
|
|
2011-12-02 06:48:48 +08:00
|
|
|
ucidef_set_interface_loopback
|
|
|
|
|
2011-12-02 06:48:43 +08:00
|
|
|
case $board in
|
2014-10-29 19:01:17 +08:00
|
|
|
a5-v11)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 6t"
|
|
|
|
;;
|
|
|
|
|
2015-01-22 17:35:22 +08:00
|
|
|
3g150b | \
|
2013-01-20 01:05:06 +08:00
|
|
|
3g300m | \
|
2015-04-09 18:32:37 +08:00
|
|
|
microwrt | \
|
2013-04-03 18:00:21 +08:00
|
|
|
w150m | \
|
2015-04-01 16:31:46 +08:00
|
|
|
zte-q7 | \
|
2012-03-28 03:29:57 +08:00
|
|
|
all0256n | \
|
2012-12-10 22:13:01 +08:00
|
|
|
all5002 | \
|
2013-04-26 03:03:01 +08:00
|
|
|
all5003 | \
|
2013-04-09 22:19:33 +08:00
|
|
|
broadway | \
|
2013-09-19 13:56:46 +08:00
|
|
|
dcs-930| \
|
2015-01-09 04:26:20 +08:00
|
|
|
ht-tm02| \
|
2014-07-02 15:42:44 +08:00
|
|
|
ncs601w | \
|
2013-04-09 22:19:33 +08:00
|
|
|
wnce2001)
|
2013-01-29 01:44:41 +08:00
|
|
|
ucidef_add_switch "switch0" "1" "0"
|
2012-08-29 18:37:47 +08:00
|
|
|
ucidef_set_interface_lan "eth0"
|
|
|
|
;;
|
|
|
|
|
2013-04-03 18:00:03 +08:00
|
|
|
3g-6200nl | \
|
2014-07-27 04:36:22 +08:00
|
|
|
mlw221)
|
2015-01-09 04:25:55 +08:00
|
|
|
ucidef_set_interface_lan "eth0.2"
|
|
|
|
;;
|
2015-01-17 15:07:36 +08:00
|
|
|
mlwg2)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
;;
|
2014-07-27 04:36:22 +08:00
|
|
|
|
2015-01-17 22:06:13 +08:00
|
|
|
m2m)
|
|
|
|
ucidef_add_switch "switch0" "4"
|
|
|
|
ucidef_set_interface_lan "eth0"
|
|
|
|
;;
|
|
|
|
|
2014-08-01 19:19:50 +08:00
|
|
|
wizard8800 | \
|
2013-11-17 04:28:52 +08:00
|
|
|
wl-330n | \
|
2013-11-17 21:14:46 +08:00
|
|
|
wmr300)
|
2012-01-24 19:48:47 +08:00
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
;;
|
|
|
|
|
2011-12-02 06:48:37 +08:00
|
|
|
b2c | \
|
2011-12-28 16:43:32 +08:00
|
|
|
nw718 | \
|
2012-06-19 17:52:15 +08:00
|
|
|
psr-680w | \
|
2012-02-20 00:44:49 +08:00
|
|
|
sl-r7205 | \
|
2012-02-11 23:11:36 +08:00
|
|
|
w502u | \
|
|
|
|
wr6202)
|
2011-12-06 00:54:48 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2011-12-02 06:48:35 +08:00
|
|
|
;;
|
2011-12-02 06:48:43 +08:00
|
|
|
|
2014-06-13 17:16:15 +08: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-16 02:29:44 +08: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-26 03:02:53 +08: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"
|
|
|
|
;;
|
|
|
|
|
2015-05-23 23:26:39 +08:00
|
|
|
cf-wr800n)
|
|
|
|
ucidef_set_interface_lan "eth0.1"
|
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "4 6t"
|
|
|
|
;;
|
|
|
|
|
2014-06-02 20:42:52 +08: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-08-18 21:10:04 +08:00
|
|
|
3g-6200n | \
|
2014-12-13 16:07:03 +08:00
|
|
|
ai-br100 | \
|
2013-08-15 03:35:27 +08:00
|
|
|
dir-610-a1 | \
|
2013-09-19 00:31:37 +08:00
|
|
|
dir-300-b7 | \
|
|
|
|
dir-320-b1 | \
|
2013-04-06 07:37:45 +08:00
|
|
|
dir-615-h1 | \
|
2015-01-20 14:34:28 +08:00
|
|
|
firewrt | \
|
2014-01-12 20:07:40 +08:00
|
|
|
hlk-rm04 | \
|
2014-11-12 22:55:00 +08:00
|
|
|
mt7621 | \
|
2014-11-06 17:31:31 +08:00
|
|
|
mt7628 | \
|
2014-07-15 01:10:39 +08:00
|
|
|
mzk-w300nh2 | \
|
2014-10-10 16:56:43 +08:00
|
|
|
mzk-750dhp | \
|
2014-10-30 18:10:51 +08:00
|
|
|
whr-300hp2 | \
|
|
|
|
whr-600d | \
|
2014-11-15 00:52:36 +08:00
|
|
|
wsr-600 | \
|
|
|
|
wsr-1166 | \
|
2014-12-13 00:17:31 +08:00
|
|
|
wt1520 | \
|
2015-02-02 17:01:07 +08:00
|
|
|
xiaomi-miwifi-mini |\
|
2014-12-13 00:17:31 +08:00
|
|
|
y1)
|
2012-12-30 01:50:38 +08: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-15 00:52:36 +08:00
|
|
|
|
2014-11-16 19:39:19 +08:00
|
|
|
whr-1166d)
|
2014-11-04 04:20:40 +08: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-30 01:50:38 +08:00
|
|
|
|
2014-06-17 02:54:48 +08:00
|
|
|
awm002-evb | \
|
2014-07-27 04:36:01 +08:00
|
|
|
awm003-evb | \
|
2013-11-30 16:36:56 +08:00
|
|
|
argus-atp52b | \
|
|
|
|
dir-645 | \
|
2015-01-18 05:20:05 +08:00
|
|
|
dir-860l-b1 | \
|
2012-02-23 03:46:19 +08:00
|
|
|
f5d8235-v1 | \
|
|
|
|
f5d8235-v2 | \
|
2013-07-23 21:07:00 +08:00
|
|
|
hg255d | \
|
2013-12-26 01:04:50 +08:00
|
|
|
rt-n14u | \
|
2014-03-07 17:54:59 +08:00
|
|
|
wrtnode | \
|
2014-10-20 14:28:48 +08:00
|
|
|
wt3020 | \
|
2014-07-11 06:02:28 +08:00
|
|
|
ur-326n4g | \
|
|
|
|
zbt-wa05)
|
2013-03-12 05:02:43 +08: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-24 00:56:06 +08:00
|
|
|
ur-336un)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
|
|
;;
|
|
|
|
|
2013-01-06 19:11:42 +08:00
|
|
|
br6524n | \
|
2012-02-23 03:46:19 +08:00
|
|
|
v11st-fe)
|
2011-12-23 22:27:16 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2012-02-23 03:46:17 +08: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 22:27:16 +08:00
|
|
|
;;
|
|
|
|
|
2014-11-03 16:00:13 +08:00
|
|
|
ar670w | \
|
2014-04-22 16:08:35 +08:00
|
|
|
ar725w | \
|
2012-02-23 03:46:19 +08:00
|
|
|
rt-n15 | \
|
|
|
|
wl-351)
|
2012-02-23 03:46:15 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2012-02-23 03:46:17 +08: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-23 03:46:15 +08:00
|
|
|
;;
|
|
|
|
|
2012-02-13 23:18:04 +08: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 15:23:12 +08:00
|
|
|
tew-691gr|\
|
2012-10-18 15:23:07 +08: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-02 04:51:24 +08: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 18:23:32 +08:00
|
|
|
wcr-150gn)
|
2013-11-30 16:36:56 +08: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-28 00:56:30 +08:00
|
|
|
;;
|
|
|
|
|
2014-07-12 14:54:03 +08: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 19:13:52 +08: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 18:00:08 +08:00
|
|
|
d105 | \
|
2014-02-18 21:33:25 +08:00
|
|
|
na930 | \
|
2013-02-03 01:21:05 +08:00
|
|
|
omni-emb-hpm|\
|
2012-01-23 18:23:32 +08:00
|
|
|
wli-tx4-ag300n)
|
|
|
|
ucidef_set_interface_lan "eth0"
|
2011-12-02 06:48:54 +08:00
|
|
|
;;
|
|
|
|
|
2014-11-05 22:37:13 +08:00
|
|
|
e1700 | \
|
2014-10-30 02:51:02 +08: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"
|
|
|
|
;;
|
|
|
|
|
2015-02-17 05:19:18 +08:00
|
|
|
wzr-agl300nh)
|
|
|
|
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 5t"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "0 5t"
|
|
|
|
;;
|
2011-12-02 06:48:35 +08:00
|
|
|
*)
|
2012-09-25 22:47:18 +08:00
|
|
|
RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350)"`
|
2011-12-02 06:48:51 +08:00
|
|
|
if [ -n "${RT3X5X}" ]; then
|
2012-08-29 18:37:38 +08:00
|
|
|
ramips_setup_rt3x5x_vlans
|
2011-12-02 06:48:51 +08:00
|
|
|
else
|
2013-11-18 17:35:14 +08:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
2011-12-02 06:48:51 +08:00
|
|
|
fi
|
2011-12-02 06:48:35 +08:00
|
|
|
;;
|
2011-12-02 06:48:43 +08:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
ramips_setup_macs()
|
|
|
|
{
|
|
|
|
local board="$1"
|
2011-12-02 06:48:45 +08:00
|
|
|
local lan_mac=""
|
|
|
|
local wan_mac=""
|
2011-12-02 06:48:43 +08:00
|
|
|
|
|
|
|
case $board in
|
2014-01-16 02:29:44 +08:00
|
|
|
br-6475nd)
|
2014-07-27 04:36:09 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2014-01-16 02:29:44 +08:00
|
|
|
wan_mac=$(mtd_get_mac_binary devdata 7)
|
|
|
|
;;
|
|
|
|
|
2012-04-21 20:30:40 +08:00
|
|
|
w306r-v20)
|
2014-07-27 04:36:09 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2013-02-16 19:50:25 +08:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 5)
|
2012-04-21 20:30:40 +08:00
|
|
|
;;
|
|
|
|
|
2013-11-25 16:33:42 +08:00
|
|
|
tew-691gr)
|
2014-07-27 04:36:09 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2013-11-25 16:33:42 +08:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 3)
|
2012-06-23 21:58:29 +08:00
|
|
|
;;
|
|
|
|
|
2013-11-25 16:33:42 +08:00
|
|
|
tew-692gr)
|
2014-07-27 04:36:09 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2013-11-25 16:33:42 +08:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 4)
|
|
|
|
;;
|
|
|
|
|
|
|
|
m3 |\
|
|
|
|
m4 |\
|
|
|
|
x5 |\
|
|
|
|
x8)
|
2014-07-27 04:36:09 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
|
|
|
lan_mac=$(macaddr_add "$lan_mac" -2)
|
2011-12-07 04:06:08 +08:00
|
|
|
;;
|
|
|
|
|
2014-10-29 19:01:17 +08:00
|
|
|
a5-v11 |\
|
2014-07-27 04:36:09 +08:00
|
|
|
bc2 |\
|
|
|
|
broadway |\
|
|
|
|
d105 |\
|
|
|
|
dir-620-a1 |\
|
|
|
|
esr-9753 |\
|
|
|
|
freestation5 |\
|
|
|
|
hlk-rm04 | \
|
|
|
|
mpr-a1 | \
|
|
|
|
mpr-a2 | \
|
|
|
|
dir-300-b7 | \
|
|
|
|
dir-320-b1 | \
|
|
|
|
psr-680w |\
|
2014-08-03 19:13:52 +08:00
|
|
|
sl-r7205 |\
|
|
|
|
y1 |\
|
|
|
|
y1s)
|
2014-07-27 04:36:09 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2013-02-16 19:50:25 +08:00
|
|
|
lan_mac=$(macaddr_setbit_la "$lan_mac")
|
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
2012-08-12 20:48:24 +08:00
|
|
|
;;
|
|
|
|
|
2015-01-09 04:26:20 +08:00
|
|
|
ht-tm02)
|
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
|
|
|
;;
|
|
|
|
|
2014-06-02 20:42:52 +08:00
|
|
|
cy-swr1100 | \
|
2012-10-18 15:23:03 +08:00
|
|
|
dir-645)
|
2013-02-16 19:50:21 +08:00
|
|
|
lan_mac=$(mtd_get_mac_ascii nvram lanmac)
|
|
|
|
wan_mac=$(mtd_get_mac_ascii nvram wanmac)
|
2012-10-18 15:23:03 +08:00
|
|
|
;;
|
|
|
|
|
2014-11-05 22:37:13 +08:00
|
|
|
e1700)
|
|
|
|
wan_mac=$(mtd_get_mac_ascii config WAN_MAC_ADDR)
|
|
|
|
;;
|
|
|
|
|
2012-02-11 23:11:34 +08:00
|
|
|
wcr-150gn)
|
2015-01-09 04:25:55 +08:00
|
|
|
wan_mac=$(mtd_get_mac_binary factory 40)
|
2011-12-06 01:27:07 +08:00
|
|
|
;;
|
2011-12-28 00:56:30 +08:00
|
|
|
|
2012-02-13 23:18:04 +08:00
|
|
|
rt-n56u)
|
2014-07-27 04:36:09 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
|
|
|
lan_mac=$(macaddr_setbit_la "$lan_mac")
|
2013-02-16 19:50:21 +08:00
|
|
|
wan_mac=$(mtd_get_mac_binary factory 32772)
|
2012-02-13 23:18:04 +08:00
|
|
|
;;
|
|
|
|
|
2012-08-18 01:56:07 +08:00
|
|
|
all0239-3g | \
|
2012-08-29 18:37:43 +08:00
|
|
|
carambola | \
|
2013-05-07 00:45:35 +08:00
|
|
|
freestation5 | \
|
2013-04-09 22:19:33 +08:00
|
|
|
w502u | \
|
|
|
|
wnce2001)
|
2013-02-16 19:50:21 +08:00
|
|
|
wan_mac=$(mtd_get_mac_binary factory 46)
|
2011-12-28 16:43:32 +08:00
|
|
|
;;
|
|
|
|
|
2015-03-20 17:37:07 +08:00
|
|
|
wsr-600)
|
|
|
|
wan_mac=$(mtd_get_mac_binary factory 4)
|
|
|
|
lan_mac=$wan_mac
|
|
|
|
;;
|
|
|
|
wsr-1166)
|
|
|
|
local index="$(find_mtd_index "board_data")"
|
|
|
|
wan_mac="$(grep -m1 mac= "/dev/mtd${index}" | cut -d= -f2)"
|
|
|
|
lan_mac=$wan_mac
|
|
|
|
;;
|
2014-06-02 20:43:04 +08:00
|
|
|
*)
|
2014-07-14 15:38:23 +08:00
|
|
|
lan_mac=$(cat /sys/class/net/eth0/address)
|
2014-06-02 20:43:04 +08:00
|
|
|
wan_mac=$(macaddr_add "$lan_mac" 1)
|
|
|
|
;;
|
|
|
|
|
2011-12-02 06:48:43 +08:00
|
|
|
esac
|
2011-12-02 06:48:45 +08:00
|
|
|
|
2012-01-23 18:23:32 +08:00
|
|
|
[ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac
|
|
|
|
[ -n "$wan_mac" ] && ucidef_set_interface_macaddr wan $wan_mac
|
2011-12-02 06:48:43 +08:00
|
|
|
}
|
|
|
|
|
2014-08-18 21:09:20 +08:00
|
|
|
board_config_update
|
2011-12-02 06:48:43 +08:00
|
|
|
board=$(ramips_board_name)
|
|
|
|
ramips_setup_interfaces $board
|
|
|
|
ramips_setup_macs $board
|
2014-08-18 21:09:20 +08:00
|
|
|
board_config_flush
|
2011-12-02 06:48:48 +08:00
|
|
|
|
|
|
|
exit 0
|