shithub: front

ref: e38d42b4a7f278a7f7835e07983115e4ee1b0db4
dir: /rc/bin/inst/startether/

View raw version
#!/bin/rc

# desc: activate ethernet card
# prereq: configether

switch($1) {
case checkready
	if(isipdevup $netdev) {
		startether=done
		export startether
	}

case go
	if(isipdevup $netdev)
		exit

	log starting ethernet $ethermethod config
	ip/ipconfig -6
	switch($ethermethod) {
	case manual
		ip/ipconfig -g $gwaddr ether $netdev $ipaddr $ipmask >>[2]/srv/log
	case automatic
		>>[2]/srv/log @{
			test -e /env/nora6 || ip/ipconfig ra6 recvra 1 &
			ip/ipconfig &
			wait
		}
	}

case checkdone
	if(! isipdevup $netdev) {
		startether=notdone
		export startether
	}
}