03478d7acc
anymore. Added an ifconfig line with ie0.
28 lines
562 B
Bash
Executable File
28 lines
562 B
Bash
Executable File
#!/bin/sh -
|
|
#
|
|
# @(#)netstart 5.9 (Berkeley) 3/30/91
|
|
|
|
routedflags=-q
|
|
timedflags=NO
|
|
rwhod=NO
|
|
#kerberos_server=YES
|
|
#nfs_server=YES
|
|
#name_server=YES
|
|
#gated=YES
|
|
|
|
# my-name is my symbolic name
|
|
# my-netmask is specified in /etc/networks
|
|
#
|
|
hostname=`cat /etc/myname`
|
|
hostname $hostname
|
|
|
|
# ifconfig ie0 inet $hostname netmask my-netmask
|
|
# ifconfig is0 inet $hostname netmask my-netmask
|
|
# ifconfig ed0 inet $hostname netmask my-netmask
|
|
|
|
# set the address for the loopback interface
|
|
ifconfig lo0 inet localhost
|
|
|
|
# use loopback, not the wire
|
|
# route add $hostname localhost
|