# netconfig	This file describes the local system's network setup.
#		It is used by the "rc.net" script, and contains lines
#		of text describing the various fields of information
#		needed by the script.
#
# Usage:	Blank lines and lines starting with a '#' are comments.
#		All other lines are data, and have the following syntax:
#
#		keyword [arguments]
#
#		The following keywords are currently implemented:
#		(S) setup, (R) runtime.
#
#		(S)   nisdomain domainname
#		(S|R) echo [argument...]
#		(R)   exec arguments...
#		(S|R) exit [exitvalue]
#		(S)   findserver nameserver own_ipaddr domainname netmask \
#			broadcast [gateway]
#		(S)   host name-of-this-host
#		(S)   iface iface-name addr netmask \
#			{ broadcast | ptp dstaddr } [argument...]
#		(R)   inet daemon [argument...]
#		(S)   nfsmount
#		(S)   ns nameserver
#		(S)   route [-net|-host] target [[gw] gateway] [argument...]
#		(R)   rpc daemon [argument...]
#		(R)   server daemon [argument...]
#
# Version:	@(#)/etc/netconfig	1.10  10-Jul-1995  MvS.
#

# Our Fully Qualified Domain Name
host myhost.mydomain.org

# And the NIS domain (for "domainname")
nisdomain myNISdomain

#
# Interface setups.
#
# Loopback - always enabled.
iface lo localhost 255.0.0.0 127.255.255.255 up

# No ethernet interface use dummy interface.
iface dummy myhost 255.255.255.0 myhost up

# If one has an ethernet interface
# iface eth0 myhost 255.255.255.0 10.0.32.255 up

# Our nameserver
# ns 10.0.32.1

# Automaticly try to find nameserver and setup system domainame and devicesetup
# findserver 192.9.200.1 192.9.200.250 mydomain.org 255.255.255.0 192.9.200.255

# Routes.
route -net loopback
route myhost dev dummy

# route -net ethernet
# route default gw router

# Perform any NFS mounting needed.
nfsmount

# Start up any servers needed.
server	inetd
#server	named
#inet	routed
#inet	timed
#server	rwhod
#server	lpd
#rpc	portmap
#rpc	mountd
#rpc	nfsd
#rpc	rquotad
#rpc	pcnfsd /var/spool/lpd/pcnfs
#rpc	bwnfsd /var/spool/lpd/pcnfs
#rpc	rstatd
#rpc	rusersd
#rpc	rwall
#server	ypbind
#server	amd -l /var/log/messages/amd.log /net /etc/amd/network.map
#server	/usr/lib/sendmail -bd -q15m
#exec	/etc/rc.d/rc.news
