1 ifconfig -h 192.9.200.1
2 echo -n "Starting network deamons: "
3 for daemon in rarpd nonamed irdpd
4 do
5 if [ -f /usr/bin/$daemon ]
6 then
7 echo -n " $daemon"
8 $daemon &
9 fi
10 done
11 echo .
12
13 # Get the nodename from the DNS and set it.
14 hostaddr -a >/etc/hostname.file || echo noname >/etc/hostname.file
15
16 echo -n "Starting network services:"
17 for pair in 'shell in.rshd' 'login in.rld' 'telnet in.telnetd' 'ftp in.ftpd'
18 do
19 set $pair
20 if [ -f /usr/bin/$2 ]
21 then
22 echo -n " $1"
23 tcpd $1 /usr/bin/$2 &
24 fi
25 done
26 echo .
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.