configure switch at boot time based on vlan*ports
SVN-Revision: 2822
This commit is contained in:
parent
84162d6bae
commit
efe87817fe
@ -7,11 +7,19 @@ setup_eth()
|
||||
iwconfig "$INTERFACE" 2>&- | grep -v 'no wireless' >&- && {
|
||||
/sbin/wifi
|
||||
}
|
||||
[ -d /proc/switch ] || {
|
||||
insmod switch-core
|
||||
insmod switch-robo || insmod switch-adm
|
||||
}
|
||||
if="$(echo "$INTERFACE" | sed s,eth,et,)"
|
||||
ifconfig "$INTERFACE" up 2>&- >&-
|
||||
for vlan in $(seq 0 15); do
|
||||
[ "$(nvram get vlan${vlan}hwname)" = "$if" ] && \
|
||||
[ "$(nvram get vlan${vlan}hwname)" = "$if" ] && {
|
||||
$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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user