blob: 816bc7dd8332832eb6effbe34e34c3266c53021a (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/bin/rc
# desc: configure the network
switch($1){
case checkready checkdone
if(~ $netisfrom none){
confignet=done
export confignet
exit
}
if(~ $netisfrom ppp ether){
x=config$netisfrom
$x=done
config$netisfrom checkdone
confignet=$$x
export confignet
exit
}
confignet=ready
export confignet
exit
case go
devs=''
if(test -d /net/ether0 >[2]/dev/null)
devs=$devs^ether
if(test -f /dev/eia? >[2]/dev/null)
devs=$devs^ppp
switch($devs){
case ''
echo
echo 'Could not find ethernet card nor serial port nor modem.'
echo
netisfrom=none
case ppp
echo
echo 'No ethernet card was detected, but there is a serial port or modem.'
echo 'We will configure PPP.'
echo
netisfrom=ppp
case ether
echo
echo 'No serial port or modem detected, but there is an ethernet card.'
echo 'We will configure the ethernet.'
echo
netisfrom=ether
case etherppp
echo
echo 'You can connect to the internet via'
echo 'a local ethernet or a dial-up PPP connection.'
echo
prompt -d ether 'Interface to use' ether ppp
netisfrom=$rd
}
export netisfrom
if(~ $netisfrom ether ppp)
exec config$netisfrom go
if(! test -f /srv/cs && ! test -f /net/cs)
ndb/cs
if(! test -f /srv/dns && ! test -f /net/dns)
ndb/dns -r
}
|