ref: d9b37eff37a6d5a0a1ab5c7563ce0818b1d368f5
dir: /rc/bin/inst/startether/
#!/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 switch($ethermethod) { case manual ip/ipconfig -g $gwaddr ether $netdev $ipaddr $ipmask >>[2]/srv/log case dhcp ip/ipconfig >>[2]/srv/log } case checkdone if(! isipdevup $netdev) { startether=notdone export startether } }