#!/bin/sh -
#
#	@(#)netstart	5.8 (Berkeley) 7/25/90

#routedflags="-q /dev/null"
routedflags=NO
gatedflags=NO
timedflags=NO
named=NO
rwhod=NO
amd=YES

# myname is my symbolic name
# my-netmask is specified in /etc/networks
#
hostname=myname.my.domain
hostname $hostname

# configure standard ethernet interface
#ifconfig ub0 inet $hostname netmask 255.255.255.0

# alternate addresses on ethernet
#ifconfig ub0 alias 129.177.21.11

# configure standard 4-meg token-ring interface
#ifconfig lan0 inet $hostname netmask 255.255.255.0

# configure PC-style 4/16-meg token-ring interface
#ifconfig tr0 inet $hostname netmask 255.255.255.0

# set the address for the loopback interface
ifconfig lo0 inet localhost

# use loopback, not the wire
route add $hostname localhost
