[BACK]Return to netstart CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/netstart, Revision 1.43

1.1       deraadt     1: #!/bin/sh -
                      2: #
1.43    ! deraadt     3: #      $OpenBSD: netstart,v 1.42 1998/09/10 16:01:32 marc Exp $
1.1       deraadt     4:
                      5: # /etc/myname contains my symbolic name
                      6: #
                      7: hostname=`cat /etc/myname`
                      8: hostname $hostname
                      9: if [ -f /etc/defaultdomain ]; then
                     10:        domainname `cat /etc/defaultdomain`
1.4       dm         11: fi
1.30      deraadt    12:
                     13: # pick up option configuration
                     14: . /etc/rc.conf
1.4       dm         15:
                     16: # Configure the IP filter before configuring network interfaces
                     17: #
                     18: if [ X"${ipfilter}" = X"YES" -a -f "${ipfilter_rules}" ]; then
                     19:        echo 'configuring IP filter'
                     20:        ipf -Fa -f ${ipfilter_rules} -E
                     21: else
                     22:        ipfilter=NO
1.1       deraadt    23: fi
1.17      kstailey   24:
                     25: # Configure NAT before configuring network interfaces
                     26: #
1.37      deraadt    27: if [ "${ipnat}" = "YES" -a "${ipfilter}" = "YES" -a -f "${ipnat_rules}" ]; then
1.17      kstailey   28:        echo 'configuring NAT'
1.37      deraadt    29:        ipnat -CF -f ${ipnat_rules}
1.17      kstailey   30: else
1.37      deraadt    31:        ipnat=NO
1.17      kstailey   32: fi
                     33:
1.24      kstailey   34: # set the address for the loopback interface
                     35: ifconfig lo0 inet localhost
1.1       deraadt    36:
1.24      kstailey   37: # use loopback, not the wire
1.38      deraadt    38: route -n add -host $hostname localhost
                     39: route -n add -net 127 127.0.0.1 -reject
1.24      kstailey   40:
                     41: # configure all of the non-loopback interfaces which we know about.
1.1       deraadt    42: # do this by reading /etc/hostname.* files, where * is the name
                     43: # of a given interface.
                     44: #
                     45: # these files are formatted like the following, but with no # at the
                     46: # beginning of the line
                     47: #
                     48: # addr_family hostname netmask broadcast_addr options
                     49: # dest dest_addr
                     50: #
1.42      marc       51: # OR
                     52: #
                     53: # dhcp
                     54: #
1.1       deraadt    55: # addr_family is the address family of the interface, generally inet
                     56: # hostname is the host name that belongs to the interface, in /etc/hosts.
                     57: # netmask is the network mask for the interface.
                     58: # broadcast_addr is the broadcast address for the interface
                     59: # options are misc. options to ifconfig for the interface.
                     60: #
                     61: # dest is simply the string "dest" (no quotes, though) if the interface
                     62: # has a "destination" (i.e. it's a point-to-point link, like SLIP).
                     63: # dest_addr is the hostname of the other end of the link, in /etc/hosts
                     64: #
1.42      marc       65: # dhcp is simply the string "dhcp" (no quotes, though) if the interface
                     66: # is to be configured using DHCP.  See dhclient(8) and dhclient.conf(5)
                     67: # for details.
                     68: #
1.1       deraadt    69: # the only required contents of the file are the addr_family field
                     70: # and the hostname.
                     71:
1.42      marc       72: (
1.1       deraadt    73:     tmp="$IFS"
                     74:     IFS="$IFS."
                     75:     set -- `echo /etc/hostname*`
                     76:     IFS=$tmp
                     77:     unset tmp
                     78:
                     79:     while [ $# -ge 2 ] ; do
                     80:         shift            # get rid of "hostname"
                     81:         (
                     82:             read af name mask bcaddr extras
1.31      deraadt    83:             read dt dtaddr
1.1       deraadt    84:
1.42      marc       85:            # check to see if device should be configure by dhcp
                     86:            if [ "$af" = "dhcp" ]; then
1.43    ! deraadt    87:                ifconfig $1 $extras down
1.42      marc       88:                cmd="/sbin/dhclient $1";
                     89:            else
                     90:                if [ ! -n "$name" ]; then
                     91:                    echo "/etc/hostname.$1: invalid network configuration file"
                     92:                    exit
                     93:                fi
                     94:
                     95:                cmd="ifconfig $1 $af $name "
                     96:                if [ "${dt}" = "dest" ]; then cmd="$cmd $dtaddr"; fi
                     97:                if [ -n "$mask" ]; then cmd="$cmd netmask $mask"; fi
                     98:                if [ -n "$bcaddr" -a "X$bcaddr" != "XNONE" ]; then
                     99:                    cmd="$cmd broadcast $bcaddr";
                    100:                fi
                    101:                cmd="$cmd $extras";
1.1       deraadt   102:            fi
                    103:
                    104:            $cmd
                    105:         ) < /etc/hostname.$1
                    106:         shift
                    107:     done
1.42      marc      108: )
1.1       deraadt   109:
1.14      deraadt   110: # /etc/mygate, if it exists, contains the name of my gateway host
                    111: # that name must be in /etc/hosts.
1.42      marc      112: if [ -f /etc/mygate ]; then
1.38      deraadt   113:        route -n add -host default `cat /etc/mygate`
1.40      downsj    114:
                    115:        # default multicast route for hosts with a gateway
                    116:        route -n add -net 224.0.0.0 -interface default
1.42      marc      117: else
1.40      downsj    118:        # default multicast route
                    119:        route -n add -net 224.0.0.0 -interface $hostname
1.14      deraadt   120: fi