4 debug
"### ifup $type ###"
6 if=$
(nvram get
${type}_ifname
)
7 if [ "${if%%[0-9]}" = "ppp" ]; then
8 if=$
(nvram get pppoe_ifname
)
11 if_valid
$if ||
return
13 $DEBUG ifconfig
$if down
2>&-
14 if [ "${if%%[0-9]}" = "br" ]; then
15 stp
=$
(nvram get
${type}_stp
)
16 $DEBUG brctl delbr
$if 2>&-
17 $DEBUG brctl addbr
$if
18 $DEBUG brctl setfd
$if 0
19 $DEBUG brctl stp
$if ${stp:-0}
20 for sif
in $
(nvram get
${type}_ifnames
); do {
21 if_valid
$sif ||
continue
22 $DEBUG ifconfig
$sif 0.0.0.0 up
23 $DEBUG brctl addif
$if $sif
27 mac
=$
(nvram get
${type}_hwaddr
)
28 ${mac:+$DEBUG ifconfig $if hw ether $mac}
30 if_proto
=$
(nvram get
${type}_proto
)
33 ip
=$
(nvram get
${type}_ipaddr
)
34 netmask
=$
(nvram get
${type}_netmask
)
35 gateway
=$
(nvram get
${type}_gateway
)
37 $DEBUG ifconfig
$if $ip ${netmask:+netmask $netmask} broadcast
+ up
38 ${gateway:+$DEBUG route add default gw $gateway}
40 [ -f /etc
/resolv.conf
] && return
42 debug
"# --- creating /etc/resolv.conf ---"
43 for dns
in $
(nvram get
${type}_dns
); do {
44 echo "nameserver $dns" >> /etc
/resolv.conf
48 ip
=$
(nvram get
${type}_ipaddr
)
49 pidfile
=/tmp
/dhcp-
${type}.pid
50 if [ -f $pidfile ]; then
51 $DEBUG kill $
(cat $pidfile)
53 ${DEBUG:-eval} "udhcpc -i $if ${ip:+-r $ip} -b -p $pidfile &"
56 # pppoe is handled by /etc/init.d/S50pppoe
59 echo "### ifup $type: ignored ${type}_proto=\"$if_proto\" (not supported)"
This page took 0.043503 seconds and 5 git commands to generate.