rc.conf revision 1.81
1#!/bin/sh -
2#
3#	$OpenBSD: rc.conf,v 1.81 2002/11/23 18:29:21 deraadt Exp $
4
5# set these to "NO" to turn them off.  otherwise, they're used as flags
6routed_flags=NO		# for normal use: "-q"
7mrouted_flags=NO	# for normal use: "", if activated
8			# be sure to enable multicast_router below.
9rarpd_flags=NO		# for normal use: "-a"
10bootparamd_flags=NO	# for normal use: ""
11rbootd_flags=NO		# for normal use: ""
12sshd_flags=""		# for normal use: ""
13named_flags=NO		# for normal use: ""
14rdate_flags=NO		# for normal use: [RFC868-host] or [-n RFC1361-host]
15timed_flags=NO		# for normal use: ""
16ntpdate_flags=NO	# for normal use: NTP server; run before ntpd starts
17isakmpd_flags=NO	# for normal use: ""
18mopd_flags=NO		# for normal use: "-a"
19apmd_flags=NO		# for normal use: ""
20dhcpd_flags=NO		# for normal use: "-q"
21rtadvd_flags=NO		# for normal use: list of interfaces
22			# be sure to set net.inet6.ip6.forwarding=1
23route6d_flags=NO	# for normal use: ""
24			# be sure to set net.inet6.ip6.forwarding=1
25rtsold_flags=NO		# for normal use: interface
26			# be sure to set net.inet6.ip6.forwarding=0
27			# be sure to set net.inet6.ip6.accept_rtadv=1
28lpd_flags=NO		# for normal use: "" (or "-l" for debugging)
29
30# use -u to disable chroot, see httpd(8)
31httpd_flags=NO		# for normal use: "" (or "-DSSL" after reading ssl(8))
32
33# For normal use: "-L sm-mta -bd -q30m", and note there is a cron job
34sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
35
36# Set to NO if ftpd is running out of inetd
37ftpd_flags=NO		# for non-inetd use: "-D"
38
39# Set to NO if identd is running out of inetd
40identd_flags=NO		# for non-inetd use: "-b -u nobody -elo"
41
42# On some architectures, you must also disable console getty in /etc/ttys
43xdm_flags=NO		# for normal use: ""
44
45# For enabling console mouse support (i386 architecture only)
46wsmoused_flags=NO	# for ps/2 or usb mice: "", serial: "-p /dev/cua00"
47
48# set the following to "YES" to turn them on
49rwhod=NO
50nfs_server=NO		# see sysctl.conf for nfs client configuration
51lockd=NO
52gated=NO
53amd=NO
54pf=NO			# Packet filter / NAT
55portmap=NO		# Note: inetd(8) rpc services need portmap too
56inetd=YES		# almost always needed
57check_quotas=YES	# NO may be desirable in some YP environments
58ntpd=YES		# run ntpd if it exists
59
60krb5_master_kdc=NO	# KerberosV master KDC. Run 'info heimdal' for help.
61krb5_slave_kdc=NO	# KerberosV slave KDC.
62afs=NO			# mount and run afs
63
64# Multicast routing configuration
65# Please look at /etc/netstart for a detailed description if you change these
66multicast_host=NO	# Route all multicast packets to a single interface
67multicast_router=NO	# A multicast routing daemon will be run, e.g. mrouted
68
69# miscellaneous other flags
70# only used if the appropriate server is marked YES above
71savecore_flags=			# "-z" to compress
72gated_flags=
73ypserv_flags=			# E.g. -1 for YP v1, -d for DNS etc
74yppasswdd_flags=		# "-d /etc/yp" if passwd files are in /etc/yp
75nfsd_flags="-tun 4"		# Crank the 4 for a busy NFS fileserver
76amd_dir=/tmp_mnt		# AMD's mount directory
77amd_master=/etc/amd/master	# AMD 'master' map
78syslogd_flags=			# add more flags, ie. "-u -a /chroot/dev/log"
79named_user=named		# Named should not run as root unless necessary
80named_chroot=/var/named		# Where to chroot named if not empty
81pf_rules=/etc/pf.conf		# Packet filter rules file
82pflogd_flags=			# add more flags, ie. "-s 256"
83afs_mount_point=/afs		# Mountpoint for AFS
84afs_device=/dev/xfs0		# Device used by afsd
85afsd_flags=-z			# Flags passed to afsd
86shlib_dirs=			# extra directories for ldconfig
87
88local_rcconf="/etc/rc.conf.local"
89
90[ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line
91