rc.conf revision 1.92
1#!/bin/sh -
2#
3#	$OpenBSD: rc.conf,v 1.92 2004/01/23 22:11:40 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)
29sensorsd_flags=NO	# for normal use: ""
30
31# use -u to disable chroot, see httpd(8)
32httpd_flags=NO		# for normal use: "" (or "-DSSL" after reading ssl(8))
33
34# For normal use: "-L sm-mta -bd -q30m", and note there is a cron job
35sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
36spamd_flags=NO		# for normal use: "" and see spamd-setup(8)
37
38# Set to NO if ftpd is running out of inetd
39ftpd_flags=NO		# for non-inetd use: "-D"
40
41# Set to NO if identd is running out of inetd
42identd_flags=NO		# for non-inetd use: "-b -elo"
43
44# On some architectures, you must also disable console getty in /etc/ttys
45xdm_flags=NO		# for normal use: ""
46
47# For enabling console mouse support (i386 and alpha only)
48wsmoused_flags=NO	# for ps/2 or usb mice: "", serial: "-p /dev/cua00"
49
50# set the following to "YES" to turn them on
51rwhod=NO
52nfs_server=NO		# see sysctl.conf for nfs client configuration
53lockd=NO
54amd=NO
55pf=NO			# Packet filter / NAT
56portmap=NO		# Note: inetd(8) rpc services need portmap too
57inetd=YES		# almost always needed
58check_quotas=YES	# NO may be desirable in some YP environments
59ntpd=YES		# run ntpd if it exists
60
61krb5_master_kdc=NO	# KerberosV master KDC. Run 'info heimdal' for help.
62krb5_slave_kdc=NO	# KerberosV slave KDC.
63afs=NO			# mount and run afs
64
65# Multicast routing configuration
66# Please look at netstart(8) for a detailed description if you change these
67multicast_host=NO	# Route all multicast packets to a single interface
68multicast_router=NO	# A multicast routing daemon will be run, e.g. mrouted
69
70# miscellaneous other flags
71# only used if the appropriate server is marked YES above
72savecore_flags=			# "-z" to compress
73ypserv_flags=			# E.g. -1 for YP v1, -d for DNS etc
74yppasswdd_flags=NO		# "-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"
79pf_rules=/etc/pf.conf		# Packet filter rules file
80pflogd_flags=			# add more flags, ie. "-s 256"
81afs_mount_point=/afs		# Mountpoint for AFS
82afs_device=/dev/xfs0		# Device used by afsd
83afsd_flags=-z			# Flags passed to afsd
84shlib_dirs=			# extra directories for ldconfig, separated
85				# by space
86
87local_rcconf="/etc/rc.conf.local"
88
89[ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line
90