rc.conf revision 1.71
1#!/bin/sh -
2#
3#	$OpenBSD: rc.conf,v 1.71 2001/11/19 03:03:33 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"
7altqd_flags=NO		# for normal use: ""
8mrouted_flags=NO	# for normal use: "", if activated
9			# be sure to enable multicast_router below.
10rarpd_flags=NO		# for normal use: "-a"
11bootparamd_flags=NO	# for normal use: ""
12rbootd_flags=NO		# for normal use: ""
13sshd_flags=""		# for normal use: ""
14smtpfwdd_flags=NO	# for normal use: ""; be sure to configure smtpd(8)
15			# and sendmail(8) to use MSA only
16named_flags=NO		# for normal use: ""
17rdate_flags=NO		# for normal use: name of RFC868 timeserver
18timed_flags=NO		# for normal use: ""
19ntpdate_flags=NO	# for normal use: NTP server; run before ntpd starts
20photurisd_flags=NO	# for normal use: ""
21isakmpd_flags=NO	# for normal use: ""
22mopd_flags=NO		# for normal use: "-a"
23httpd_flags=NO		# for normal use: "" (or "-DSSL" after reading ssl(8))
24apmd_flags=NO		# for normal use: ""
25dhcpd_flags=NO		# for normal use: "-q"
26rtadvd_flags=NO		# for normal use: list of interfaces
27			# be sure to set net.inet6.ip6.forwarding=1
28route6d_flags=NO	# for normal use: ""
29			# be sure to set net.inet6.ip6.forwarding=1
30rtsold_flags=NO		# for normal use: interface
31			# be sure to set net.inet6.ip6.forwarding=0
32			# be sure to set net.inet6.ip6.accept_rtadv=1
33lpd_flags=NO		# for normal use: "" (or "-l" for debugging)
34
35# For normal use: "-L sm-mta -bd -q30m"
36sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
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 -u nobody -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 architecture 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
54gated=NO
55amd=NO
56pf=NO			# Packet filter / NAT
57portmap=YES		# almost always needed
58inetd=YES		# almost always needed
59check_quotas=YES	# NO may be desirable in some YP environments
60ntpd=YES		# run ntpd if it exists
61
62krb4_server_kdc=NO	# kerberos server. run 'info kth-krb' for assistance.
63krb4_slave_kdc=NO	# kerberos slave server.
64krb5_master_kdc=NO	# KerberosV master KDC. Run 'info heimdal' for help.
65krb5_slave_kdc=NO	# KerberosV slave KDC.
66afs=NO			# mount and run afs
67
68# Multicast routing configuration
69# Please look at /etc/netstart for a detailed description if you change these
70multicast_host=NO	# Route all multicast packets to a single interface
71multicast_router=NO	# A multicast routing daemon will be run, e.g. mrouted
72
73# miscellaneous other flags
74# only used if the appropriate server is marked YES above
75gated_flags=
76ypserv_flags=			# E.g. -1 for YP v1, -d for DNS etc
77yppasswdd_flags=		# "-d /etc/yp" if passwd files are in /etc/yp
78nfsd_flags="-tun 4"		# Crank the 4 for a busy NFS fileserver
79amd_dir=/tmp_mnt		# AMD's mount directory
80amd_master=/etc/amd/master	# AMD 'master' map
81syslogd_flags=			# add more flags, ie. "-u -a /chroot/dev/log"
82named_user=named		# Named should not run as root unless necessary
83named_chroot=/var/named		# Where to chroot named if not empty
84pf_rules=/etc/pf.conf		# Packet filter rules file
85nat_rules=/etc/nat.conf		# NAT rules file
86pflogd_flags=			# add more flags, ie. "-s 256"
87afs_mount_point=/afs		# Mountpoint for AFS
88afs_device=/dev/xfs0		# Device used by afsd
89afsd_flags=-z			# Flags passed to afsd
90shlib_dirs=			# extra directories for ldconfig
91
92local_rcconf="/etc/rc.conf.local"
93
94[ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line
95