summaryrefslogtreecommitdiff
path: root/rc/bin/inst/startether
blob: 852b2f4c32a51683c836668a664b5f4fc10795c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/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 @{
			ip/ipconfig ra6 recvra 1 &
			ip/ipconfig &
			wait
		}
	}

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