2005-02-06 02:58:10 +02:00
|
|
|
#!/bin/ash
|
2005-07-15 19:56:23 +03:00
|
|
|
[ $# = 0 ] && { echo " $0 <group>"; exit; }
|
2005-10-22 23:47:19 +03:00
|
|
|
|
2005-02-06 02:58:10 +02:00
|
|
|
. /etc/functions.sh
|
2005-07-21 17:02:53 +03:00
|
|
|
. /etc/network.overrides
|
2005-08-25 14:57:56 +03:00
|
|
|
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
2005-07-21 17:02:53 +03:00
|
|
|
|
2005-05-31 02:46:18 +03:00
|
|
|
type=$1
|
|
|
|
debug "### ifup $type ###"
|
|
|
|
|
2005-07-16 17:01:59 +03:00
|
|
|
if_proto=$(nvram get ${type}_proto)
|
2005-10-22 23:47:19 +03:00
|
|
|
if=$(nvram get ${type}_ifname)
|
|
|
|
[ "${if%%[0-9]}" = "ppp" ] && if=$(nvram get ${if_proto}_ifname)
|
|
|
|
|
|
|
|
if_valid $if || [ "$if_proto" = "pptp" ] || exit
|
|
|
|
mac=$(nvram get ${type}_hwaddr)
|
|
|
|
$DEBUG ifconfig $if down 2>&-
|
|
|
|
|
|
|
|
if [ "${if%%[0-9]}" = "br" ]; then
|
|
|
|
stp=$(nvram get ${type}_stp)
|
|
|
|
$DEBUG brctl delbr $if 2>&-
|
|
|
|
$DEBUG brctl addbr $if
|
|
|
|
$DEBUG brctl setfd $if 0
|
|
|
|
$DEBUG brctl stp $if ${stp:-0}
|
|
|
|
|
|
|
|
for sif in $(nvram get ${type}_ifnames); do
|
|
|
|
if_valid $sif || continue
|
|
|
|
${mac:+$DEBUG ifconfig $sif down hw ether $mac}
|
|
|
|
$DEBUG ifconfig $sif 0.0.0.0 up
|
|
|
|
$DEBUG brctl addif $if $sif
|
|
|
|
done
|
|
|
|
else
|
|
|
|
${mac:+$DEBUG ifconfig $if down hw ether $mac}
|
|
|
|
fi
|
|
|
|
|
|
|
|
do_ifup $if_proto $type
|