configure switch at boot time based on vlan*ports
SVN-Revision: 2822
This commit is contained in:
parent
84162d6bae
commit
efe87817fe
1 changed files with 9 additions and 1 deletions
|
@ -7,11 +7,19 @@ setup_eth()
|
||||||
iwconfig "$INTERFACE" 2>&- | grep -v 'no wireless' >&- && {
|
iwconfig "$INTERFACE" 2>&- | grep -v 'no wireless' >&- && {
|
||||||
/sbin/wifi
|
/sbin/wifi
|
||||||
}
|
}
|
||||||
|
[ -d /proc/switch ] || {
|
||||||
|
insmod switch-core
|
||||||
|
insmod switch-robo || insmod switch-adm
|
||||||
|
}
|
||||||
if="$(echo "$INTERFACE" | sed s,eth,et,)"
|
if="$(echo "$INTERFACE" | sed s,eth,et,)"
|
||||||
ifconfig "$INTERFACE" up 2>&- >&-
|
ifconfig "$INTERFACE" up 2>&- >&-
|
||||||
for vlan in $(seq 0 15); do
|
for vlan in $(seq 0 15); do
|
||||||
[ "$(nvram get vlan${vlan}hwname)" = "$if" ] && \
|
[ "$(nvram get vlan${vlan}hwname)" = "$if" ] && {
|
||||||
$DEBUG vconfig add "$INTERFACE" "$vlan"
|
$DEBUG vconfig add "$INTERFACE" "$vlan"
|
||||||
|
vports="$(nvram get vlan${vlan}ports)"
|
||||||
|
[ \! -z "$vports" -a -d "/proc/switch/$INTERFACE" ] && \
|
||||||
|
echo "$vports" > "/proc/switch/$INTERFACE/vlan/$vlan/ports"
|
||||||
|
}
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue