rc.conf revision 1.99
1#!/bin/sh -
2#
3#	$OpenBSD: rc.conf,v 1.99 2004/07/15 11:29:12 henning 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.
9bgpd_flags=NO		# for normal use: ""
10rarpd_flags=NO		# for normal use: "-a"
11bootparamd_flags=NO	# for normal use: ""
12rbootd_flags=NO		# for normal use: ""
13sshd_flags=""		# for normal use: ""
14named_flags=NO		# for normal use: ""
15rdate_flags=NO		# for normal use: [RFC868-host] or [-n RFC2030-host]
16timed_flags=NO		# for normal use: ""
17ntpd_flags=NO		# for normal use: ""
18isakmpd_flags=NO	# for normal use: ""
19mopd_flags=NO		# for normal use: "-a"
20apmd_flags=NO		# for normal use: ""
21dhcpd_flags=NO		# for normal use: ""
22rtadvd_flags=NO		# for normal use: list of interfaces
23			# be sure to set net.inet6.ip6.forwarding=1
24route6d_flags=NO	# for normal use: ""
25			# be sure to set net.inet6.ip6.forwarding=1
26rtsold_flags=NO		# for normal use: interface
27			# be sure to set net.inet6.ip6.forwarding=0
28			# be sure to set net.inet6.ip6.accept_rtadv=1
29lpd_flags=NO		# for normal use: "" (or "-l" for debugging)
30sensorsd_flags=NO	# for normal use: ""
31hotplugd_flags=NO	# for normal use: ""
32
33# use -u to disable chroot, see httpd(8)
34httpd_flags=NO		# for normal use: "" (or "-DSSL" after reading ssl(8))
35
36# For normal use: "-L sm-mta -bd -q30m", and note there is a cron job
37sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
38spamd_flags=NO		# for normal use: "" and see spamd-setup(8)
39spamd_grey=NO		# use spamd greylisting if YES
40
41# Set to NO if ftpd is running out of inetd
42ftpd_flags=NO		# for non-inetd use: "-D"
43
44# Set to NO if identd is running out of inetd
45identd_flags=NO		# for non-inetd use: "-b -elo"
46
47# On some architectures, you must also disable console getty in /etc/ttys
48xdm_flags=NO		# for normal use: ""
49
50# For enabling console mouse support (i386 and alpha only)
51wsmoused_flags=NO	# for ps/2 or usb mice: "", serial: "-p /dev/cua00"
52
53# set the following to "YES" to turn them on
54rwhod=NO
55nfs_server=NO		# see sysctl.conf for nfs client configuration
56lockd=NO
57amd=NO
58pf=NO			# Packet filter / NAT
59portmap=NO		# Note: inetd(8) rpc services need portmap too
60inetd=YES		# almost always needed
61check_quotas=YES	# NO may be desirable in some YP environments
62
63krb5_master_kdc=NO	# KerberosV master KDC. Run 'info heimdal' for help.
64krb5_slave_kdc=NO	# KerberosV slave KDC.
65afs=NO			# mount and run afs
66
67# Multicast routing configuration
68# Please look at netstart(8) for a detailed description if you change these
69multicast_host=NO	# Route all multicast packets to a single interface
70multicast_router=NO	# A multicast routing daemon will be run, e.g. mrouted
71
72# miscellaneous other flags
73# only used if the appropriate server is marked YES above
74savecore_flags=			# "-z" to compress
75ypserv_flags=			# E.g. -1 for YP v1, -d for DNS etc
76yppasswdd_flags=NO		# "-d /etc/yp" if passwd files are in /etc/yp
77nfsd_flags="-tun 4"		# Crank the 4 for a busy NFS fileserver
78amd_dir=/tmp_mnt		# AMD's mount directory
79amd_master=/etc/amd/master	# AMD 'master' map
80syslogd_flags=			# add more flags, ie. "-u -a /chroot/dev/log"
81pf_rules=/etc/pf.conf		# Packet filter rules file
82pflogd_flags=			# add more flags, ie. "-s 256"
83afsd_flags=			# 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