1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 00:46:47 +03:00
openwrt-xburst/target/linux/lantiq/base-files/etc/uci-defaults/network
mirko d2aa64852c [target/linux/lantiq] change /etc/config/network according to actual VLAN config to enable LAN port 4 on the ARV4520PW board
The VLAN mapping on the ARV4520PW board is the following:

port on Router: | VLAN in software:
LAN 1           | 3
LAN 2           | 2
LAN 3           | 1
LAN 4           | 0
DSL             | 4

So LAN4 is not VLAN4 but VLAN0 (VLAN4 is DSL port) -> set "3 2 1 0 5t" as default switch config.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31391 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-21 08:07:21 +00:00

81 lines
1.5 KiB
Bash
Executable File

#!/bin/sh
#
# Copyright (C) 2011-2012 OpenWrt.org
#
[ -e /etc/config/network ] && exit 0
set_atm_wan() {
local vpi=$1
local vci=$2
local encaps=$3
local payload=$4
uci batch <<EOF
set network.atm='atm-bridge'
set network.atm.unit='0'
set network.atm.vpi='$vpi'
set network.atm.vci='$vci'
set network.atm.encaps='$encaps'
set network.atm.payload='$payload'
set network.wan='interface'
set network.wan.ifname='nas0'
set network.wan.proto='pppoe'
set network.wan.username='foo'
set network.wan.password='bar'
EOF
}
set_adsl() {
local fwannex=$1
local annex=$2
uci batch <<EOF
set network.adsl='adsl-device'
set network.adsl.fwannex='$fwannex'
set network.adsl.annex='$annex'
EOF
}
. /lib/functions/uci-defaults.sh
. /lib/lantiq.sh
touch /etc/config/network
ucidef_set_interface_loopback
ucidef_set_interface_lan 'eth0'
vpi=1
vci=32
encaps="llc"
payload="bridged"
fwannex=$(lantiq_dsl_fwannex)
board=$(lantiq_board_name)
dsl=$(lantiq_soc_has_adsl)
case "$board" in
# annex B with adm6996
ARV4520PW|GIGASX76X)
ucidef_set_interface_lan "eth0.1"
ucidef_add_switch "eth0" "1" "1"
ucidef_add_switch_vlan "eth0" "1" "3 2 1 0 5t"
set_adsl "b" "b2p"
;;
# annex A with ar8316
ARV4519PW|ARV7518PW)
ucidef_set_interface_lan "eth0.1"
ucidef_add_switch "eth0" "1" "1"
ucidef_add_switch_vlan "eth0" "1" "0t 2 3 4 5"
set_adsl "a" "a2p"
;;
ARV7525PW|ARV4525PW|*)
set_adsl "$fwannex" "${fwannex}2p"
;;
esac
[ -z "$dsl" ] || set_atm_wan "$vpi" "$vci" "$encaps" "$payload"
uci commit network
exit 0