#**********************  NFSCONF  ******************************

# NFS configuration.  See nfsd(1m), mount(1m), pcnfsd(1m)
#
# NFS_CLIENT:	1 if this node is an NFS client, 0 if not
# NFS_SERVER:	1 if this node is an NFS server, 0 if not
#		Note: it is possible for one host to be a client, a server,
#		both or neither!  This system is an NFS client if you will
#		be NFS mounting remote file systems; this system is a server
#		if you will be exporting file systems to remote hosts.
#		See Also:  nfsd(1M), mount(1M).
# NUM_NFSD:	Number of NFS deamons (nfsd) to start on an NFS server.  Four
#               has been chosen as optimal. For the diskless NFS server,
#               the number of nfsds needs to be set to 32 which should be
#               adequate for most configurations. It is also recommended
#               increasing the number of nfsds for the powerful NFS server
#               to improve the performance. Refer to NFS Client/Server
#               Configuration Topology and Performance Tuning Guide.
# NUM_NFSIOD:	Number of NFS BIO daemons (biod) to start on an NFS client.
#		Four has been chosen as optimal. For a powerful client,
#		HP recommends that 12 to 16 biods be run. Refer to NFS server
#		Client/Server Configuration Topology and Performance 
#		Tuning Guide.
# PCNFS_SERVER:	1 if this node is a server for PC-NFS requests.  This
#		variable controls the startup of the pcnfsd(1M) server.
#		See Also:  pcnfsd(1M).
#
NFS_CLIENT=1
NFS_SERVER=0
NUM_NFSD=4
NUM_NFSIOD=4
PCNFS_SERVER=0
# export feature does not work in this file since files are being
# sourced into another file rc.config and this file is being sourced
# into the startup scripts.

#
# DAEMON OPTIONS
#
# LOCKD_OPTIONS:   options to be passed to rpc.lockd  when it is started.
# STATD_OPTIONS:   options to be passed to rpc.statd  when it is started.
# MOUNTD_OPTIONS:  options to be passed to rpc.mountd when it is started.
#
LOCKD_OPTIONS=""
STATD_OPTIONS=""
MOUNTD_OPTIONS=""
#
# automount configuration
#
# AUTOMOUNT = 0 Do not start automount
# AUTOMOUNT = 1 Start Automount.
# AUTO_MASTER = filename of the master file passed to automount
# AUTO_OPTIONS = options passed to automount
#
AUTOMOUNT=1
AUTO_MASTER="/etc/auto_master"
AUTO_OPTIONS="-f $AUTO_MASTER"
#
# rpc.mountd configuration.  See mountd(1m)
#
# START_MOUNTD:	1 if rpc.mountd should be started by a system startup script.
#		0 if /etc/inetd.conf has an entry for mountd.
#	Note: rpc.mountd should be started from a system startup script,
#	however, it can be started from either nfs.server or inetd, and
#       MUST only be configured in one place.
#
START_MOUNTD=1
