]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man5/rc.conf.5
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, and lldb
[FreeBSD/FreeBSD.git] / share / man / man5 / rc.conf.5
1 .\" Copyright (c) 1995
2 .\"     Jordan K. Hubbard
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd December 19, 2018
28 .Dt RC.CONF 5
29 .Os
30 .Sh NAME
31 .Nm rc.conf
32 .Nd system configuration information
33 .Sh DESCRIPTION
34 The file
35 .Nm
36 contains descriptive information about the local host name, configuration
37 details for any potential network interfaces and which services should be
38 started up at system initial boot time.
39 In new installations, the
40 .Nm
41 file is generally initialized by the system installation utility.
42 .Pp
43 The purpose of
44 .Nm
45 is not to run commands or perform system startup actions
46 directly.
47 Instead, it is included by the
48 various generic startup scripts in
49 .Pa /etc
50 which conditionalize their
51 internal actions according to the settings found there.
52 .Pp
53 The
54 .Pa /etc/rc.conf
55 file is included from the file
56 .Pa /etc/defaults/rc.conf ,
57 which specifies the default settings for all the available options.
58 Options need only be specified in
59 .Pa /etc/rc.conf
60 when the system administrator wishes to override these defaults.
61 The file
62 .Pa /etc/rc.conf.local
63 is used to override settings in
64 .Pa /etc/rc.conf
65 for historical reasons.
66 .Pp
67 The sysrc(8) command provides a scripting interface to modify system
68 config files.
69 .Pp
70 In addition to
71 .Pa /etc/rc.conf.local
72 you can also place smaller configuration files for each
73 .Xr rc 8
74 script in the
75 .Pa /etc/rc.conf.d
76 directory or
77 .Ao Ar dir Ac Ns Pa /rc.conf.d
78 directories specified in
79 .Va local_startup ,
80 which will be included by the
81 .Va load_rc_config
82 function.
83 For jail configurations you could use the file
84 .Pa /etc/rc.conf.d/jail
85 to store jail specific configuration options.
86 If
87 .Va local_startup
88 contains
89 .Pa /usr/local/etc/rc.d
90 and
91 .Pa /opt/conf ,
92 .Pa /usr/local/rc.conf.d/jail
93 and
94 .Pa /opt/conf/rc.conf.d/jail
95 will be loaded.
96 If
97 .Ao Ar dir Ac Ns Pa /rc.conf.d/ Ns Ao Ar name Ac
98 is a directory,
99 all of files in the directory will be loaded.
100 Also see the
101 .Va rc_conf_files
102 variable below.
103 .Pp
104 Options are set with
105 .Dq Ar name Ns Li = Ns Ar value
106 assignments that use
107 .Xr sh 1
108 syntax.
109 The following list provides a name and short description for each
110 variable that can be set in the
111 .Nm
112 file:
113 .Bl -tag -width indent-two
114 .It Va rc_debug
115 .Pq Vt bool
116 If set to
117 .Dq Li YES ,
118 enable output of debug messages from rc scripts.
119 This variable can be helpful in diagnosing mistakes when
120 editing or integrating new scripts.
121 Beware that this produces copious output to the terminal and
122 .Xr syslog 3 .
123 .It Va rc_info
124 .Pq Vt bool
125 If set to
126 .Dq Li NO ,
127 disable informational messages from the rc scripts.
128 Informational messages are displayed when
129 a condition that is not serious enough to warrant a warning or
130 an error occurs.
131 .It Va rc_startmsgs
132 .Pq Vt bool
133 If set to
134 .Dq Li YES ,
135 show
136 .Dq Starting foo:
137 when faststart is used (e.g., at boot time).
138 .It Va early_late_divider
139 .Pq Vt str
140 The name of the script that should be used as the
141 delimiter between the
142 .Dq early
143 and
144 .Dq late
145 stages of the boot process.
146 The early stage should contain all the services needed to
147 get the disks (local or remote) mounted so that the late
148 stage can include scripts contained in the directories
149 listed in the
150 .Va local_startup
151 variable (see below).
152 Thus, the two likely candidates for this value are
153 .Pa mountcritlocal
154 for the typical system, and
155 .Pa mountcritremote
156 if the system needs remote file
157 systems mounted to get access to the
158 .Va local_startup
159 directories; for example when
160 .Pa /usr/local
161 is NFS mounted.
162 For
163 .Pa rc.conf
164 within a
165 .Xr jail 8
166 .Pa NETWORKING
167 is likely to be an appropriate value.
168 Extreme care should be taken when changing this value,
169 and before changing it one should ensure that there are
170 adequate provisions to recover from a failed boot
171 (such as physical contact with the machine,
172 or reliable remote console access).
173 .It Va always_force_depends
174 .Pq Vt bool
175 Various
176 .Pa rc.d
177 scripts use the force_depend function to check whether required
178 services are already running, and to start them if necessary.
179 By default during boot time this check is bypassed if the
180 required service is enabled in
181 .Pa /etc/rc.conf[.local] .
182 Setting this option will bypass that check at boot time and
183 always test whether or not the service is actually running.
184 Enabling this option is likely to increase your boot time if
185 services are enabled that utilize the force_depend check.
186 .It Ao Ar name Ac Ns Va _chroot
187 .Pq Vt str
188 .Xr chroot 8
189 to this directory before running the service.
190 .It Ao Ar name Ac Ns Va _user
191 .Pq Vt str
192 Run the service under this user account.
193 .It Ao Ar name Ac Ns Va _group
194 .Pq Vt str
195 Run the chrooted service under this system group.
196 Unlike the _user
197 setting, this setting has no effect if the service is not chrooted.
198 .It Ao Ar name Ac Ns Va _fib
199 .Pq Vt int
200 The
201 .Xr setfib 1
202 value to run the service under.
203 .It Ao Ar name Ac Ns Va _nice
204 .Pq Vt int
205 The
206 .Xr nice 1
207 value to run the service under.
208 .It Va apm_enable
209 .Pq Vt bool
210 If set to
211 .Dq Li YES ,
212 enable support for Automatic Power Management with
213 the
214 .Xr apm 8
215 command.
216 .It Va apmd_enable
217 .Pq Vt bool
218 Run
219 .Xr apmd 8
220 to handle APM event from userland.
221 This also enables support for APM.
222 .It Va apmd_flags
223 .Pq Vt str
224 If
225 .Va apmd_enable
226 is set to
227 .Dq Li YES ,
228 these are the flags to pass to the
229 .Xr apmd 8
230 daemon.
231 .It Va devd_enable
232 .Pq Vt bool
233 Run
234 .Xr devd 8
235 to handle device added, removed or unknown events from the kernel.
236 .It Va ddb_enable
237 .Pq Vt bool
238 Run
239 .Xr ddb 8
240 to install
241 .Xr ddb 4
242 scripts at boot time.
243 .It Va ddb_config
244 .Pq Vt str
245 Configuration file for
246 .Xr ddb 8 .
247 Default
248 .Pa /etc/ddb.conf .
249 .It Va kld_list
250 .Pq Vt str
251 A whitespace-separated list of kernel modules to load right after
252 the local disks are mounted, without any
253 .Pa .ko
254 extension or path.
255 Loading modules at this point in the boot process is
256 much faster than doing it via
257 .Pa /boot/loader.conf
258 for those modules not necessary for mounting local disks.
259 .It Va kldxref_enable
260 .Pq Vt bool
261 Set to
262 .Dq Li NO
263 by default.
264 Set to
265 .Dq Li YES
266 to automatically rebuild
267 .Pa linker.hints
268 files with
269 .Xr kldxref 8
270 at boot time.
271 .It Va kldxref_clobber
272 .Pq Vt bool
273 Set to
274 .Dq Li NO
275 by default.
276 If
277 .Va kldxref_enable
278 is true,
279 setting to
280 .Dq Li YES
281 will overwrite existing
282 .Pa linker.hints
283 files at boot time.
284 Otherwise,
285 only missing
286 .Pa linker.hints
287 files are generated.
288 .It Va kldxref_module_path
289 .Pq Vt str
290 Empty by default.
291 A semi-colon
292 .Pq Ql \&;
293 delimited list of paths containing
294 .Xr kld 4
295 modules.
296 If empty,
297 the contents of the
298 .Va kern.module_path
299 .Xr sysctl 8
300 are used.
301 .It Va powerd_enable
302 .Pq Vt bool
303 If set to
304 .Dq Li YES ,
305 enable the system power control facility with the
306 .Xr powerd 8
307 daemon.
308 .It Va powerd_flags
309 .Pq Vt str
310 If
311 .Va powerd_enable
312 is set to
313 .Dq Li YES ,
314 these are the flags to pass to the
315 .Xr powerd 8
316 daemon.
317 .It Va tmpmfs
318 Controls the creation of a
319 .Pa /tmp
320 memory file system.
321 Always happens if set to
322 .Dq Li YES
323 and never happens if set to
324 .Dq Li NO .
325 If set to anything else, a memory file system is created if
326 .Pa /tmp
327 is not writable.
328 .It Va tmpsize
329 Controls the size of a created
330 .Pa /tmp
331 memory file system.
332 .It Va tmpmfs_flags
333 Extra options passed to the
334 .Xr mdmfs 8
335 utility when the memory file system for
336 .Pa /tmp
337 is created.
338 The default is
339 .Dq Li "-S" ,
340 which inhibits the use of softupdates on
341 .Pa /tmp
342 so that file system space is freed without delay
343 after file truncation or deletion.
344 See
345 .Xr mdmfs 8
346 for other options you can use in
347 .Va tmpmfs_flags .
348 .It Va varmfs
349 Controls the creation of a
350 .Pa /var
351 memory file system.
352 Always happens if set to
353 .Dq Li YES
354 and never happens if set to
355 .Dq Li NO .
356 If set to anything else, a memory file system is created if
357 .Pa /var
358 is not writable.
359 .It Va varsize
360 Controls the size of a created
361 .Pa /var
362 memory file system.
363 .It Va varmfs_flags
364 Extra options passed to the
365 .Xr mdmfs 8
366 utility when the memory file system for
367 .Pa /var
368 is created.
369 The default is
370 .Dq Li "-S" ,
371 which inhibits the use of softupdates on
372 .Pa /var
373 so that file system space is freed without delay
374 after file truncation or deletion.
375 See
376 .Xr mdmfs 8
377 for other options you can use in
378 .Va varmfs_flags .
379 .It Va populate_var
380 Controls the automatic population of the
381 .Pa /var
382 file system.
383 Always happens if set to
384 .Dq Li YES
385 and never happens if set to
386 .Dq Li NO .
387 If set to anything else, a memory file system is created if
388 .Pa /var
389 is not writable.
390 Note that this process requires access to certain commands in
391 .Pa /usr
392 before
393 .Pa /usr
394 is mounted on normal systems.
395 .It Va cleanvar_enable
396 .Pq Vt bool
397 Clean the
398 .Pa /var
399 directory.
400 .It Va local_startup
401 .Pq Vt str
402 List of directories to search for startup script files.
403 .It Va script_name_sep
404 .Pq Vt str
405 The field separator to use for breaking down the list of startup script files
406 into individual filenames.
407 The default is a space.
408 It is not necessary to change this unless there are startup scripts with names
409 containing spaces.
410 .It Va hostapd_enable
411 .Pq Vt bool
412 Set to
413 .Dq Li YES
414 to start
415 .Xr hostapd 8
416 at system boot time.
417 .It Va hostname
418 .Pq Vt str
419 The fully qualified domain name (FQDN) of this host on the network.
420 This should almost certainly be set to something meaningful, even if
421 there is no network connection.
422 If
423 .Xr dhclient 8
424 is used to set the hostname via DHCP,
425 this variable should be set to an empty string.
426 Within a
427 .Xr jail 8
428 the hostname is generally already set and this variable may absent.
429 If this value remains unset when the system is done booting
430 your console login will display the default hostname of
431 .Dq Amnesiac .
432 .It Va nisdomainname
433 .Pq Vt str
434 The NIS domain name of this host, or
435 .Dq Li NO
436 if NIS is not used.
437 .It Va dhclient_program
438 .Pq Vt str
439 Path to the DHCP client program
440 .Pa ( /sbin/dhclient ,
441 the
442 .Ox
443 DHCP client,
444 is the default).
445 .It Va dhclient_flags
446 .Pq Vt str
447 Additional flags to pass to the DHCP client program.
448 For the
449 .Ox
450 DHCP client, see the
451 .Xr dhclient 8
452 manpage for a description of the command line options available.
453 .It Va dhclient_flags_ Ns Aq Ar iface
454 Additional flags to pass to the DHCP client program running on
455 .Ar iface
456 only.
457 When specified, this variable overrides
458 .Va dhclient_flags .
459 .It Va background_dhclient
460 .Pq Vt bool
461 Set to
462 .Dq Li YES
463 to start the DHCP client in background.
464 This can cause trouble with applications depending on
465 a working network, but it will provide a faster startup
466 in many cases.
467 .It Va background_dhclient_ Ns Aq Ar iface
468 When specified, this variable overrides the
469 .Va background_dhclient
470 variable for interface
471 .Ar iface
472 only.
473 .It Va synchronous_dhclient
474 .Pq Vt bool
475 Set to
476 .Dq Li YES
477 to start
478 .Xr dhclient 8
479 synchronously at startup.
480 This behavior can be overridden on a per-interface basis by replacing
481 the
482 .Dq Li DHCP
483 keyword in the
484 .Va ifconfig_ Ns Aq Ar interface
485 variable with
486 .Dq Li SYNCDHCP
487 or
488 .Dq Li NOSYNCDHCP .
489 .It Va defaultroute_delay
490 .Pq Vt int
491 When set to a positive value, wait up to this long after configuring
492 DHCP interfaces at startup to give the interfaces time to receive a lease.
493 .It Va firewall_enable
494 .Pq Vt bool
495 Set to
496 .Dq Li YES
497 to load firewall rules at startup.
498 If the kernel was not built with
499 .Cd "options IPFIREWALL" ,
500 the
501 .Pa ipfw.ko
502 kernel module will be loaded.
503 See also
504 .Va ipfilter_enable .
505 .It Va firewall_script
506 .Pq Vt str
507 This variable specifies the full path to the firewall script to run.
508 The default is
509 .Pa /etc/rc.firewall .
510 .It Va firewall_type
511 .Pq Vt str
512 Names the firewall type from the selection in
513 .Pa /etc/rc.firewall ,
514 or the file which contains the local firewall ruleset.
515 Valid selections from
516 .Pa /etc/rc.firewall
517 are:
518 .Pp
519 .Bl -tag -width ".Li simple" -compact
520 .It Li open
521 unrestricted IP access
522 .It Li closed
523 all IP services disabled, except via
524 .Dq Li lo0
525 .It Li client
526 basic protection for a workstation
527 .It Li simple
528 basic protection for a LAN.
529 .El
530 .Pp
531 If a filename is specified, the full path
532 must be given.
533 .It Va firewall_quiet
534 .Pq Vt bool
535 Set to
536 .Dq Li YES
537 to disable the display of firewall rules on the console during boot.
538 .It Va firewall_logging
539 .Pq Vt bool
540 Set to
541 .Dq Li YES
542 to enable firewall event logging.
543 This is equivalent to the
544 .Dv IPFIREWALL_VERBOSE
545 kernel option.
546 .It Va firewall_logif
547 .Pq Vt bool
548 Set to
549 .Dq Li YES
550 to create pseudo interface
551 .Li ipfw0
552 for logging.
553 For more details, see
554 .Xr ipfw 8
555 manual page.
556 .It Va firewall_flags
557 .Pq Vt str
558 Flags passed to
559 .Xr ipfw 8
560 if
561 .Va firewall_type
562 specifies a filename.
563 .It Va firewall_coscripts
564 .Pq Vt str
565 List of executables and/or rc scripts to run after firewall starts/stops.
566 Default is empty.
567 .\" ----- firewall_nat_enable setting --------------------------------
568 .It Va firewall_nat_enable
569 .Pq Vt bool
570 The
571 .Xr ipfw 8
572 equivalent of
573 .Va natd_enable .
574 Setting this to
575 .Dq Li YES
576 enables kernel NAT.
577 .Va firewall_enable
578 must also be set to
579 .Dq Li YES .
580 .It Va firewall_nat_interface
581 .Pq Vt str
582 The
583 .Xr ipfw 8
584 equivalent of
585 .Va natd_interface .
586 This is the name of the public interface or IP address on which
587 kernel NAT should run.
588 .It Va firewall_nat_flags
589 .Pq Vt str
590 Additional configuration parameters for kernel NAT should be placed here.
591 .It Va dummynet_enable
592 .Pq Vt bool
593 Setting this to
594 .Dq Li YES
595 will automatically load the
596 .Xr dummynet 4
597 module if
598 .Va firewall_enable
599 is also set to
600 .Dq Li YES .
601 .\" -------------------------------------------------------------------
602 .It Va ipfw_netflow_enable
603 .Pq Vt bool
604 Setting this to
605 .Dq Li YES
606 will enable netflow logging via
607 .Xr ng_netflow 4
608 .Pp
609 By default a ipfw rule is inserted and all packets are duplicated with
610 the ngtee command and netflow packets are sent to 127.0.0.1 on the netflow
611 port using protocol version 5.
612 .It Va ipfw_netflow_hook
613 .Pq Vt int
614 netflow hook name, must be numerical
615 (default
616 .Pa 9995 ) .
617 .It Va ipfw_netflow_rule
618 .Pq Vt int
619 ipfw rule number
620 (default
621 .Pa 1000 ) .
622 .It Va ipfw_netflow_ip
623 .Pq Vt str
624 Destination server ip for receiving netflow data
625 (default
626 .Pa 127.0.0.1 ) .
627 .It Va ipfw_netflow_port
628 .Pq Vt int
629 Destination server port for receiving netflow data
630 (default
631 .Pa 9995 ) .
632 .It Va ipfw_netflow_version
633 .Pq Vt int
634 Do not set for using version 5 of the netflow protocol, set it to 9 for using version 9.
635 .It Va ipfw_netflow_fib
636 .Pq Vt int
637 Only match packet in FIB
638 .Pa ipfw_netflow_fib
639 (default is undefined meaning all FIBs).
640 .It Va natd_program
641 .Pq Vt str
642 Path to
643 .Xr natd 8 .
644 .It Va natd_enable
645 .Pq Vt bool
646 Set to
647 .Dq Li YES
648 to enable
649 .Xr natd 8 .
650 .Va firewall_enable
651 must also be set to
652 .Dq Li YES ,
653 and
654 .Xr divert 4
655 sockets must be enabled in the kernel.
656 If the kernel was not built with
657 .Cd "options IPDIVERT" ,
658 the
659 .Pa ipdivert.ko
660 kernel module will be loaded.
661 .It Va natd_interface
662 .Pq Vt str
663 This is the name of the public interface on which
664 .Xr natd 8
665 should run.
666 The interface may be given as an interface name or as an IP address.
667 .It Va natd_flags
668 .Pq Vt str
669 Additional
670 .Xr natd 8
671 flags should be placed here.
672 The
673 .Fl n
674 or
675 .Fl a
676 flag is automatically added with the above
677 .Va natd_interface
678 as an argument.
679 .\" ----- ipfilter_enable setting --------------------------------
680 .It Va ipfilter_enable
681 .Pq Vt bool
682 Set to
683 .Dq Li NO
684 by default.
685 Setting this to
686 .Dq Li YES
687 enables
688 .Xr ipf 8
689 packet filtering.
690 .Pp
691 Typical usage will require putting
692 .Bd -literal
693 ipfilter_enable="YES"
694 ipnat_enable="YES"
695 ipmon_enable="YES"
696 ipfs_enable="YES"
697 .Ed
698 .Pp
699 into
700 .Pa /etc/rc.conf
701 and editing
702 .Pa /etc/ipf.rules
703 and
704 .Pa /etc/ipnat.rules
705 appropriately.
706 .Pp
707 Note that
708 .Va ipfilter_enable
709 and
710 .Va ipnat_enable
711 can be enabled independently.
712 .Va ipmon_enable
713 and
714 .Va ipfs_enable
715 both require at least one of
716 .Va ipfilter_enable
717 and
718 .Va ipnat_enable
719 to be enabled.
720 .Pp
721 Having
722 .Bd -literal
723 options IPFILTER
724 options IPFILTER_LOG
725 options IPFILTER_DEFAULT_BLOCK
726 .Ed
727 .Pp
728 in the kernel configuration file is a good idea, too.
729 .\" ----- ipfilter_program setting ------------------------------
730 .It Va ipfilter_program
731 .Pq Vt str
732 Path to
733 .Xr ipf 8
734 (default
735 .Pa /sbin/ipf ) .
736 .\" ----- ipfilter_rules setting --------------------------------
737 .It Va ipfilter_rules
738 .Pq Vt str
739 Set to
740 .Pa /etc/ipf.rules
741 by default.
742 This variable contains the name of the filter rule definition file.
743 The file is expected to be readable for the
744 .Xr ipf 8
745 command to execute.
746 .\" ----- ipv6_ipfilter_rules setting ---------------------------
747 .It Va ipv6_ipfilter_rules
748 .Pq Vt str
749 Set to
750 .Pa /etc/ipf6.rules
751 by default.
752 This variable contains the IPv6 filter rule definition file.
753 The file is expected to be readable for the
754 .Xr ipf 8
755 command to execute.
756 .\" ----- ipfilter_flags setting --------------------------------
757 .It Va ipfilter_flags
758 .Pq Vt str
759 Empty by default.
760 This variable contains flags passed to the
761 .Xr ipf 8
762 program.
763 .\" ----- ipnat_enable setting ----------------------------------
764 .It Va ipnat_enable
765 .Pq Vt bool
766 Set to
767 .Dq Li NO
768 by default.
769 Set it to
770 .Dq Li YES
771 to enable
772 .Xr ipnat 8
773 network address translation.
774 See
775 .Va ipfilter_enable
776 for a detailed discussion.
777 .\" ----- ipnat_program setting ---------------------------------
778 .It Va ipnat_program
779 .Pq Vt str
780 Path to
781 .Xr ipnat 8
782 (default
783 .Pa /sbin/ipnat ) .
784 .\" ----- ipnat_rules setting -----------------------------------
785 .It Va ipnat_rules
786 .Pq Vt str
787 Set to
788 .Pa /etc/ipnat.rules
789 by default.
790 This variable contains the name of the file
791 holding the network address translation definition.
792 This file is expected to be readable for the
793 .Xr ipnat 8
794 command to execute.
795 .\" ----- ipnat_flags setting -----------------------------------
796 .It Va ipnat_flags
797 .Pq Vt str
798 Empty by default.
799 This variable contains flags passed to the
800 .Xr ipnat 8
801 program.
802 .\" ----- ipmon_enable setting ----------------------------------
803 .It Va ipmon_enable
804 .Pq Vt bool
805 Set to
806 .Dq Li NO
807 by default.
808 Set it to
809 .Dq Li YES
810 to enable
811 .Xr ipmon 8
812 monitoring (logging
813 .Xr ipf 8
814 and
815 .Xr ipnat 8
816 events).
817 Setting this variable needs setting
818 .Va ipfilter_enable
819 or
820 .Va ipnat_enable
821 too.
822 See
823 .Va ipfilter_enable
824 for a detailed discussion.
825 .\" ----- ipmon_program setting ---------------------------------
826 .It Va ipmon_program
827 .Pq Vt str
828 Path to
829 .Xr ipmon 8
830 (default
831 .Pa /sbin/ipmon ) .
832 .\" ----- ipmon_flags setting -----------------------------------
833 .It Va ipmon_flags
834 .Pq Vt str
835 Set to
836 .Dq Li -Ds
837 by default.
838 This variable contains flags passed to the
839 .Xr ipmon 8
840 program.
841 Another typical example would be
842 .Dq Fl D Pa /var/log/ipflog
843 to have
844 .Xr ipmon 8
845 log directly to a file bypassing
846 .Xr syslogd 8 .
847 Make sure to adjust
848 .Pa /etc/newsyslog.conf
849 in such case like this:
850 .Bd -literal
851 /var/log/ipflog  640  10  100  *  Z  /var/run/ipmon.pid
852 .Ed
853 .\" ----- ipfs_enable setting -----------------------------------
854 .It Va ipfs_enable
855 .Pq Vt bool
856 Set to
857 .Dq Li NO
858 by default.
859 Set it to
860 .Dq Li YES
861 to enable
862 .Xr ipfs 8
863 saving the filter and NAT state tables during shutdown
864 and reloading them during startup again.
865 Setting this variable needs setting
866 .Va ipfilter_enable
867 or
868 .Va ipnat_enable
869 to
870 .Dq Li YES
871 too.
872 See
873 .Va ipfilter_enable
874 for a detailed discussion.
875 Note that if
876 .Va kern_securelevel
877 is set to 3,
878 .Va ipfs_enable
879 cannot be used
880 because the raised securelevel will prevent
881 .Xr ipfs 8
882 from saving the state tables at shutdown time.
883 .\" ----- ipfs_program setting ----------------------------------
884 .It Va ipfs_program
885 .Pq Vt str
886 Path to
887 .Xr ipfs 8
888 (default
889 .Pa /sbin/ipfs ) .
890 .\" ----- ipfs_flags setting ------------------------------------
891 .It Va ipfs_flags
892 .Pq Vt str
893 Empty by default.
894 This variable contains flags passed to the
895 .Xr ipfs 8
896 program.
897 .\" ----- end of added ipf hook ---------------------------------
898 .It Va pf_enable
899 .Pq Vt bool
900 Set to
901 .Dq Li NO
902 by default.
903 Setting this to
904 .Dq Li YES
905 enables
906 .Xr pf 4
907 packet filtering.
908 .Pp
909 Typical usage will require putting
910 .Pp
911 .Dl pf_enable="YES"
912 .Pp
913 into
914 .Pa /etc/rc.conf
915 and editing
916 .Pa /etc/pf.conf
917 appropriately.
918 Adding
919 .Pp
920 .Dl "device pf"
921 .Pp
922 builds support for
923 .Xr pf 4
924 into the kernel, otherwise the
925 kernel module will be loaded.
926 .It Va pf_rules
927 .Pq Vt str
928 Path to
929 .Xr pf 4
930 ruleset configuration file
931 (default
932 .Pa /etc/pf.conf ) .
933 .It Va pf_program
934 .Pq Vt str
935 Path to
936 .Xr pfctl 8
937 (default
938 .Pa /sbin/pfctl ) .
939 .It Va pf_flags
940 .Pq Vt str
941 If
942 .Va pf_enable
943 is set to
944 .Dq Li YES ,
945 these flags are passed to the
946 .Xr pfctl 8
947 program when loading the ruleset.
948 .It Va pflog_enable
949 .Pq Vt bool
950 Set to
951 .Dq Li NO
952 by default.
953 Setting this to
954 .Dq Li YES
955 enables
956 .Xr pflogd 8
957 which logs packets from the
958 .Xr pf 4
959 packet filter.
960 .It Va pflog_logfile
961 .Pq Vt str
962 If
963 .Va pflog_enable
964 is set to
965 .Dq Li YES
966 this controls where
967 .Xr pflogd 8
968 stores the logfile
969 (default
970 .Pa /var/log/pflog ) .
971 Check
972 .Pa /etc/newsyslog.conf
973 to adjust logfile rotation for this.
974 .It Va pflog_program
975 .Pq Vt str
976 Path to
977 .Xr pflogd 8
978 (default
979 .Pa /sbin/pflogd ) .
980 .It Va pflog_flags
981 .Pq Vt str
982 Empty by default.
983 This variable contains additional flags passed to the
984 .Xr pflogd 8
985 program.
986 .It Va pflog_instances
987 .Pq Vt str
988 If logging to more than one
989 .Xr pflog 4
990 interface is desired,
991 .Va pflog_instances
992 is set to the list of
993 .Xr pflogd 8
994 instances that should be started at system boot time.
995 If
996 .Va pflog_instances
997 is set, for each whitespace-separated
998 .Ar element
999 in the list,
1000 .Ao Ar element Ac Ns Va _dev
1001 and
1002 .Ao Ar element Ac Ns Va _logfile
1003 elements are assumed to exist.
1004 .Ao Ar element Ac Ns Va _dev
1005 must contain the
1006 .Xr pflog 4
1007 interface to be watched by the named
1008 .Xr pflogd 8
1009 instance.
1010 .Ao Ar element Ac Ns Va _logfile
1011 must contain the name of the logfile that will be used by the
1012 .Xr pflogd 8
1013 instance.
1014 .It Va ftpproxy_enable
1015 .Pq Vt bool
1016 Set to
1017 .Dq Li NO
1018 by default.
1019 Setting this to
1020 .Dq Li YES
1021 enables
1022 .Xr ftp-proxy 8
1023 which supports the
1024 .Xr pf 4
1025 packet filter in translating ftp connections.
1026 .It Va ftpproxy_flags
1027 .Pq Vt str
1028 Empty by default.
1029 This variable contains additional flags passed to the
1030 .Xr ftp-proxy 8
1031 program.
1032 .It Va ftpproxy_instances
1033 .Pq Vt str
1034 Empty by default.
1035 If multiple instances of
1036 .Xr ftp-proxy 8
1037 are desired at boot time,
1038 .Va ftpproxy_instances
1039 should contain a whitespace-separated list of instance names.
1040 For each
1041 .Ar element
1042 in the list, a variable named
1043 .Ao Ar element Ac Ns Va _flags
1044 should be defined, containing the command-line flags to be passed to the
1045 .Xr ftp-proxy 8
1046 instance.
1047 .It Va pfsync_enable
1048 .Pq Vt bool
1049 Set to
1050 .Dq Li NO
1051 by default.
1052 Setting this to
1053 .Dq Li YES
1054 enables exposing
1055 .Xr pf 4
1056 state changes to other hosts over the network by means of
1057 .Xr pfsync 4 .
1058 The
1059 .Va pfsync_syncdev
1060 variable
1061 must also be set then.
1062 .It Va pfsync_syncdev
1063 .Pq Vt str
1064 Empty by default.
1065 This variable specifies the name of the network interface
1066 .Xr pfsync 4
1067 should operate through.
1068 It must be set accordingly if
1069 .Va pfsync_enable
1070 is set to
1071 .Dq Li YES .
1072 .It Va pfsync_syncpeer
1073 .Pq Vt str
1074 Empty by default.
1075 This variable is optional.
1076 By default, state change messages are sent out on the synchronisation
1077 interface using IP multicast packets.
1078 The protocol is IP protocol 240, PFSYNC, and the multicast group used is
1079 224.0.0.240.
1080 When a peer address is specified using the
1081 .Va pfsync_syncpeer
1082 option, the peer address is used as a destination for the pfsync
1083 traffic, and the traffic can then be protected using
1084 .Xr ipsec 4 .
1085 See the
1086 .Xr pfsync 4
1087 manpage for more details about using
1088 .Xr ipsec 4
1089 with
1090 .Xr pfsync 4
1091 interfaces.
1092 .It Va pfsync_ifconfig
1093 .Pq Vt str
1094 Empty by default.
1095 This variable can contain additional options to be passed to the
1096 .Xr ifconfig 8
1097 command used to set up
1098 .Xr pfsync 4 .
1099 .It Va tcp_extensions
1100 .Pq Vt bool
1101 Set to
1102 .Dq Li YES
1103 by default.
1104 Setting this to
1105 .Dq Li NO
1106 disables certain TCP options as described by
1107 .Rs
1108 .%T "RFC 1323"
1109 .Re
1110 Setting this to
1111 .Dq Li NO
1112 might help remedy such problems with connections as randomly hanging
1113 or other weird behavior.
1114 Some network devices are known
1115 to be broken with respect to these options.
1116 .It Va log_in_vain
1117 .Pq Vt int
1118 Set to 0 by default.
1119 The
1120 .Xr sysctl 8
1121 variables,
1122 .Va net.inet.tcp.log_in_vain
1123 and
1124 .Va net.inet.udp.log_in_vain ,
1125 as described in
1126 .Xr tcp 4
1127 and
1128 .Xr udp 4 ,
1129 are set to the given value.
1130 .It Va tcp_keepalive
1131 .Pq Vt bool
1132 Set to
1133 .Dq Li YES
1134 by default.
1135 Setting to
1136 .Dq Li NO
1137 will disable probing idle TCP connections to verify that the
1138 peer is still up and reachable.
1139 .It Va tcp_drop_synfin
1140 .Pq Vt bool
1141 Set to
1142 .Dq Li NO
1143 by default.
1144 Setting to
1145 .Dq Li YES
1146 will cause the kernel to ignore TCP frames that have both
1147 the SYN and FIN flags set.
1148 This prevents OS fingerprinting, but may
1149 break some legitimate applications.
1150 .It Va icmp_drop_redirect
1151 .Pq Vt bool
1152 Set to
1153 .Dq Li NO
1154 by default.
1155 Setting to
1156 .Dq Li YES
1157 will cause the kernel to ignore ICMP REDIRECT packets.
1158 Refer to
1159 .Xr icmp 4
1160 for more information.
1161 .It Va icmp_log_redirect
1162 .Pq Vt bool
1163 Set to
1164 .Dq Li NO
1165 by default.
1166 Setting to
1167 .Dq Li YES
1168 will cause the kernel to log ICMP REDIRECT packets.
1169 Note that
1170 the log messages are not rate-limited, so this option should only be used
1171 for troubleshooting networks.
1172 Refer to
1173 .Xr icmp 4
1174 for more information.
1175 .It Va icmp_bmcastecho
1176 .Pq Vt bool
1177 Set to
1178 .Dq Li YES
1179 to respond to broadcast or multicast ICMP ping packets.
1180 Refer to
1181 .Xr icmp 4
1182 for more information.
1183 .It Va ip_portrange_first
1184 .Pq Vt int
1185 If not set to
1186 .Dq Li NO ,
1187 this is the first port in the default portrange.
1188 Refer to
1189 .Xr ip 4
1190 for more information.
1191 .It Va ip_portrange_last
1192 .Pq Vt int
1193 If not set to
1194 .Dq Li NO ,
1195 this is the last port in the default portrange.
1196 Refer to
1197 .Xr ip 4
1198 for more information.
1199 .It Va network_interfaces
1200 .Pq Vt str
1201 Set to the list of network interfaces to configure on this host or
1202 .Dq Li AUTO
1203 (the default) for all current interfaces.
1204 Setting the
1205 .Va network_interfaces
1206 variable to anything other than the default is deprecated.
1207 Interfaces that the administrator wishes to store configuration for,
1208 but not start at boot should be configured with the
1209 .Dq Li NOAUTO
1210 keyword in their
1211 .Va ifconfig_ Ns Aq Ar interface
1212 variables as described below.
1213 .Pp
1214 An
1215 .Va ifconfig_ Ns Aq Ar interface
1216 variable is also assumed to exist for each value of
1217 .Ar interface .
1218 When an interface name contains any of the characters
1219 .Dq Li .-/+
1220 they are translated to
1221 .Dq Li _
1222 before lookup.
1223 The variable can contain arguments to
1224 .Xr ifconfig 8 ,
1225 as well as special case-insensitive keywords described below.
1226 Such keywords are removed before passing the value to
1227 .Xr ifconfig 8
1228 while the order of the other arguments is preserved.
1229 .Pp
1230 It is possible to add IP alias entries using
1231 .Xr ifconfig 8
1232 syntax with the address family keyword such as
1233 .Li inet .
1234 Assuming that the interface in question was
1235 .Li ed0 ,
1236 it might look something like this:
1237 .Bd -literal
1238 ifconfig_ed0_alias0="inet 127.0.0.253 netmask 0xffffffff"
1239 ifconfig_ed0_alias1="inet 127.0.0.254 netmask 0xffffffff"
1240 .Ed
1241 .Pp
1242 It also possible to configure multiple IP addresses in Classless
1243 Inter-Domain Routing
1244 .Pq CIDR
1245 address notation,
1246 whose each address component can be a range like
1247 .Li inet 192.0.2.5-23/24
1248 or
1249 .Li inet6 2001:db8:1-f::1/64 .
1250 This notation allows address and prefix length part only,
1251 not the other address modifiers.
1252 Note that the maximum number of the generated addresses from a range
1253 specification is limited to an integer value specified in
1254 .Va netif_ipexpand_max
1255 in
1256 .Nm
1257 because a small typo can unexpectedly generate a large number of addresses.
1258 The default value is
1259 .Li 2048 .
1260 It can be increased by adding the following line into
1261 .Nm :
1262 .Bd -literal
1263 netif_ipexpand_max="4096"
1264 .Ed
1265 .Pp
1266 In the case of
1267 .Li 192.0.2.5-23/24 ,
1268 the address 192.0.2.5 will be configured with the
1269 netmask /24 and the addresses 192.0.2.6 to 192.0.2.23 with
1270 the non-conflicting netmask /32 as explained in the
1271 .Xr ifconfig 8
1272 alias section.
1273 Note that this special netmask handling is only for
1274 .Li inet ,
1275 not for the other address families such as
1276 .Li inet6 .
1277 .Pp
1278 With the interface in question being
1279 .Li ed0 ,
1280 an example could look like:
1281 .Bd -literal
1282 ifconfig_ed0_alias2="inet 192.0.2.129/27"
1283 ifconfig_ed0_alias3="inet 192.0.2.1-5/28"
1284 .Ed
1285 .Pp
1286 and so on.
1287 .Pp
1288 Note that
1289 .Va ipv4_addrs_ Ns Aq Ar interface
1290 variable was supported for IPv4 CIDR address notation.
1291 It is now deprecated because the functionality was integrated into
1292 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1293 though
1294 .Va ipv4_addrs_ Ns Aq Ar interface
1295 is still supported for backward compatibility.
1296 .Pp
1297 For each
1298 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1299 entry with an address family keyword,
1300 its contents are passed to
1301 .Xr ifconfig 8 .
1302 Execution stops at the first unsuccessful access, so if
1303 something like this is present:
1304 .Bd -literal
1305 ifconfig_ed0_alias0="inet 127.0.0.251 netmask 0xffffffff"
1306 ifconfig_ed0_alias1="inet 127.0.0.252 netmask 0xffffffff"
1307 ifconfig_ed0_alias2="inet 127.0.0.253 netmask 0xffffffff"
1308 ifconfig_ed0_alias4="inet 127.0.0.254 netmask 0xffffffff"
1309 .Ed
1310 .Pp
1311 Then note that alias4 would
1312 .Em not
1313 be added since the search would
1314 stop with the missing
1315 .Dq Li alias3
1316 entry.
1317 Because of this difficult to manage behavior,
1318 there is
1319 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _aliases
1320 variable, which has the same functionality as
1321 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1322 and can have all of entries in a variable like the following:
1323 .Bd -literal
1324 ifconfig_ed0_aliases="\\
1325         inet 127.0.0.251 netmask 0xffffffff \\
1326         inet 127.0.0.252 netmask 0xffffffff \\
1327         inet 127.0.0.253 netmask 0xffffffff \\
1328         inet 127.0.0.254 netmask 0xffffffff"
1329 .Ed
1330 .Pp
1331 It also supports CIDR notation.
1332 .Pp
1333 If the
1334 .Pa /etc/start_if. Ns Aq Ar interface
1335 file is present, it is read and executed by the
1336 .Xr sh 1
1337 interpreter
1338 before configuring the interface as specified in the
1339 .Va ifconfig_ Ns Aq Ar interface
1340 and
1341 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1342 variables.
1343 .Pp
1344 If a
1345 .Va vlans_ Ns Aq Ar interface
1346 variable is set,
1347 a
1348 .Xr vlan 4
1349 interface will be created for each item in the list with the
1350 .Ar vlandev
1351 argument set to
1352 .Ar interface .
1353 If a vlan interface's name is a number,
1354 then that number is used as the vlan tag and the new vlan interface is
1355 named
1356 .Ar interface . Ns Ar tag .
1357 Otherwise,
1358 the vlan tag must be specified via a
1359 .Va vlan
1360 parameter in the
1361 .Va create_args_ Ns Aq Ar interface
1362 variable.
1363 .Pp
1364 To create a vlan device named
1365 .Li em0.101
1366 on
1367 .Li em0
1368 with the vlan tag 101 and the optional the IPv4 address 192.0.2.1/24:
1369 .Bd -literal
1370 vlans_em0="101"
1371 ifconfig_em0_101="inet 192.0.2.1/24"
1372 .Ed
1373 .Pp
1374 To create a vlan device named
1375 .Li myvlan
1376 on
1377 .Li em0
1378 with the vlan tag 102:
1379 .Bd -literal
1380 vlans_em0="myvlan"
1381 create_args_myvlan="vlan 102"
1382 .Ed
1383 .Pp
1384 If a
1385 .Va wlans_ Ns Aq Ar interface
1386 variable is set,
1387 an
1388 .Xr wlan 4
1389 interface will be created for each item in the list with the
1390 .Ar wlandev
1391 argument set to
1392 .Ar interface .
1393 Further wlan cloning arguments may be passed to the
1394 .Xr ifconfig 8
1395 .Cm create
1396 command by setting the
1397 .Va create_args_ Ns Aq Ar interface
1398 variable.
1399 One or more
1400 .Xr wlan 4
1401 devices must be created for each wireless devices as of
1402 .Fx 8.0 .
1403 Debugging flags for
1404 .Xr wlan 4
1405 devices as set by
1406 .Xr wlandebug 8
1407 may be specified with an
1408 .Va wlandebug_ Ns Aq Ar interface
1409 variable.
1410 The contents of this variable will be passed directly to
1411 .Xr wlandebug 8 .
1412 .Pp
1413 If the
1414 .Va ifconfig_ Ns Aq Ar interface
1415 contains the keyword
1416 .Dq Li NOAUTO
1417 then the interface will not be configured
1418 at boot or by
1419 .Pa /etc/pccard_ether
1420 when
1421 .Va network_interfaces
1422 is set to
1423 .Dq Li AUTO .
1424 .Pp
1425 It is possible to bring up an interface with DHCP by adding
1426 .Dq Li DHCP
1427 to the
1428 .Va ifconfig_ Ns Aq Ar interface
1429 variable.
1430 For instance, to initialize the
1431 .Li ed0
1432 device via DHCP,
1433 it is possible to use something like:
1434 .Bd -literal
1435 ifconfig_ed0="DHCP"
1436 .Ed
1437 .Pp
1438 If you want to configure your wireless interface with
1439 .Xr wpa_supplicant 8
1440 for use with WPA, EAP/LEAP or WEP, you need to add
1441 .Dq Li WPA
1442 to the
1443 .Va ifconfig_ Ns Aq Ar interface
1444 variable.
1445 .Pp
1446 On the other hand, if you want to configure your wireless interface with
1447 .Xr hostapd 8 ,
1448 you need to add
1449 .Dq Li HOSTAP
1450 to the
1451 .Va ifconfig_ Ns Aq Ar interface
1452 variable.
1453 .Xr hostapd 8
1454 will use the settings from
1455 .Pa /etc/hostapd- Ns Ao Ar interface Ac Ns .conf
1456 .Pp
1457 Finally, you can add
1458 .Xr ifconfig 8
1459 options in this variable, in addition to the
1460 .Pa /etc/start_if. Ns Aq Ar interface
1461 file.
1462 For instance, to configure an
1463 .Xr ath 4
1464 wireless device in station mode with an address obtained
1465 via DHCP, using WPA authentication and 802.11b mode, it is
1466 possible to use something like:
1467 .Bd -literal
1468 wlans_ath0="wlan0"
1469 ifconfig_wlan0="DHCP WPA mode 11b"
1470 .Ed
1471 .Pp
1472 In addition to the
1473 .Va ifconfig_ Ns Aq Ar interface
1474 form, a fallback variable
1475 .Va ifconfig_DEFAULT
1476 may be configured.
1477 It will be used for all interfaces with no
1478 .Va ifconfig_ Ns Aq Ar interface
1479 variable.
1480 This is intended to replace the no longer supported
1481 .Va pccard_ifconfig
1482 variable.
1483 .Pp
1484 It is also possible to rename an interface by doing:
1485 .Bd -literal
1486 ifconfig_ed0_name="net0"
1487 ifconfig_net0="inet 192.0.2.1 netmask 0xffffff00"
1488 .Ed
1489 .It Va ipv6_enable
1490 .Pq Vt bool
1491 This variable is deprecated.
1492 Use
1493 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1494 and
1495 .Va ipv6_activate_all_interfaces
1496 if necessary.
1497 .Pp
1498 If the variable is
1499 .Dq Li YES ,
1500 .Dq Li inet6 accept_rtadv
1501 is added to all of
1502 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1503 and the
1504 .Va ipv6_activate_all_interfaces
1505 is defined as
1506 .Dq Li YES .
1507 .It Va ipv6_prefer
1508 .Pq Vt bool
1509 This variable is deprecated.
1510 Use
1511 .Va ip6addrctl_policy
1512 instead.
1513 .Pp
1514 If the variable is
1515 .Dq Li YES ,
1516 the default address selection policy table set by
1517 .Xr ip6addrctl 8
1518 will be IPv6-preferred.
1519 .Pp
1520 If the variable is
1521 .Dq Li NO ,
1522 the default address selection policy table set by
1523 .Xr ip6addrctl 8
1524 will be IPv4-preferred.
1525 .It Va ipv6_activate_all_interfaces
1526 .Pq Vt bool
1527 This controls initial configuration on IPv6-capable
1528 interfaces with no corresponding
1529 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1530 variable.
1531 Note that it is not always necessary to set this variable to
1532 .Dq YES
1533 to use IPv6 functionality on
1534 .Fx .
1535 In most cases, just configuring
1536 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1537 variables works.
1538 .Pp
1539 If the variable is
1540 .Dq Li NO ,
1541 all interfaces which do not have a corresponding
1542 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1543 variable will be marked as
1544 .Dq Li IFDISABLED
1545 at creation.
1546 This means that all of IPv6 functionality on that interface
1547 is completely disabled to enforce a security policy.
1548 If the variable is set to
1549 .Dq YES ,
1550 the flag will be cleared on all of the interfaces.
1551 .Pp
1552 In most cases, just defining an
1553 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1554 for an IPv6-capable interface should be sufficient.
1555 However, if an interface is added dynamically
1556 .Pq by some tunneling protocols such as PPP, for example ,
1557 it is often difficult to define the variable in advance.
1558 In such a case, configuring the
1559 .Dq Li IFDISABLED
1560 flag can be disabled by setting this variable to
1561 .Dq YES .
1562 .Pp
1563 For more details of the
1564 .Dq Li IFDISABLED
1565 flag and keywords
1566 .Dq Li inet6 ifdisabled ,
1567 see
1568 .Xr ifconfig 8 .
1569 .Pp
1570 Default is
1571 .Dq Li NO .
1572 .It Va ipv6_privacy
1573 .Pq Vt bool
1574 If the variable is
1575 .Dq Li YES
1576 privacy addresses will be generated for each IPv6
1577 interface as described in RFC 4941.
1578 .It Va ipv6_network_interfaces
1579 .Pq Vt str
1580 This is the IPv6 equivalent of
1581 .Va network_interfaces .
1582 Normally manual configuration of this variable is not needed.
1583 .It Va ipv6_cpe_wanif
1584 .Pq Vt str
1585 If the variable is set to an interface name,
1586 the
1587 .Xr ifconfig 8
1588 options
1589 .Dq inet6 -no_radr accept_rtadv
1590 will be added to the specified interface automatically before evaluating
1591 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6 ,
1592 and two
1593 .Xr sysctl 8
1594 variables
1595 .Va net.inet6.ip6.rfc6204w3
1596 and
1597 .Va net.inet6.ip6.no_radr
1598 will be set to 1.
1599 .Pp
1600 This means the specified interface will accept ICMPv6 Router
1601 Advertisement messages on that link and add the discovered
1602 routers into the Default Router List.
1603 While the other interfaces can still accept RA messages if the
1604 .Dq inet6 accept_rtadv
1605 option is specified, adding
1606 routes into the Default Router List will be disabled by
1607 .Dq inet6 no_radr
1608 option by default.
1609 See
1610 .Xr ifconfig 8
1611 for more details.
1612 .Pp
1613 Note that ICMPv6 Router Advertisement messages will be
1614 accepted even when
1615 .Va net.inet6.ip6.forwarding
1616 is 1
1617 .Pq packet forwarding is enabled
1618 when
1619 .Va net.inet6.ip6.rfc6204w3
1620 is set to 1.
1621 .Pp
1622 Default is
1623 .Dq Li NO .
1624 .It Va ifconfig_ Ns Ao Ar interface Ac Ns _descr
1625 .Pq Vt str
1626 This assigns arbitrary description to an interface.
1627 The
1628 .Xr sysctl 8
1629 variable
1630 .Va net.ifdescr_maxlen
1631 limits its length.
1632 This static setting may be overridden by commands
1633 started with dynamic interface configuration utilities
1634 like
1635 .Xr dhclient 8
1636 hooks. The description can be seen with
1637 .Xr ifconfig 8
1638 command and it may be exported with
1639 .Xr bsnmpd 1
1640 daemon using its MIB-2 module.
1641 .It Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1642 .Pq Vt str
1643 IPv6 functionality on an interface should be configured by
1644 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6 ,
1645 instead of setting ifconfig parameters in
1646 .Va ifconfig_ Ns Aq Ar interface .
1647 If this variable is empty, all of IPv6 configurations on the
1648 specified interface by other variables such as
1649 .Va ipv6_prefix_ Ns Ao Ar interface Ac
1650 will be ignored.
1651 .Pp
1652 Aliases should be set by
1653 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1654 with
1655 .Dq Li inet6
1656 keyword.
1657 For example:
1658 .Bd -literal
1659 ifconfig_ed0_ipv6="inet6 2001:db8:1::1 prefixlen 64"
1660 ifconfig_ed0_alias0="inet6 2001:db8:2::1 prefixlen 64"
1661 .Ed
1662 .Pp
1663 Interfaces that have an
1664 .Dq Li inet6 accept_rtadv
1665 keyword in
1666 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1667 setting will be automatically configured by SLAAC
1668 .Pq StateLess Address AutoConfiguration
1669 described in
1670 .Rs
1671 .%T "RFC 4862"
1672 .Re
1673 .Pp
1674 Note that a link-local address will be automatically configured in
1675 addition to the configured global-scope addresses because the IPv6
1676 specifications require it on each link.
1677 The address is calculated from the MAC address by using an algorithm
1678 defined in
1679 .Rs
1680 .%T "RFC 4862"
1681 .%O "Section 5.3"
1682 .Re
1683 .Pp
1684 If only a link-local address is needed on the interface,
1685 the following configuration can be used:
1686 .Bd -literal
1687 ifconfig_ed0_ipv6="inet6 auto_linklocal"
1688 .Ed
1689 .Pp
1690 A link-local address can also be configured manually.
1691 This is useful for the default router address of an IPv6 router
1692 so that it does not change when the network interface
1693 card is replaced.
1694 For example:
1695 .Bd -literal
1696 ifconfig_ed0_ipv6="inet6 fe80::1 prefixlen 64"
1697 .Ed
1698 .It Va ipv6_prefix_ Ns Aq Ar interface
1699 .Pq Vt str
1700 If one or more prefixes are defined in
1701 .Va ipv6_prefix_ Ns Aq Ar interface
1702 addresses based on each prefix and the EUI-64 interface index will be
1703 configured on that interface.
1704 Note that this variable will be ignored when
1705 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1706 is empty.
1707 .Pp
1708 For example, the following configuration
1709 .Bd -literal
1710 ipv6_prefix_ed0="2001:db8:1:0 2001:db8:2:0"
1711 .Ed
1712 .Pp
1713 is equivalent to the following:
1714 .Bd -literal
1715 ifconfig_ed0_alias0="inet6 2001:db8:1:: eui64 prefixlen 64"
1716 ifconfig_ed0_alias1="inet6 2001:db8:1:: prefixlen 64 anycast"
1717 ifconfig_ed0_alias2="inet6 2001:db8:2:: eui64 prefixlen 64"
1718 ifconfig_ed0_alias3="inet6 2001:db8:2:: prefixlen 64 anycast"
1719 .Ed
1720 .Pp
1721 These Subnet-Router anycast addresses will be added only when
1722 .Va ipv6_gateway_enable
1723 is YES.
1724 .It Va ipv6_default_interface
1725 .Pq Vt str
1726 If not set to
1727 .Dq Li NO ,
1728 this is the default output interface for scoped addresses.
1729 This works only with ipv6_gateway_enable="NO".
1730 .It Va ip6addrctl_enable
1731 .Pq Vt bool
1732 This variable is to enable configuring default address selection policy table
1733 .Pq RFC 3484 .
1734 The table can be specified in another variable
1735 .Va ip6addrctl_policy .
1736 For
1737 .Va ip6addrctl_policy
1738 the following keywords can be specified:
1739 .Dq Li ipv4_prefer ,
1740 .Dq Li ipv6_prefer ,
1741 or
1742 .Dq Li AUTO .
1743 .Pp
1744 If
1745 .Dq Li ipv4_prefer
1746 or
1747 .Dq Li ipv6_prefer
1748 is specified,
1749 .Xr ip6addrctl 8
1750 installs a pre-defined policy table described in Section 2.1
1751 .Pq IPv6-preferred
1752 or 10.3
1753 .Pq IPv4-preferred
1754 of RFC 3484.
1755 .Pp
1756 If
1757 .Dq Li AUTO
1758 is specified, it attempts to read a file
1759 .Pa /etc/ip6addrctl.conf
1760 first.
1761 If this file is found,
1762 .Xr ip6addrctl 8
1763 reads and installs it.
1764 If not found, a policy is automatically set
1765 according to
1766 .Va ipv6_activate_all_interfaces
1767 variable; if the variable is set to
1768 .Dq Li YES
1769 the IPv6-preferred one is used.
1770 Otherwise IPv4-preferred.
1771 .Pp
1772 The default value of
1773 .Va ip6addrctl_enable
1774 and
1775 .Va ip6addrctl_policy
1776 are
1777 .Dq Li YES
1778 and
1779 .Dq Li AUTO ,
1780 respectively.
1781 .It Va cloned_interfaces
1782 .Pq Vt str
1783 Set to the list of clonable network interfaces to create on this host.
1784 Further cloning arguments may be passed to the
1785 .Xr ifconfig 8
1786 .Cm create
1787 command for each interface by setting the
1788 .Va create_args_ Ns Aq Ar interface
1789 variable.
1790 If an interface name is specified with
1791 .Dq :sticky
1792 keyword,
1793 the interface will not be destroyed even when
1794 .Pa rc.d/netif
1795 script is invoked with
1796 .Dq stop
1797 argument.
1798 This is useful when reconfiguring the interface without destroying it.
1799 Entries in
1800 .Va cloned_interfaces
1801 are automatically appended to
1802 .Va network_interfaces
1803 for configuration.
1804 .It Va cloned_interfaces_sticky
1805 .Pq Vt bool
1806 This variable is to globally enable functionality of
1807 .Dq :sticky
1808 keyword in
1809 .Va cloned_interfaces
1810 for all interfaces.
1811 The default value is
1812 .Dq NO .
1813 Even if this variable is specified to
1814 .Dq YES ,
1815 .Dq :nosticky
1816 keyword can be used to override it on per interface basis.
1817 .It Va gif_interfaces
1818 .Pq Vt str
1819 This variable is deprecated in favor of
1820 .Va cloned_interfaces .
1821 Set to the list of
1822 .Xr gif 4
1823 tunnel interfaces to configure on this host.
1824 For each
1825 .Xr gif
1826 tunnel interface, set a variable named
1827 .Va ifconfig_ Ns Aq Ar interface
1828 with the parameters for the
1829 .Xr ifconfig 8
1830 command to configure the link level for
1831 .Ar interface
1832 with the
1833 .Cm tunnel
1834 option.
1835 The value of this variable is used to configure the link layer of the
1836 tunnel using the
1837 .Cm tunnel
1838 option to
1839 .Xr ifconfig .
1840 For example, configure two
1841 .Xr gif
1842 interfaces with:
1843 .Bd -literal -offset indent
1844 gif_interfaces="gif0 gif1"
1845 ifconfig_gif0="tunnel src_addr0 dst_addr0"
1846 ifconfig_gif1="tunnel src_addr1 dst_addr1"
1847 .Ed
1848 .Pp
1849 Additionally, this option ensures that each listed interface is created
1850 via the
1851 .Cm create
1852 option to
1853 .Xr ifconfig .
1854 This example also works with
1855 .Va cloned_interfaces
1856 instead of
1857 .Va gif_interfaces .
1858 .It Va sppp_interfaces
1859 .Pq Vt str
1860 Set to the list of
1861 .Xr sppp 4
1862 interfaces to configure on this host.
1863 A
1864 .Va spppconfig_ Ns Aq Ar interface
1865 variable is assumed to exist for each value of
1866 .Ar interface .
1867 Each interface should also be configured by a general
1868 .Va ifconfig_ Ns Aq Ar interface
1869 setting.
1870 Refer to
1871 .Xr spppcontrol 8
1872 for more information about available options.
1873 .It Va ppp_enable
1874 .Pq Vt bool
1875 If set to
1876 .Dq Li YES ,
1877 run the
1878 .Xr ppp 8
1879 daemon.
1880 .It Va ppp_profile
1881 .Pq Vt str
1882 The name of the profile to use from
1883 .Pa /etc/ppp/ppp.conf .
1884 Also used for per-profile overrides of
1885 .Va ppp_mode
1886 and
1887 .Va ppp_nat ,
1888 and
1889 .Va ppp_ Ns Ao Ar profile Ac Ns _unit .
1890 When the profile name contains any of the characters
1891 .Dq Li .-/+
1892 they are translated to
1893 .Dq Li _
1894 for the proposes of the override variable names.
1895 .It Va ppp_mode
1896 .Pq Vt str
1897 Mode in which to run the
1898 .Xr ppp 8
1899 daemon.
1900 .It Va ppp_ Ns Ao Ar profile Ac Ns _mode
1901 .Pq Vt str
1902 Overrides the global
1903 .Va ppp_mode
1904 for
1905 .Ar profile .
1906 Accepted modes are
1907 .Dq Li auto ,
1908 .Dq Li ddial ,
1909 .Dq Li direct
1910 and
1911 .Dq Li dedicated .
1912 See the manual for a full description.
1913 .It Va ppp_nat
1914 .Pq Vt bool
1915 If set to
1916 .Dq Li YES ,
1917 enables network address translation.
1918 Used in conjunction with
1919 .Va gateway_enable
1920 allows hosts on private network addresses access to the Internet using
1921 this host as a network address translating router.
1922 .It Va ppp_ Ns Ao Ar profile Ac Ns _nat
1923 .Pq Vt str
1924 Overrides the global
1925 .Va ppp_nat
1926 for
1927 .Ar profile .
1928 .It Va ppp_ Ns Ao Ar profile Ac Ns _unit
1929 .Pq Vt int
1930 Set the unit number to be used for this profile.
1931 See the manual description of
1932 .Fl unit Ns Ar N
1933 for details.
1934 .It Va ppp_user
1935 .Pq Vt str
1936 The name of the user under which
1937 .Xr ppp 8
1938 should be started.
1939 By
1940 default,
1941 .Xr ppp 8
1942 is started as
1943 .Dq Li root .
1944 .It Va rc_conf_files
1945 .Pq Vt str
1946 This option is used to specify a list of files that will override
1947 the settings in
1948 .Pa /etc/defaults/rc.conf .
1949 The files will be read in the order in which they are specified and should
1950 include the full path to the file.
1951 By default, the files specified are
1952 .Pa /etc/rc.conf
1953 and
1954 .Pa /etc/rc.conf.local
1955 .It Va zfs_enable
1956 .Pq Vt bool
1957 If set to
1958 .Dq Li YES ,
1959 .Pa /etc/rc.d/zfs
1960 will attempt to automatically mount ZFS file systems and initialize ZFS volumes
1961 (ZVOLs).
1962 .It Va gptboot_enable
1963 .Pq Vt bool
1964 If set to
1965 .Dq Li YES ,
1966 .Pa /etc/rc.d/gptboot
1967 will log if the system successfully (or not) booted from a GPT partition,
1968 which had the
1969 .Ar bootonce
1970 attribute set using
1971 .Xr gpart 8
1972 utility.
1973 .It Va gbde_autoattach_all
1974 .Pq Vt bool
1975 If set to
1976 .Dq Li YES ,
1977 .Pa /etc/rc.d/gbde
1978 will attempt to automatically initialize your .bde devices in
1979 .Pa /etc/fstab .
1980 .It Va gbde_devices
1981 .Pq Vt str
1982 List the devices that the script should try to attach,
1983 or
1984 .Dq Li AUTO .
1985 .It Va gbde_lockdir
1986 .Pq Vt str
1987 The directory where the
1988 .Xr gbde 4
1989 lockfiles are located.
1990 The default lockfile directory is
1991 .Pa /etc .
1992 .Pp
1993 The lockfile for each individual
1994 .Xr gbde 4
1995 device can be overridden by setting the variable
1996 .Va gbde_lock_ Ns Aq Ar device ,
1997 where
1998 .Ar device
1999 is the encrypted device without the
2000 .Dq Pa /dev/
2001 and
2002 .Dq Pa .bde
2003 parts.
2004 .It Va gbde_attach_attempts
2005 .Pq Vt int
2006 Number of times to attempt attaching to a
2007 .Xr gbde 4
2008 device, i.e., how many times the user is asked for the pass-phrase.
2009 Default is 3.
2010 .It Va geli_devices
2011 .Pq Vt str
2012 List of devices to automatically attach on boot.
2013 Note that .eli devices from
2014 .Pa /etc/fstab
2015 are automatically appended to this list.
2016 .It Va geli_groups
2017 .Pq Vt str
2018 List of groups containing devices to automatically attach on boot with the same
2019 keyfiles and passphrase.
2020 This must be accompanied with a corresponding
2021 .Va geli_ Ns Ao Ar group Ac Ns Va _devices
2022 variable.
2023 .It Va geli_tries
2024 .Pq Vt int
2025 Number of times user is asked for the pass-phrase.
2026 If empty, it will be taken from
2027 .Va kern.geom.eli.tries
2028 sysctl variable.
2029 .It Va geli_default_flags
2030 .Pq Vt str
2031 Default flags to use by
2032 .Xr geli 8
2033 when configuring disk encryption.
2034 Flags can be configured for every device separately by defining the
2035 .Va geli_ Ns Ao Ar device Ac Ns Va _flags
2036 variable, and for every group separately by defining the
2037 .Va geli_ Ns Ao Ar group Ac Ns Va _flags
2038 variable.
2039 .It Va geli_autodetach
2040 .Pq Vt str
2041 Specifies if GELI devices should be marked for detach on last close after
2042 file systems are mounted.
2043 Default is
2044 .Dq Li YES .
2045 This can be changed for every device separately by defining the
2046 .Va geli_ Ns Ao Ar device Ac Ns Va _autodetach
2047 variable.
2048 .It Va root_rw_mount
2049 .Pq Vt bool
2050 Set to
2051 .Dq Li YES
2052 by default.
2053 After the file systems are checked at boot time, the root file system
2054 is remounted as read-write if this is set to
2055 .Dq Li YES .
2056 Diskless systems that mount their root file system from a read-only remote
2057 NFS share should set this to
2058 .Dq Li NO
2059 in their
2060 .Pa rc.conf .
2061 .It Va fsck_y_enable
2062 .Pq Vt bool
2063 If set to
2064 .Dq Li YES ,
2065 .Xr fsck 8
2066 will be run with the
2067 .Fl y
2068 flag if the initial preen
2069 of the file systems fails.
2070 .It Va background_fsck
2071 .Pq Vt bool
2072 If set to
2073 .Dq Li NO ,
2074 the system will not attempt to run
2075 .Xr fsck 8
2076 in the background where possible.
2077 .It Va background_fsck_delay
2078 .Pq Vt int
2079 The amount of time in seconds to sleep before starting a background
2080 .Xr fsck 8 .
2081 It defaults to sixty seconds to allow large applications such as
2082 the X server to start before disk I/O bandwidth is monopolized by
2083 .Xr fsck 8 .
2084 If set to a negative number, the background file system check will be
2085 delayed indefinitely to allow the administrator to run it at a more
2086 convenient time.
2087 For example it may be run from
2088 .Xr cron 8
2089 by adding a line like
2090 .Pp
2091 .Dl "0 4 * * * root /etc/rc.d/bgfsck forcestart"
2092 .Pp
2093 to
2094 .Pa /etc/crontab .
2095 .It Va netfs_types
2096 .Pq Vt str
2097 List of file system types that are network-based.
2098 This list should generally not be modified by end users.
2099 Use
2100 .Va extra_netfs_types
2101 instead.
2102 .It Va extra_netfs_types
2103 .Pq Vt str
2104 If set to something other than
2105 .Dq Li NO
2106 (the default),
2107 this variable extends the list of file system types
2108 for which automatic mounting at startup by
2109 .Xr rc 8
2110 should be delayed until the network is initialized.
2111 It should contain
2112 a whitespace-separated list of network file system descriptor pairs,
2113 each consisting of a file system type as passed to
2114 .Xr mount 8
2115 and a human-readable, one-word description,
2116 joined with a colon
2117 .Pq Ql \&: .
2118 Extending the default list in this way is only necessary
2119 when third party file system types are used.
2120 .It Va syslogd_enable
2121 .Pq Vt bool
2122 If set to
2123 .Dq Li YES ,
2124 run the
2125 .Xr syslogd 8
2126 daemon.
2127 .It Va syslogd_program
2128 .Pq Vt str
2129 Path to
2130 .Xr syslogd 8
2131 (default
2132 .Pa /usr/sbin/syslogd ) .
2133 .It Va syslogd_flags
2134 .Pq Vt str
2135 If
2136 .Va syslogd_enable
2137 is set to
2138 .Dq Li YES ,
2139 these are the flags to pass to
2140 .Xr syslogd 8 .
2141 .It Va inetd_enable
2142 .Pq Vt bool
2143 If set to
2144 .Dq Li YES ,
2145 run the
2146 .Xr inetd 8
2147 daemon.
2148 .It Va inetd_program
2149 .Pq Vt str
2150 Path to
2151 .Xr inetd 8
2152 (default
2153 .Pa /usr/sbin/inetd ) .
2154 .It Va inetd_flags
2155 .Pq Vt str
2156 If
2157 .Va inetd_enable
2158 is set to
2159 .Dq Li YES ,
2160 these are the flags to pass to
2161 .Xr inetd 8 .
2162 .It Va hastd_enable
2163 .Pq Vt bool
2164 If set to
2165 .Dq Li YES ,
2166 run the
2167 .Xr hastd 8
2168 daemon.
2169 .It Va hastd_program
2170 .Pq Vt str
2171 Path to
2172 .Xr hastd 8
2173 (default
2174 .Pa /sbin/hastd ) .
2175 .It Va hastd_flags
2176 .Pq Vt str
2177 If
2178 .Va hastd_enable
2179 is set to
2180 .Dq Li YES ,
2181 these are the flags to pass to
2182 .Xr hastd 8 .
2183 .It Va local_unbound_enable
2184 .Pq Vt bool
2185 If set to
2186 .Dq Li YES ,
2187 run the
2188 .Xr unbound 8
2189 daemon as a local caching resolver.
2190 .It Va kdc_enable
2191 .Pq Vt bool
2192 Set to
2193 .Dq Li YES
2194 to start a Kerberos 5 authentication server
2195 at boot time.
2196 .It Va kdc_program
2197 .Pq Vt str
2198 If
2199 .Va kdc_enable
2200 is set to
2201 .Dq Li YES
2202 this is the path to Kerberos 5 Authentication Server.
2203 .It Va kdc_flags
2204 .Pq Vt str
2205 Empty by default.
2206 This variable contains additional flags to be passed to the Kerberos 5
2207 authentication server.
2208 .It Va kadmind_enable
2209 .Pq Vt bool
2210 Set to
2211 .Dq Li YES
2212 to start
2213 .Xr kadmind 8 ,
2214 the Kerberos 5 Administration Daemon; set to
2215 .Dq Li NO
2216 on a slave server.
2217 .It Va kadmind_program
2218 .Pq Vt str
2219 If
2220 .Va kadmind_enable
2221 is set to
2222 .Dq Li YES
2223 this is the path to Kerberos 5 Administration Daemon.
2224 .It Va kpasswdd_enable
2225 .Pq Vt bool
2226 Set to
2227 .Dq Li YES
2228 to start
2229 .Xr kpasswdd 8 ,
2230 the Kerberos 5 Password-Changing Daemon; set to
2231 .Dq Li NO
2232 on a slave server.
2233 .It Va kpasswdd_program
2234 .Pq Vt str
2235 If
2236 .Va kpasswdd_enable
2237 is set to
2238 .Dq Li YES
2239 this is the path to Kerberos 5 Password-Changing Daemon.
2240 .It Va kfd_enable
2241 .Pq Vt bool
2242 Set to
2243 .Dq Li YES
2244 to start
2245 .Xr kfd 8 ,
2246 the Kerberos 5 ticket forwarding daemon, at the boot time.
2247 .It Va kfd_program
2248 .Pq Vt str
2249 Path to
2250 .Xr kfd 8
2251 (default
2252 .Pa /usr/libexec/kfd ) .
2253 .It Va rwhod_enable
2254 .Pq Vt bool
2255 If set to
2256 .Dq Li YES ,
2257 run the
2258 .Xr rwhod 8
2259 daemon at boot time.
2260 .It Va rwhod_flags
2261 .Pq Vt str
2262 If
2263 .Va rwhod_enable
2264 is set to
2265 .Dq Li YES ,
2266 these are the flags to pass to it.
2267 .It Va amd_enable
2268 .Pq Vt bool
2269 If set to
2270 .Dq Li YES ,
2271 run the
2272 .Xr amd 8
2273 daemon at boot time.
2274 .It Va amd_flags
2275 .Pq Vt str
2276 If
2277 .Va amd_enable
2278 is set to
2279 .Dq Li YES ,
2280 these are the flags to pass to it.
2281 See the
2282 .Xr amd 8
2283 manpage for more information.
2284 .It Va amd_map_program
2285 .Pq Vt str
2286 If set,
2287 the specified program is run to get the list of
2288 .Xr amd 8
2289 maps.
2290 For example, if the
2291 .Xr amd 8
2292 maps are stored in NIS, one can set this to
2293 run
2294 .Xr ypcat 1
2295 to get a list of
2296 .Xr amd 8
2297 maps from the
2298 .Pa amd.master
2299 NIS map.
2300 .It Va update_motd
2301 .Pq Vt bool
2302 If set to
2303 .Dq Li YES ,
2304 .Pa /etc/motd
2305 will be updated at boot time to reflect the kernel release
2306 being run.
2307 If set to
2308 .Dq Li NO ,
2309 .Pa /etc/motd
2310 will not be updated.
2311 .It Va nfs_client_enable
2312 .Pq Vt bool
2313 If set to
2314 .Dq Li YES ,
2315 run the NFS client daemons at boot time.
2316 .It Va nfs_access_cache
2317 .Pq Vt int
2318 If
2319 .Va nfs_client_enable
2320 is set to
2321 .Dq Li YES ,
2322 this can be set to
2323 .Dq Li 0
2324 to disable NFS ACCESS RPC caching, or to the number of seconds for which
2325 NFS ACCESS
2326 results should be cached.
2327 A value of 2-10 seconds will substantially reduce network
2328 traffic for many NFS operations.
2329 .It Va nfs_server_enable
2330 .Pq Vt bool
2331 If set to
2332 .Dq Li YES ,
2333 run the NFS server daemons at boot time.
2334 .It Va nfs_server_flags
2335 .Pq Vt str
2336 If
2337 .Va nfs_server_enable
2338 is set to
2339 .Dq Li YES ,
2340 these are the flags to pass to the
2341 .Xr nfsd 8
2342 daemon.
2343 .It Va nfsv4_server_enable
2344 .Pq Vt bool
2345 If
2346 .Va nfs_server_enable
2347 is set to
2348 .Dq Li YES
2349 and
2350 .Va nfsv4_server_enable
2351 are set to
2352 .Dq Li YES ,
2353 enable the server for NFSv4 as well as NFSv2 and NFSv3.
2354 .It Va nfsuserd_enable
2355 .Pq Vt bool
2356 If
2357 .Va nfsuserd_enable
2358 is set to
2359 .Dq Li YES ,
2360 run the nfsuserd daemon, which is needed for NFSv4 in order
2361 to map between user/group names vs uid/gid numbers.
2362 If
2363 .Va nfsv4_server_enable
2364 is set to
2365 .Dq Li YES ,
2366 this will be forced enabled.
2367 .It Va nfsuserd_flags
2368 .Pq Vt str
2369 If
2370 .Va nfsuserd_enable
2371 is set to
2372 .Dq Li YES ,
2373 these are the flags to pass to the
2374 .Xr nfsuserd 8
2375 daemon.
2376 .It Va nfscbd_enable
2377 .Pq Vt bool
2378 If
2379 .Va nfscbd_enable
2380 is set to
2381 .Dq Li YES ,
2382 run the nfscbd daemon, which enables callbacks/delegations for the NFSv4 client.
2383 .It Va nfscbd_flags
2384 .Pq Vt str
2385 If
2386 .Va nfscbd_enable
2387 is set to
2388 .Dq Li YES ,
2389 these are the flags to pass to the
2390 .Xr nfscbd 8
2391 daemon.
2392 .It Va mountd_enable
2393 .Pq Vt bool
2394 If set to
2395 .Dq Li YES ,
2396 and no
2397 .Va nfs_server_enable
2398 is set, start
2399 .Xr mountd 8 ,
2400 but not
2401 .Xr nfsd 8
2402 daemon.
2403 It is commonly needed to run CFS without real NFS used.
2404 .It Va mountd_flags
2405 .Pq Vt str
2406 If
2407 .Va mountd_enable
2408 is set to
2409 .Dq Li YES ,
2410 these are the flags to pass to the
2411 .Xr mountd 8
2412 daemon.
2413 .It Va weak_mountd_authentication
2414 .Pq Vt bool
2415 If set to
2416 .Dq Li YES ,
2417 allow services like PCNFSD to make non-privileged mount
2418 requests.
2419 .It Va nfs_reserved_port_only
2420 .Pq Vt bool
2421 If set to
2422 .Dq Li YES ,
2423 provide NFS services only on a secure port.
2424 .It Va nfs_bufpackets
2425 .Pq Vt int
2426 If set to a number, indicates the number of packets worth of
2427 socket buffer space to reserve on an NFS client.
2428 The kernel default is typically 4.
2429 Using a higher number may be
2430 useful on gigabit networks to improve performance.
2431 The minimum value is
2432 2 and the maximum is 64.
2433 .It Va rpc_lockd_enable
2434 .Pq Vt bool
2435 If set to
2436 .Dq Li YES
2437 and also an NFS server or client, run
2438 .Xr rpc.lockd 8
2439 at boot time.
2440 .It Va rpc_lockd_flags
2441 .Pq Vt str
2442 If
2443 .Va rpc_lockd_enable
2444 is set to
2445 .Dq Li YES ,
2446 these are the flags to pass to the
2447 .Xr rpc.lockd 8
2448 daemon.
2449 .It Va rpc_statd_enable
2450 .Pq Vt bool
2451 If set to
2452 .Dq Li YES
2453 and also an NFS server or client, run
2454 .Xr rpc.statd 8
2455 at boot time.
2456 .It Va rpc_statd_flags
2457 .Pq Vt str
2458 If
2459 .Va rpc_statd_enable
2460 is set to
2461 .Dq Li YES ,
2462 these are the flags to pass to the
2463 .Xr rpc.statd 8
2464 daemon.
2465 .It Va rpcbind_program
2466 .Pq Vt str
2467 Path to
2468 .Xr rpcbind 8
2469 (default
2470 .Pa /usr/sbin/rpcbind ) .
2471 .It Va rpcbind_enable
2472 .Pq Vt bool
2473 If set to
2474 .Dq Li YES ,
2475 run the
2476 .Xr rpcbind 8
2477 service at boot time.
2478 .It Va rpcbind_flags
2479 .Pq Vt str
2480 If
2481 .Va rpcbind_enable
2482 is set to
2483 .Dq Li YES ,
2484 these are the flags to pass to the
2485 .Xr rpcbind 8
2486 daemon.
2487 .It Va keyserv_enable
2488 .Pq Vt bool
2489 If set to
2490 .Dq Li YES ,
2491 run the
2492 .Xr keyserv 8
2493 daemon on boot for running Secure RPC.
2494 .It Va keyserv_flags
2495 .Pq Vt str
2496 If
2497 .Va keyserv_enable
2498 is set to
2499 .Dq Li YES ,
2500 these are the flags to pass to
2501 .Xr keyserv 8
2502 daemon.
2503 .It Va pppoed_enable
2504 .Pq Vt bool
2505 If set to
2506 .Dq Li YES ,
2507 run the
2508 .Xr pppoed 8
2509 daemon at boot time to provide PPP over Ethernet services.
2510 .It Va pppoed_ Ns Aq Ar provider
2511 .Pq Vt str
2512 .Xr pppoed 8
2513 listens to requests to this
2514 .Ar provider
2515 and ultimately runs
2516 .Xr ppp 8
2517 with a
2518 .Ar system
2519 argument of the same name.
2520 .It Va pppoed_flags
2521 .Pq Vt str
2522 Additional flags to pass to
2523 .Xr pppoed 8 .
2524 .It Va pppoed_interface
2525 .Pq Vt str
2526 The network interface to run
2527 .Xr pppoed 8
2528 on.
2529 This is mandatory when
2530 .Va pppoed_enable
2531 is set to
2532 .Dq Li YES .
2533 .It Va timed_enable
2534 .Pq Vt bool
2535 If set to
2536 .Dq Li YES ,
2537 run the
2538 .Xr timed 8
2539 service at boot time.
2540 This command is intended for networks of
2541 machines where a consistent
2542 .Dq "network time"
2543 for all hosts must be established.
2544 This is often useful in large NFS
2545 environments where time stamps on files are expected to be consistent
2546 network-wide.
2547 .It Va timed_flags
2548 .Pq Vt str
2549 If
2550 .Va timed_enable
2551 is set to
2552 .Dq Li YES ,
2553 these are the flags to pass to the
2554 .Xr timed 8
2555 service.
2556 .It Va ntpdate_enable
2557 .Pq Vt bool
2558 If set to
2559 .Dq Li YES ,
2560 run
2561 .Xr ntpdate 8
2562 at system startup.
2563 This command is intended to
2564 synchronize the system clock only
2565 .Em once
2566 from some standard reference.
2567 .Pp
2568 Note that the use of the
2569 .Va ntpd_sync_on_start
2570 variable is a preferred alternative to the
2571 .Xr ntpdate 8
2572 utility as
2573 .Xr ntpdate 8
2574 is to be retired from the NTP distribution.
2575 .It Va ntpdate_config
2576 .Pq Vt str
2577 Configuration file for
2578 .Xr ntpdate 8 .
2579 Default
2580 .Pa /etc/ntp.conf .
2581 .It Va ntpdate_hosts
2582 .Pq Vt str
2583 A whitespace-separated list of NTP servers to synchronize with at startup.
2584 The default is to use the servers listed in
2585 .Va ntpdate_config ,
2586 if that file exists.
2587 .It Va ntpdate_program
2588 .Pq Vt str
2589 Path to
2590 .Xr ntpdate 8
2591 (default
2592 .Pa /usr/sbin/ntpdate ) .
2593 .It Va ntpdate_flags
2594 .Pq Vt str
2595 If
2596 .Va ntpdate_enable
2597 is set to
2598 .Dq Li YES ,
2599 these are the flags to pass to the
2600 .Xr ntpdate 8
2601 command (typically a hostname).
2602 .It Va ntpd_enable
2603 .Pq Vt bool
2604 If set to
2605 .Dq Li YES ,
2606 run the
2607 .Xr ntpd 8
2608 command at boot time.
2609 .It Va ntpd_program
2610 .Pq Vt str
2611 Path to
2612 .Xr ntpd 8
2613 (default
2614 .Pa /usr/sbin/ntpd ) .
2615 .It Va ntpd_config
2616 .Pq Vt str
2617 Path to
2618 .Xr ntpd 8
2619 configuration file.
2620 Default
2621 .Pa /etc/ntp.conf .
2622 .It Va ntpd_flags
2623 .Pq Vt str
2624 If
2625 .Va ntpd_enable
2626 is set to
2627 .Dq Li YES ,
2628 these are the flags to pass to the
2629 .Xr ntpd 8
2630 daemon.
2631 .It Va ntpd_sync_on_start
2632 .Pq Vt bool
2633 If set to
2634 .Dq Li YES ,
2635 .Xr ntpd 8
2636 is run with the
2637 .Fl g
2638 flag, which syncs the system's clock on startup.
2639 See
2640 .Xr ntpd 8
2641 for more information regarding the
2642 .Fl g
2643 option.
2644 This is a preferred alternative to using
2645 .Xr ntpdate 8
2646 or specifying the
2647 .Va ntpdate_enable
2648 variable.
2649 .It Va nis_client_enable
2650 .Pq Vt bool
2651 If set to
2652 .Dq Li YES ,
2653 run the
2654 .Xr ypbind 8
2655 service at system boot time.
2656 .It Va nis_client_flags
2657 .Pq Vt str
2658 If
2659 .Va nis_client_enable
2660 is set to
2661 .Dq Li YES ,
2662 these are the flags to pass to the
2663 .Xr ypbind 8
2664 service.
2665 .It Va nis_ypldap_enable
2666 .Pq Vt bool
2667 If set to
2668 .Dq Li YES ,
2669 run the
2670 .Xr ypldap 8
2671 daemon at system boot time.
2672 .It Va nis_ypldap_flags
2673 .Pq Vt str
2674 If
2675 .Va nis.ypldap_enable
2676 is set to
2677 .Dq Li YES ,
2678 these are the flags to pass to the
2679 .Xr ypldap 8
2680 daemon.
2681 .It Va nis_ypset_enable
2682 .Pq Vt bool
2683 If set to
2684 .Dq Li YES ,
2685 run the
2686 .Xr ypset 8
2687 daemon at system boot time.
2688 .It Va nis_ypset_flags
2689 .Pq Vt str
2690 If
2691 .Va nis_ypset_enable
2692 is set to
2693 .Dq Li YES ,
2694 these are the flags to pass to the
2695 .Xr ypset 8
2696 daemon.
2697 .It Va nis_server_enable
2698 .Pq Vt bool
2699 If set to
2700 .Dq Li YES ,
2701 run the
2702 .Xr ypserv 8
2703 daemon at system boot time.
2704 .It Va nis_server_flags
2705 .Pq Vt str
2706 If
2707 .Va nis_server_enable
2708 is set to
2709 .Dq Li YES ,
2710 these are the flags to pass to the
2711 .Xr ypserv 8
2712 daemon.
2713 .It Va nis_ypxfrd_enable
2714 .Pq Vt bool
2715 If set to
2716 .Dq Li YES ,
2717 run the
2718 .Xr rpc.ypxfrd 8
2719 daemon at system boot time.
2720 .It Va nis_ypxfrd_flags
2721 .Pq Vt str
2722 If
2723 .Va nis_ypxfrd_enable
2724 is set to
2725 .Dq Li YES ,
2726 these are the flags to pass to the
2727 .Xr rpc.ypxfrd 8
2728 daemon.
2729 .It Va nis_yppasswdd_enable
2730 .Pq Vt bool
2731 If set to
2732 .Dq Li YES ,
2733 run the
2734 .Xr rpc.yppasswdd 8
2735 daemon at system boot time.
2736 .It Va nis_yppasswdd_flags
2737 .Pq Vt str
2738 If
2739 .Va nis_yppasswdd_enable
2740 is set to
2741 .Dq Li YES ,
2742 these are the flags to pass to the
2743 .Xr rpc.yppasswdd 8
2744 daemon.
2745 .It Va rpc_ypupdated_enable
2746 .Pq Vt bool
2747 If set to
2748 .Dq Li YES ,
2749 run the
2750 .Nm rpc.ypupdated
2751 daemon at system boot time.
2752 .It Va bsnmpd_enable
2753 .Pq Vt bool
2754 If set to
2755 .Dq Li YES ,
2756 run the
2757 .Xr bsnmpd 1
2758 daemon at system boot time.
2759 Be sure to understand the security implications of running SNMP daemon
2760 on your host.
2761 .It Va bsnmpd_flags
2762 .Pq Vt str
2763 If
2764 .Va bsnmpd_enable
2765 is set to
2766 .Dq Li YES ,
2767 these are the flags to pass to the
2768 .Xr bsnmpd 1
2769 daemon.
2770 .It Va defaultrouter
2771 .Pq Vt str
2772 If not set to
2773 .Dq Li NO ,
2774 create a default route to this host name or IP address
2775 (use an IP address if this router is also required to get to the
2776 name server!).
2777 .It Va ipv6_defaultrouter
2778 .Pq Vt str
2779 The IPv6 equivalent of
2780 .Va defaultrouter .
2781 .It Va static_arp_pairs
2782 .Pq Vt str
2783 Set to the list of static ARP pairs that are to be added at system
2784 boot time.
2785 For each whitespace separated
2786 .Ar element
2787 in the value, a
2788 .Va static_arp_ Ns Aq Ar element
2789 variable is assumed to exist whose contents will later be passed to a
2790 .Dq Nm arp Cm -S
2791 operation.
2792 For example
2793 .Bd -literal
2794 static_arp_pairs="gw"
2795 static_arp_gw="192.168.1.1 00:01:02:03:04:05"
2796 .Ed
2797 .It Va static_ndp_pairs
2798 .Pq Vt str
2799 Set to the list of static NDP pairs that are to be added at system
2800 boot time.
2801 For each whitespace separated
2802 .Ar element
2803 in the value, a
2804 .Va static_ndp_ Ns Aq Ar element
2805 variable is assumed to exist whose contents will later be passed to a
2806 .Dq Nm ndp Cm -s
2807 operation.
2808 For example
2809 .Bd -literal
2810 static_ndp_pairs="gw"
2811 static_ndp_gw="2001:db8:3::1 00:01:02:03:04:05"
2812 .Ed
2813 .It Va static_routes
2814 .Pq Vt str
2815 Set to the list of static routes that are to be added at system
2816 boot time.
2817 If not set to
2818 .Dq Li NO
2819 then for each whitespace separated
2820 .Ar element
2821 in the value, a
2822 .Va route_ Ns Aq Ar element
2823 variable is assumed to exist
2824 whose contents will later be passed to a
2825 .Dq Nm route Cm add
2826 operation.
2827 For example:
2828 .Bd -literal
2829 static_routes="ext mcast:gif0 gif0local:gif0"
2830 route_ext="-net 10.0.0.0/24 -gateway 192.168.0.1"
2831 route_mcast="-net 224.0.0.0/4 -iface gif0"
2832 route_gif0local="-host 169.254.1.1 -iface lo0"
2833 .Ed
2834 .Pp
2835 When an
2836 .Ar element
2837 is in the form of
2838 .Li name:ifname ,
2839 the route is specific to the interface
2840 .Li ifname .
2841 .It Va ipv6_static_routes
2842 .Pq Vt str
2843 The IPv6 equivalent of
2844 .Va static_routes .
2845 If not set to
2846 .Dq Li NO
2847 then for each whitespace separated
2848 .Ar element
2849 in the value, a
2850 .Va ipv6_route_ Ns Aq Ar element
2851 variable is assumed to exist
2852 whose contents will later be passed to a
2853 .Dq Nm route Cm add Fl inet6
2854 operation.
2855 .It Va gateway_enable
2856 .Pq Vt bool
2857 If set to
2858 .Dq Li YES ,
2859 configure host to act as an IP router, e.g.\& to forward packets
2860 between interfaces.
2861 .It Va ipv6_gateway_enable
2862 .Pq Vt bool
2863 The IPv6 equivalent of
2864 .Va gateway_enable .
2865 .It Va routed_enable
2866 .Pq Vt bool
2867 If set to
2868 .Dq Li YES ,
2869 run a routing daemon of some sort, based on the
2870 settings of
2871 .Va routed_program
2872 and
2873 .Va routed_flags .
2874 .It Va route6d_enable
2875 .Pq Vt bool
2876 The IPv6 equivalent of
2877 .Va routed_enable .
2878 If set to
2879 .Dq Li YES ,
2880 run a routing daemon of some sort, based on the
2881 settings of
2882 .Va route6d_program
2883 and
2884 .Va route6d_flags .
2885 .It Va routed_program
2886 .Pq Vt str
2887 If
2888 .Va routed_enable
2889 is set to
2890 .Dq Li YES ,
2891 this is the name of the routing daemon to use.
2892 .It Va route6d_program
2893 .Pq Vt str
2894 The IPv6 equivalent of
2895 .Va routed_program .
2896 .It Va routed_flags
2897 .Pq Vt str
2898 If
2899 .Va routed_enable
2900 is set to
2901 .Dq Li YES ,
2902 these are the flags to pass to the routing daemon.
2903 .It Va route6d_flags
2904 .Pq Vt str
2905 The IPv6 equivalent of
2906 .Va routed_flags .
2907 .It Va rtadvd_enable
2908 .Pq Vt bool
2909 If set to
2910 .Dq Li YES ,
2911 run the
2912 .Xr rtadvd 8
2913 daemon at boot time.
2914 The
2915 .Xr rtadvd 8
2916 utility sends ICMPv6 Router Advertisement messages to
2917 the interfaces specified in
2918 .Va rtadvd_interfaces .
2919 This should only be enabled with great care.
2920 You may want to fine-tune
2921 .Xr rtadvd.conf 5 .
2922 .It Va rtadvd_interfaces
2923 .Pq Vt str
2924 If
2925 .Va rtadvd_enable
2926 is set to
2927 .Dq Li YES
2928 this is the list of interfaces to use.
2929 .It Va arpproxy_all
2930 .Pq Vt bool
2931 If set to
2932 .Dq Li YES ,
2933 enable global proxy ARP.
2934 .It Va forward_sourceroute
2935 .Pq Vt bool
2936 If set to
2937 .Dq Li YES
2938 and
2939 .Va gateway_enable
2940 is also set to
2941 .Dq Li YES ,
2942 source-routed packets are forwarded.
2943 .It Va accept_sourceroute
2944 .Pq Vt bool
2945 If set to
2946 .Dq Li YES ,
2947 the system will accept source-routed packets directed at it.
2948 .It Va rarpd_enable
2949 .Pq Vt bool
2950 If set to
2951 .Dq Li YES ,
2952 run the
2953 .Xr rarpd 8
2954 daemon at system boot time.
2955 .It Va rarpd_flags
2956 .Pq Vt str
2957 If
2958 .Va rarpd_enable
2959 is set to
2960 .Dq Li YES ,
2961 these are the flags to pass to the
2962 .Xr rarpd 8
2963 daemon.
2964 .It Va bootparamd_enable
2965 .Pq Vt bool
2966 If set to
2967 .Dq Li YES ,
2968 run the
2969 .Xr bootparamd 8
2970 daemon at system boot time.
2971 .It Va bootparamd_flags
2972 .Pq Vt str
2973 If
2974 .Va bootparamd_enable
2975 is set to
2976 .Dq Li YES ,
2977 these are the flags to pass to the
2978 .Xr bootparamd 8
2979 daemon.
2980 .It Va stf_interface_ipv4addr
2981 .Pq Vt str
2982 If not set to
2983 .Dq Li NO ,
2984 this is the local IPv4 address for 6to4 (IPv6 over IPv4 tunneling
2985 interface).
2986 Specify this entry to enable the 6to4 interface.
2987 .It Va stf_interface_ipv4plen
2988 .Pq Vt int
2989 Prefix length for 6to4 IPv4 addresses, to limit peer address range.
2990 An effective value is 0-31.
2991 .It Va stf_interface_ipv6_ifid
2992 .Pq Vt str
2993 IPv6 interface ID for
2994 .Xr stf 4 .
2995 This can be set to
2996 .Dq Li AUTO .
2997 .It Va stf_interface_ipv6_slaid
2998 .Pq Vt str
2999 IPv6 Site Level Aggregator for
3000 .Xr stf 4 .
3001 .It Va ipv6_ipv4mapping
3002 .Pq Vt bool
3003 If set to
3004 .Dq Li YES
3005 this enables IPv4 mapped IPv6 address communication (like
3006 .Li ::ffff:a.b.c.d ) .
3007 .It Va rtsold_enable
3008 .Pq Vt bool
3009 Set to
3010 .Dq Li YES
3011 to enable the
3012 .Xr rtsold 8
3013 daemon to send ICMPv6 Router Solicitation messages.
3014 .It Va rtsold_flags
3015 .Pq Vt str
3016 If
3017 .Va rtsold_enable
3018 is set to
3019 .Dq Li YES ,
3020 these are the flags to pass to
3021 .Xr rtsold 8 .
3022 .It Va rtsol_flags
3023 .Pq Vt str
3024 For interfaces configured with the
3025 .Dq Li inet6 accept_rtadv
3026 keyword, these are the flags to pass to
3027 .Xr rtsol 8 .
3028 .Pp
3029 Note that
3030 .Va rtsold_enable
3031 is mutually exclusive to
3032 .Va rtsol_flags ;
3033 .Va rtsold_enable
3034 takes precedence.
3035 .It Va keybell
3036 .Pq Vt str
3037 The keyboard bell sound.
3038 Set to
3039 .Dq Li normal ,
3040 .Dq Li visual ,
3041 .Dq Li off ,
3042 or
3043 .Dq Li NO
3044 if the default behavior is desired.
3045 For details, refer to the
3046 .Xr kbdcontrol 1
3047 manpage.
3048 .It Va keyboard
3049 .Pq Vt str
3050 If set to a non-null string, the virtual console's keyboard input is
3051 set to this device.
3052 .It Va keymap
3053 .Pq Vt str
3054 If set to
3055 .Dq Li NO ,
3056 no keymap is installed, otherwise the value is used to install
3057 the keymap file found in
3058 .Pa /usr/share/syscons/keymaps/ Ns Ao Ar value Ac Ns Pa .kbd
3059 (if using
3060 .Xr syscons 4 ) or
3061 .Pa /usr/share/vt/keymaps/ Ns Ao Ar value Ac Ns Pa .kbd
3062 (if using
3063 .Xr vt 4 ) .
3064 .It Va keyrate
3065 .Pq Vt str
3066 The keyboard repeat speed.
3067 Set to
3068 .Dq Li slow ,
3069 .Dq Li normal ,
3070 .Dq Li fast ,
3071 or
3072 .Dq Li NO
3073 if the default behavior is desired.
3074 .It Va keychange
3075 .Pq Vt str
3076 If not set to
3077 .Dq Li NO ,
3078 attempt to program the function keys with the value.
3079 The value should
3080 be a single string of the form:
3081 .Dq Ar funkey_number new_value Op Ar funkey_number new_value ... .
3082 .It Va cursor
3083 .Pq Vt str
3084 Can be set to the value of
3085 .Dq Li normal ,
3086 .Dq Li blink ,
3087 .Dq Li destructive ,
3088 or
3089 .Dq Li NO
3090 to set the cursor behavior explicitly or choose the default behavior.
3091 .It Va scrnmap
3092 .Pq Vt str
3093 If set to
3094 .Dq Li NO ,
3095 no screen map is installed, otherwise the value is used to install
3096 the screen map file in
3097 .Pa /usr/share/syscons/scrnmaps/ Ns Aq Ar value .
3098 This parameter is ignored when using
3099 .Xr vt 4
3100 as the console driver.
3101 .It Va font8x16
3102 .Pq Vt str
3103 If set to
3104 .Dq Li NO ,
3105 the default 8x16 font value is used for screen size requests, otherwise
3106 the value in
3107 .Pa /usr/share/syscons/fonts/ Ns Aq Ar value
3108 or
3109 .Pa /usr/share/vt/fonts/ Ns Aq Ar value
3110 is used (depending on the console driver being used).
3111 .It Va font8x14
3112 .Pq Vt str
3113 If set to
3114 .Dq Li NO ,
3115 the default 8x14 font value is used for screen size requests, otherwise
3116 the value in
3117 .Pa /usr/share/syscons/fonts/ Ns Aq Ar value
3118 or
3119 .Pa /usr/share/vt/fonts/ Ns Aq Ar value
3120 is used (depending on the console driver being used).
3121 .It Va font8x8
3122 .Pq Vt str
3123 If set to
3124 .Dq Li NO ,
3125 the default 8x8 font value is used for screen size requests, otherwise
3126 the value in
3127 .Pa /usr/share/syscons/fonts/ Ns Aq Ar value
3128 or
3129 .Pa /usr/share/vt/fonts/ Ns Aq Ar value
3130 is used (depending on the console driver being used).
3131 .It Va blanktime
3132 .Pq Vt int
3133 If set to
3134 .Dq Li NO ,
3135 the default screen blanking interval is used, otherwise it is set
3136 to
3137 .Ar value
3138 seconds.
3139 .It Va saver
3140 .Pq Vt str
3141 If not set to
3142 .Dq Li NO ,
3143 this is the actual screen saver to use
3144 .Li ( blank , snake , daemon ,
3145 etc).
3146 .It Va moused_nondefault_enable
3147 .Pq Vt str
3148 If set to
3149 .Dq Li NO ,
3150 the mouse device specified on
3151 the command line is not automatically treated as enabled by the
3152 .Pa /etc/rc.d/moused
3153 script.
3154 Having this variable set to
3155 .Dq Li YES
3156 allows a
3157 .Xr usb 4
3158 mouse,
3159 for example,
3160 to be enabled as soon as it is plugged in.
3161 .It Va moused_enable
3162 .Pq Vt str
3163 If set to
3164 .Dq Li YES ,
3165 the
3166 .Xr moused 8
3167 daemon is started for doing cut/paste selection on the console.
3168 .It Va moused_type
3169 .Pq Vt str
3170 This is the protocol type of the mouse connected to this host.
3171 This variable must be set if
3172 .Va moused_enable
3173 is set to
3174 .Dq Li YES .
3175 The
3176 .Xr moused 8
3177 daemon
3178 is able to detect the appropriate mouse type automatically in many cases.
3179 Set this variable to
3180 .Dq Li auto
3181 to let the daemon detect it, or
3182 select one from the following list if the automatic detection fails.
3183 .Pp
3184 If the mouse is attached to the PS/2 mouse port, choose
3185 .Dq Li auto
3186 or
3187 .Dq Li ps/2 ,
3188 regardless of the brand and model of the mouse.
3189 Likewise, if the
3190 mouse is attached to the bus mouse port, choose
3191 .Dq Li auto
3192 or
3193 .Dq Li busmouse .
3194 All other protocols are for serial mice and will not work with
3195 the PS/2 and bus mice.
3196 If this is a USB mouse,
3197 .Dq Li auto
3198 is the only protocol type which will work.
3199 .Pp
3200 .Bl -tag -width ".Li x10mouseremote" -compact
3201 .It Li microsoft
3202 Microsoft mouse (serial)
3203 .It Li intellimouse
3204 Microsoft IntelliMouse (serial)
3205 .It Li mousesystems
3206 Mouse systems Corp.\& mouse (serial)
3207 .It Li mmseries
3208 MM Series mouse (serial)
3209 .It Li logitech
3210 Logitech mouse (serial)
3211 .It Li busmouse
3212 A bus mouse
3213 .It Li mouseman
3214 Logitech MouseMan and TrackMan (serial)
3215 .It Li glidepoint
3216 ALPS GlidePoint (serial)
3217 .It Li thinkingmouse
3218 Kensington ThinkingMouse (serial)
3219 .It Li ps/2
3220 PS/2 mouse
3221 .It Li mmhittab
3222 MM HitTablet (serial)
3223 .It Li x10mouseremote
3224 X10 MouseRemote (serial)
3225 .It Li versapad
3226 Interlink VersaPad (serial)
3227 .El
3228 .Pp
3229 Even if the mouse is not in the above list, it may be compatible
3230 with one in the list.
3231 Refer to the manual page for
3232 .Xr moused 8
3233 for compatibility information.
3234 .Pp
3235 It should also be noted that while this is enabled, any
3236 other client of the mouse (such as an X server) should access
3237 the mouse through the virtual mouse device,
3238 .Pa /dev/sysmouse ,
3239 and configure it as a
3240 .Dq Li sysmouse
3241 type mouse, since all
3242 mouse data is converted to this single canonical format when
3243 using
3244 .Xr moused 8 .
3245 If the client program does not support the
3246 .Dq Li sysmouse
3247 type,
3248 specify the
3249 .Dq Li mousesystems
3250 type.
3251 It is the second preferred type.
3252 .It Va moused_port
3253 .Pq Vt str
3254 If
3255 .Va moused_enable
3256 is set to
3257 .Dq Li YES ,
3258 this is the actual port the mouse is on.
3259 It might be
3260 .Pa /dev/cuau0
3261 for a COM1 serial mouse, or
3262 .Pa /dev/psm0
3263 for a PS/2 mouse, for example.
3264 .It Va moused_flags
3265 .Pq Vt str
3266 If
3267 .Va moused_flags
3268 is set, its value is used as an additional set of flags to pass to the
3269 .Xr moused 8
3270 daemon.
3271 .It Va "moused_" Ns Ar XXX Ns Va "_flags"
3272 When
3273 .Va moused_nondefault_enable
3274 is enabled, and a
3275 .Xr moused 8
3276 daemon is started for a non-default port, the
3277 .Va "moused_" Ns Ar XXX Ns Va "_flags"
3278 set of options has precedence over and replaces the default
3279 .Va moused_flags
3280 (where
3281 .Ar XXX
3282 is the name of the non-default port, i.e.,\&
3283 .Ar ums0 ) .
3284 By setting
3285 .Va "moused_" Ns Ar XXX Ns Va "_flags"
3286 it is possible to set up a different set of default flags for each
3287 .Xr moused 8
3288 instance.
3289 For example, you can use
3290 .Dq Li "-3"
3291 for the default
3292 .Va moused_flags
3293 to make your laptop's touchpad more comfortable to use,
3294 but an empty set of options for
3295 .Va moused_ums0_flags
3296 when your
3297 .Xr usb 4
3298 mouse has three or more buttons.
3299 .It Va mousechar_start
3300 .Pq Vt int
3301 If set to
3302 .Dq Li NO ,
3303 the default mouse cursor character range
3304 .Li 0xd0 Ns - Ns Li 0xd3
3305 is used,
3306 otherwise the range start is set
3307 to
3308 .Ar value
3309 character, see
3310 .Xr vidcontrol 1 .
3311 Use if the default range is occupied in the language code table.
3312 .It Va allscreens_flags
3313 .Pq Vt str
3314 If set,
3315 .Xr vidcontrol 1
3316 is run with these options for each of the virtual terminals
3317 .Pq Pa /dev/ttyv* .
3318 For example,
3319 .Dq Fl m Cm on
3320 will enable the mouse pointer on all virtual terminals
3321 if
3322 .Va moused_enable
3323 is set to
3324 .Dq Li YES .
3325 .It Va allscreens_kbdflags
3326 .Pq Vt str
3327 If set,
3328 .Xr kbdcontrol 1
3329 is run with these options for each of the virtual terminals
3330 .Pq Pa /dev/ttyv* .
3331 For example,
3332 .Dq Fl h Li 200
3333 will set the
3334 .Xr syscons 4
3335 or
3336 .Xr vt 4
3337 scrollback (history) buffer to 200 lines.
3338 .It Va cron_enable
3339 .Pq Vt bool
3340 If set to
3341 .Dq Li YES ,
3342 run the
3343 .Xr cron 8
3344 daemon at system boot time.
3345 .It Va cron_program
3346 .Pq Vt str
3347 Path to
3348 .Xr cron 8
3349 (default
3350 .Pa /usr/sbin/cron ) .
3351 .It Va cron_flags
3352 .Pq Vt str
3353 If
3354 .Va cron_enable
3355 is set to
3356 .Dq Li YES ,
3357 these are the flags to pass to
3358 .Xr cron 8 .
3359 .It Va cron_dst
3360 .Pq Vt bool
3361 If set to
3362 .Dq Li YES ,
3363 enable the special handling of transitions to and from the
3364 Daylight Saving Time in
3365 .Xr cron 8
3366 (equivalent to using the flag
3367 .Fl s ) .
3368 .It Va lpd_program
3369 .Pq Vt str
3370 Path to
3371 .Xr lpd 8
3372 (default
3373 .Pa /usr/sbin/lpd ) .
3374 .It Va lpd_enable
3375 .Pq Vt bool
3376 If set to
3377 .Dq Li YES ,
3378 run the
3379 .Xr lpd 8
3380 daemon at system boot time.
3381 .It Va lpd_flags
3382 .Pq Vt str
3383 If
3384 .Va lpd_enable
3385 is set to
3386 .Dq Li YES ,
3387 these are the flags to pass to the
3388 .Xr lpd 8
3389 daemon.
3390 .It Va chkprintcap_enable
3391 .Pq Vt bool
3392 If set to
3393 .Dq Li YES ,
3394 run the
3395 .Xr chkprintcap 8
3396 command before starting the
3397 .Xr lpd 8
3398 daemon.
3399 .It Va chkprintcap_flags
3400 .Pq Vt str
3401 If
3402 .Va lpd_enable
3403 and
3404 .Va chkprintcap_enable
3405 are set to
3406 .Dq Li YES ,
3407 these are the flags to pass to the
3408 .Xr chkprintcap 8
3409 program.
3410 The default is
3411 .Dq Li -d ,
3412 which causes missing directories to be created.
3413 .It Va mta_start_script
3414 .Pq Vt str
3415 This variable specifies the full path to the script to run to start
3416 a mail transfer agent.
3417 The default is
3418 .Pa /etc/rc.sendmail .
3419 The
3420 .Va sendmail_*
3421 variables which
3422 .Pa /etc/rc.sendmail
3423 uses are documented in the
3424 .Xr rc.sendmail 8
3425 manual page.
3426 .It Va dumpdev
3427 .Pq Vt str
3428 Indicates the device (usually a swap partition) to which a crash dump
3429 should be written in the event of a system crash.
3430 If the value of this variable is
3431 .Dq Li AUTO ,
3432 the first suitable swap device listed in
3433 .Pa /etc/fstab
3434 will be used as dump device.
3435 Otherwise, the value of this variable is passed as the argument to
3436 .Xr dumpon 8 .
3437 To disable crash dumps, set this variable to
3438 .Dq Li NO .
3439 .It Va dumpon_flags
3440 .Pq Vt str
3441 Flags to pass to
3442 .Xr dumpon 8
3443 when configuring
3444 .Va dumpdev
3445 as the system dump device.
3446 .It Va dumpdir
3447 .Pq Vt str
3448 When the system reboots after a crash and a crash dump is found on the
3449 device specified by the
3450 .Va dumpdev
3451 variable,
3452 .Xr savecore 8
3453 will save that crash dump and a copy of the kernel to the directory
3454 specified by the
3455 .Va dumpdir
3456 variable.
3457 The default value is
3458 .Pa /var/crash .
3459 Set to
3460 .Dq Li NO
3461 to not run
3462 .Xr savecore 8
3463 at boot time when
3464 .Va dumpdir
3465 is set.
3466 .It Va savecore_enable
3467 .Pq Vt bool
3468 If set to
3469 .Dq Li NO ,
3470 disable automatic extraction of the crash dump from the
3471 .Va dumpdev .
3472 .It Va savecore_flags
3473 .Pq Vt str
3474 If crash dumps are enabled, these are the flags to pass to the
3475 .Xr savecore 8
3476 utility.
3477 .It Va quota_enable
3478 .Pq Vt bool
3479 Set to
3480 .Dq Li YES
3481 to turn on user and group disk quotas on system startup via the
3482 .Xr quotaon 8
3483 command for all file systems marked as having quotas enabled in
3484 .Pa /etc/fstab .
3485 The kernel must be built with
3486 .Cd "options QUOTA"
3487 for disk quotas to function.
3488 .It Va check_quotas
3489 .Pq Vt bool
3490 Set to
3491 .Dq Li YES
3492 to enable user and group disk quota checking via the
3493 .Xr quotacheck 8
3494 command.
3495 .It Va quotacheck_flags
3496 .Pq Vt str
3497 If
3498 .Va quota_enable
3499 is set to
3500 .Dq Li YES ,
3501 and
3502 .Va check_quotas
3503 is set to
3504 .Dq Li YES ,
3505 these are the flags to pass to the
3506 .Xr quotacheck 8
3507 utility.
3508 The default is
3509 .Dq Li "-a" ,
3510 which checks quotas for all file systems with quotas enabled in
3511 .Pa /etc/fstab .
3512 .It Va quotaon_flags
3513 .Pq Vt str
3514 If
3515 .Va quota_enable
3516 is set to
3517 .Dq Li YES ,
3518 these are the flags to pass to the
3519 .Xr quotaon 8
3520 utility.
3521 The default is
3522 .Dq Li "-a" ,
3523 which enables quotas for all file systems with quotas enabled in
3524 .Pa /etc/fstab .
3525 .It Va quotaoff_flags
3526 .Pq Vt str
3527 If
3528 .Va quota_enable
3529 is set to
3530 .Dq Li YES ,
3531 these are the flags to pass to the
3532 .Xr quotaoff 8
3533 utility when shutting down the quota system.
3534 The default is
3535 .Dq Li "-a" ,
3536 which disables quotas for all file systems with quotas enabled in
3537 .Pa /etc/fstab .
3538 .It Va accounting_enable
3539 .Pq Vt bool
3540 Set to
3541 .Dq Li YES
3542 to enable system accounting through the
3543 .Xr accton 8
3544 facility.
3545 .It Va firstboot_sentinel
3546 .Pq Vt str
3547 This variable specifies the full path to a
3548 .Dq first boot
3549 sentinel file.
3550 If a file exists with this path,
3551 .Pa rc.d
3552 scripts with the
3553 .Dq firstboot
3554 keyword will be run on startup and the sentinel file will be deleted
3555 after the boot process completes.
3556 The sentinel file must be located on a writable file system which is
3557 mounted no later than
3558 .Va early_late_divider
3559 to function properly.
3560 The default is
3561 .Pa /firstboot .
3562 .It Va linux_enable
3563 .Pq Vt bool
3564 Set to
3565 .Dq Li YES
3566 to enable Linux/ELF binary emulation at system initial
3567 boot time.
3568 .It Va sysvipc_enable
3569 .Pq Vt bool
3570 If set to
3571 .Dq Li YES ,
3572 load System V IPC primitives at boot time.
3573 .It Va clear_tmp_enable
3574 .Pq Vt bool
3575 Set to
3576 .Dq Li YES
3577 to have
3578 .Pa /tmp
3579 cleaned at startup.
3580 .It Va clear_tmp_X
3581 .Pq Vt bool
3582 Set to
3583 .Dq Li NO
3584 to disable removing of X11 lock files,
3585 and the removal and (secure) recreation
3586 of the various socket directories for X11
3587 related programs.
3588 .It Va ldconfig_paths
3589 .Pq Vt str
3590 Set to the list of shared library paths to use with
3591 .Xr ldconfig 8 .
3592 NOTE:
3593 .Pa /usr/lib
3594 will always be added first, so it need not appear in this list.
3595 .It Va ldconfig32_paths
3596 .Pq Vt str
3597 Set to the list of 32-bit compatibility shared library paths to
3598 use with
3599 .Xr ldconfig 8 .
3600 .It Va ldconfig_paths_aout
3601 .Pq Vt str
3602 Set to the list of shared library paths to use with
3603 .Xr ldconfig 8
3604 legacy
3605 .Xr a.out 5
3606 support.
3607 .It Va ldconfig_insecure
3608 .Pq Vt bool
3609 The
3610 .Xr ldconfig 8
3611 utility normally refuses to use directories
3612 which are writable by anyone except root.
3613 Set this variable to
3614 .Dq Li YES
3615 to disable that security check during system startup.
3616 .It Va ldconfig_local_dirs
3617 .Pq Vt str
3618 Set to the list of local
3619 .Xr ldconfig 8
3620 directories.
3621 The names of all files in the directories listed will be
3622 passed as arguments to
3623 .Xr ldconfig 8 .
3624 .It Va ldconfig_local32_dirs
3625 .Pq Vt str
3626 Set to the list of local 32-bit compatibility
3627 .Xr ldconfig 8
3628 directories.
3629 The names of all files in the directories listed will be
3630 passed as arguments to
3631 .Dq Nm ldconfig Fl 32 .
3632 .It Va kern_securelevel_enable
3633 .Pq Vt bool
3634 Set to
3635 .Dq Li YES
3636 to set the kernel security level at system startup.
3637 .It Va kern_securelevel
3638 .Pq Vt int
3639 The kernel security level to set at startup.
3640 The allowed range of
3641 .Ar value
3642 ranges from \-1 (the compile time default) to 3 (the
3643 most secure).
3644 See
3645 .Xr security 7
3646 for the list of possible security levels and their effect
3647 on system operation.
3648 .It Va sshd_program
3649 .Pq Vt str
3650 Path to the SSH server program
3651 .Pa ( /usr/sbin/sshd
3652 is the default).
3653 .It Va sshd_enable
3654 .Pq Vt bool
3655 Set to
3656 .Dq Li YES
3657 to start
3658 .Xr sshd 8
3659 at system boot time.
3660 .It Va sshd_flags
3661 .Pq Vt str
3662 If
3663 .Va sshd_enable
3664 is set to
3665 .Dq Li YES ,
3666 these are the flags to pass to the
3667 .Xr sshd 8
3668 daemon.
3669 .It Va ftpd_program
3670 .Pq Vt str
3671 Path to the FTP server program
3672 .Pa ( /usr/libexec/ftpd
3673 is the default).
3674 .It Va ftpd_enable
3675 .Pq Vt bool
3676 Set to
3677 .Dq Li YES
3678 to start
3679 .Xr ftpd 8
3680 as a stand-alone daemon at system boot time.
3681 .It Va ftpd_flags
3682 .Pq Vt str
3683 If
3684 .Va ftpd_enable
3685 is set to
3686 .Dq Li YES ,
3687 these are the additional flags to pass to the
3688 .Xr ftpd 8
3689 daemon.
3690 .It Va watchdogd_enable
3691 .Pq Vt bool
3692 If set to
3693 .Dq Li YES ,
3694 start the
3695 .Xr watchdogd 8
3696 daemon at boot time.
3697 This requires that the kernel have been compiled with a
3698 .Xr watchdog 4
3699 compatible device.
3700 .It Va watchdogd_flags
3701 .Pq Vt str
3702 If
3703 .Va watchdogd_enable
3704 is set to
3705 .Dq Li YES ,
3706 these are the flags passed to the
3707 .Xr watchdogd 8
3708 daemon.
3709 .It Va devfs_rulesets
3710 .Pq Vt str
3711 List of files containing sets of rules for
3712 .Xr devfs 8 .
3713 .It Va devfs_system_ruleset
3714 .Pq Vt str
3715 Rule name(s) to apply to the system
3716 .Pa /dev
3717 itself.
3718 .It Va devfs_set_rulesets
3719 .Pq Vt str
3720 Pairs of already-mounted
3721 .Pa dev
3722 directories and rulesets that should be applied to them.
3723 For example: /mount/dev=ruleset_name
3724 .It Va devfs_load_rulesets
3725 .Pq Vt bool
3726 If set, always load the default rulesets listed in
3727 .Va devfs_rulesets .
3728 .It Va performance_cx_lowest
3729 .Pq Vt str
3730 CPU idle state to use while on AC power.
3731 The string
3732 .Dq Li LOW
3733 indicates that
3734 .Xr acpi 4
3735 should use the lowest power state available while
3736 .Dq Li HIGH
3737 indicates that the lowest latency state (less power savings) should be used.
3738 .It Va performance_cpu_freq
3739 .Pq Vt str
3740 CPU clock frequency to use while on AC power.
3741 The string
3742 .Dq Li LOW
3743 indicates that
3744 .Xr cpufreq 4
3745 should use the lowest frequency available while
3746 .Dq Li HIGH
3747 indicates that the highest frequency (less power savings) should be used.
3748 .It Va economy_cx_lowest
3749 .Pq Vt str
3750 CPU idle state to use when off AC power.
3751 The string
3752 .Dq Li LOW
3753 indicates that
3754 .Xr acpi 4
3755 should use the lowest power state available while
3756 .Dq Li HIGH
3757 indicates that the lowest latency state (less power savings) should be used.
3758 .It Va economy_cpu_freq
3759 .Pq Vt str
3760 CPU clock frequency to use when off AC power.
3761 The string
3762 .Dq Li LOW
3763 indicates that
3764 .Xr cpufreq 4
3765 should use the lowest frequency available while
3766 .Dq Li HIGH
3767 indicates that the highest frequency (less power savings) should be used.
3768 .It Va jail_enable
3769 .Pq Vt bool
3770 If set to
3771 .Dq Li NO ,
3772 any configured jails will not be started.
3773 .It Va jail_conf
3774 .Pq Vt str
3775 The configuration filename used by
3776 .Xr jail 8
3777 utility.
3778 The default value is
3779 .Pa /etc/jail.conf .
3780 .It Va jail_parallel_start
3781 .Pq Vt bool
3782 If set to
3783 .Dq Li YES ,
3784 all configured jails will be started in the background (in parallel).
3785 .It Va jail_flags
3786 .Pq Vt str
3787 Unset by default.
3788 When set, use as default value for
3789 .Va jail_ Ns Ao Ar jname Ac Ns Va _flags
3790 for every jail in
3791 .Va jail_list .
3792 .It Va jail_list
3793 .Pq Vt str
3794 A space-delimited list of jail names.
3795 When left empty, all of the
3796 .Xr jail 8
3797 instances defined in the configuration file are started.
3798 The names specified in this list control the jail startup order.
3799 .Xr jail 8
3800 instances missing from
3801 .Va jail_list
3802 must be started manually.
3803 Note that a jail's
3804 .Va depend
3805 parameter in the configuration file may override this list.
3806 .It Va jail_reverse_stop
3807 .Pq Vt bool
3808 When set to
3809 .Dq Li YES ,
3810 all configured jails in
3811 .Va jail_list
3812 are stopped in reverse order.
3813 .It Va jail_* variables
3814 Note that older releases supported per-jail configuration via
3815 .Nm
3816 variables.
3817 For example,
3818 hostname of a jail named
3819 .Li vjail
3820 was able to be set by
3821 .Li jail_vjail_hostname .
3822 These per-jail configuration variables are now obsolete in favor of
3823 .Xr jail 8
3824 configuration file.
3825 For backward compatibility,
3826 when per-jail configuration variables are defined,
3827 .Xr jail 8
3828 configuration files are created as
3829 .Pa /var/run/jail. Ns Ao Ar jname Ac Ns Pa .conf
3830 and used.
3831 .Pp
3832 The following per-jail parameters are handled by
3833 .Pa rc.d/jail
3834 script out of their corresponding
3835 .Nm
3836 variables.
3837 In addition to them, parameters in
3838 .Va jail_ Ns Ao Ar jname Ac Ns Va _parameters
3839 will be added to the configuration file.
3840 They must be a semi-colon
3841 .Pq Ql \&;
3842 delimited list of
3843 .Dq key=value .
3844 For more details,
3845 see
3846 .Xr jail 8
3847 manual page.
3848 .Bl  -tag -width "host.hostname" -offset indent
3849 .It Li path
3850 set from
3851 .Va jail_ Ns Ao Ar jname Ac Ns Va _rootdir
3852 .It Li host.hostname
3853 set from
3854 .Va jail_ Ns Ao Ar jname Ac Ns Va _hostname
3855 .It Li exec.consolelog
3856 set from
3857 .Va jail_ Ns Ao Ar jname Ac Ns Va _consolelog .
3858 The default value is
3859 .Pa /var/log/jail_ Ao Ar jname Ac Pa _console.log .
3860 .It Li interface
3861 set from
3862 .Va jail_ Ns Ao Ar jname Ac Ns Va _interface .
3863 .It Li vnet.interface
3864 set from
3865 .Va jail_ Ns Ao Ar jname Ac Ns Va _vnet_interface .
3866 This implies
3867 .Li vnet
3868 parameter will be enabled and cannot be specified with
3869 .Va jail_ Ns Ao Ar jname Ac Ns Va _interface ,
3870 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip
3871 and/or
3872 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip_multi Ns Aq Ar n
3873 at the same time.
3874 .It Li fstab
3875 set from
3876 .Va jail_ Ns Ao Ar jname Ac Ns Va _fstab
3877 .It Li mount
3878 set from
3879 .Va jail_ Ns Ao Ar jname Ac Ns Va _procfs_enable .
3880 .It Li exec.fib
3881 set from
3882 .Va jail_ Ns Ao Ar jname Ac Ns Va _fib
3883 .It Li exec.start
3884 set from
3885 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_start .
3886 The parameter name was
3887 .Li command
3888 in some older releases.
3889 .It Li exec.prestart
3890 set from
3891 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_prestart
3892 .It Li exec.poststart
3893 set from
3894 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_poststart
3895 .It Li exec.stop
3896 set from
3897 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_stop
3898 .It Li exec.prestop
3899 set from
3900 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_prestop
3901 .It Li exec.poststop
3902 set from
3903 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_poststop
3904 .It Li ip4.addr
3905 set if
3906 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip
3907 or
3908 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip_multi Ns Aq Ar n
3909 contain IPv4 addresses
3910 .It Li ip6.addr
3911 set if
3912 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip
3913 or
3914 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip_multi Ns Aq Ar n
3915 contain IPv6 addresses
3916 .It Li allow.mount
3917 set from
3918 .Va jail_ Ns Ao Ar jname Ac Ns Va _mount_enable
3919 .It Li mount.devfs
3920 set from
3921 .Va jail_ Ns Ao Ar jname Ac Ns Va _devfs_enable
3922 .It Li devfs_ruleset
3923 set from
3924 .Va jail_ Ns Ao Ar jname Ac Ns Va _devfs_ruleset .
3925 This must be an integer,
3926 not a string.
3927 .It Li mount.fdescfs
3928 set from
3929 .Va jail_ Ns Ao Ar jname Ac Ns Va _fdescfs_enable
3930 .It Li allow.set_hostname
3931 set from
3932 .Va jail_ Ns Ao Ar jname Ac Ns Va _set_hostname_allow
3933 .It Li allow.rawsocket
3934 set from
3935 .Va jail_ Ns Ao Ar jname Ac Ns Va _socket_unixiproute_only
3936 .It Li allow.sysvipc
3937 set from
3938 .Va jail_ Ns Ao Ar jname Ac Ns Va _sysvipc_allow
3939 .El
3940 .\" -----------------------------------------------------
3941 .It Va harvest_mask
3942 .Pq Vt int
3943 Set to a bit-mask
3944 representing the entropy sources
3945 you wish to harvest.
3946 Refer to
3947 .Xr random 4
3948 for more information.
3949 .It Va entropy_dir
3950 .Pq Vt str
3951 Set to
3952 .Dq Li NO
3953 to disable caching entropy via
3954 .Xr cron 8 .
3955 Otherwise set to the directory
3956 in which the entropy files are stored.
3957 To be useful,
3958 there must be
3959 a system cron job
3960 that regularly writes and rotates
3961 files here.
3962 All files found
3963 will be used at boot time.
3964 The default is
3965 .Pa /var/db/entropy .
3966 .It Va entropy_file
3967 .Pq Vt str
3968 Set to
3969 .Dq Li NO
3970 to disable caching entropy through reboots.
3971 Otherwise set to the name
3972 of a file used to store cached entropy.
3973 This file should be located
3974 on a file system that is readable
3975 before all the volumes specified in
3976 .Xr fstab 5
3977 are mounted.
3978 By default,
3979 .Pa /entropy
3980 is used,
3981 but if
3982 .Pa /var/db/entropy-file
3983 is found it will also be used.
3984 This will be of some use to
3985 .Xr bsdinstall 8 .
3986 .It Va entropy_boot_file
3987 .Pq Vt str
3988 Set to
3989 .Dq Li NO
3990 to disable
3991 very early caching entropy
3992 through reboots.
3993 Otherwise set to the filename
3994 used to read
3995 very early reboot cached entropy.
3996 This file should be located where
3997 .Xr loader 8
3998 can read it.
3999 See also
4000 .Xr loader.conf 5 .
4001 The default location is
4002 .Pa /boot/entropy .
4003 .It Va entropy_save_sz
4004 .Pq Vt int
4005 Size of the entropy cache files saved by
4006 .Nm save-entropy
4007 periodically.
4008 .It Va entropy_save_num
4009 .Pq Vt int
4010 Number of entropy cache files to save by
4011 .Nm save-entropy
4012 periodically.
4013 .It Va ipsec_enable
4014 .Pq Vt bool
4015 Set to
4016 .Dq Li YES
4017 to run
4018 .Xr setkey 8
4019 on
4020 .Va ipsec_file
4021 at boot time.
4022 .It Va ipsec_file
4023 .Pq Vt str
4024 Configuration file for
4025 .Xr setkey 8 .
4026 .It Va dmesg_enable
4027 .Pq Vt bool
4028 Set to
4029 .Dq Li YES
4030 to save
4031 .Xr dmesg 8
4032 to
4033 .Pa /var/run/dmesg.boot
4034 on boot.
4035 .It Va rcshutdown_timeout
4036 .Pq Vt int
4037 If set, start a watchdog timer in the background which will terminate
4038 .Pa rc.shutdown
4039 if
4040 .Xr shutdown 8
4041 has not completed within the specified time (in seconds).
4042 Notice that in addition to this soft timeout,
4043 .Xr init 8
4044 also applies a hard timeout for the execution of
4045 .Pa rc.shutdown .
4046 This is configured via
4047 .Xr sysctl 8
4048 variable
4049 .Va kern.init_shutdown_timeout
4050 and defaults to 120 seconds.
4051 Setting the value of
4052 .Va rcshutdown_timeout
4053 to more than 120 seconds will have no effect until the
4054 .Xr sysctl 8
4055 variable
4056 .Va kern.init_shutdown_timeout
4057 is also increased.
4058 .It Va virecover_enable
4059 .Pq Vt bool
4060 Set to
4061 .Dq Li NO
4062 to prevent the system from trying to
4063 recover pre-maturely terminated
4064 .Xr vi 1
4065 sessions.
4066 .It Va ugidfw_enable
4067 .Pq Vt bool
4068 Set to
4069 .Dq Li YES
4070 to load the
4071 .Xr mac_bsdextended 4
4072 module upon system initialization and load a default
4073 ruleset file.
4074 .It Va bsdextended_script
4075 .Pq Vt str
4076 The default
4077 .Xr mac_bsdextended 4
4078 ruleset file to load.
4079 The default value of this variable is
4080 .Pa /etc/rc.bsdextended .
4081 .It Va newsyslog_enable
4082 .Pq Vt bool
4083 If set to
4084 .Dq Li YES ,
4085 run
4086 .Xr newsyslog 8
4087 command at startup.
4088 .It Va newsyslog_flags
4089 .Pq Vt str
4090 If
4091 .Va newsyslog_enable
4092 is set to
4093 .Dq Li YES ,
4094 these are the flags to pass to the
4095 .Xr newsyslog 8
4096 program.
4097 The default is
4098 .Dq Li -CN ,
4099 which causes log files flagged with a
4100 .Cm C
4101 to be created.
4102 .It Va mdconfig_md Ns Aq Ar X
4103 .Pq Vt str
4104 Arguments to
4105 .Xr mdconfig 8
4106 for
4107 .Xr md 4
4108 device
4109 .Ar X .
4110 At minimum a
4111 .Fl t Ar type
4112 must be specified and either a
4113 .Fl s Ar size
4114 for malloc or swap backed
4115 .Xr md 4
4116 devices or a
4117 .Fl f Ar file
4118 for vnode backed
4119 .Xr md 4
4120 devices.
4121 Note that
4122 .Va mdconfig_md Ns Aq Ar X
4123 variables are evaluated until one variable is unset or null.
4124 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _newfs
4125 .Pq Vt str
4126 Optional arguments passed to
4127 .Xr newfs 8
4128 to initialize
4129 .Xr md 4
4130 device
4131 .Ar X .
4132 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _owner
4133 .Pq Vt str
4134 An ownership specification passed to
4135 .Xr chown 8
4136 after the specified
4137 .Xr md 4
4138 device
4139 .Ar X
4140 has been mounted.
4141 Both the
4142 .Xr md 4
4143 device and the mount point will be changed.
4144 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _perms
4145 .Pq Vt str
4146 A mode string passed to
4147 .Xr chmod 1
4148 after the specified
4149 .Xr md 4
4150 device
4151 .Ar X
4152 has been mounted.
4153 Both the
4154 .Xr md 4
4155 device and the mount point will be changed.
4156 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _files
4157 .Pq Vt str
4158 Files to be copied to the mount point of the
4159 .Xr md 4
4160 device
4161 .Ar X
4162 after it has been mounted.
4163 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _cmd
4164 .Pq Vt str
4165 Command to execute after the specified
4166 .Xr md 4
4167 device
4168 .Ar X
4169 has been mounted.
4170 Note that the command is passed to
4171 .Ic eval
4172 and that both
4173 .Va _dev
4174 and
4175 .Va _mp
4176 variables can be used to reference respectively the
4177 .Xr md 4
4178 device and the mount point.
4179 Assuming that the
4180 .Xr md 4
4181 device is
4182 .Li md0 ,
4183 one could set the following:
4184 .Bd -literal
4185 mdconfig_md0_cmd="tar xfzC /var/file.tgz \e${_mp}"
4186 .Ed
4187 .It Va autobridge_interfaces
4188 .Pq Vt str
4189 Set to the list of bridge interfaces that will have newly arriving interfaces
4190 checked against to be automatically added.
4191 If not set to
4192 .Dq Li NO
4193 then for each whitespace separated
4194 .Ar element
4195 in the value, a
4196 .Va autobridge_ Ns Aq Ar element
4197 variable is assumed to exist which has a whitespace separated list of interface
4198 names to match, these names can use wildcards.
4199 For example:
4200 .Bd -literal
4201 autobridge_interfaces="bridge0"
4202 autobridge_bridge0="tap* dc0 vlan[345]"
4203 .Ed
4204 .It Va mixer_enable
4205 .Pq Vt bool
4206 If set to
4207 .Dq Li YES ,
4208 enable support for sound mixer.
4209 .It Va hcsecd_enable
4210 .Pq Vt bool
4211 If set to
4212 .Dq Li YES ,
4213 enable Bluetooth security daemon.
4214 .It Va hcsecd_config
4215 .Pq Vt str
4216 Configuration file for
4217 .Xr hcsecd 8 .
4218 Default
4219 .Pa /etc/bluetooth/hcsecd.conf .
4220 .It Va sdpd_enable
4221 .Pq Vt bool
4222 If set to
4223 .Dq Li YES ,
4224 enable Bluetooth Service Discovery Protocol daemon.
4225 .It Va sdpd_control
4226 .Pq Vt str
4227 Path to
4228 .Xr sdpd 8
4229 control socket.
4230 Default
4231 .Pa /var/run/sdp .
4232 .It Va sdpd_groupname
4233 .Pq Vt str
4234 Sets
4235 .Xr sdpd 8
4236 group to run as after it initializes.
4237 Default
4238 .Dq Li nobody .
4239 .It Va sdpd_username
4240 .Pq Vt str
4241 Sets
4242 .Xr sdpd 8
4243 user to run as after it initializes.
4244 Default
4245 .Dq Li nobody .
4246 .It Va bthidd_enable
4247 .Pq Vt bool
4248 If set to
4249 .Dq Li YES ,
4250 enable Bluetooth Human Interface Device daemon.
4251 .It Va bthidd_config
4252 .Pq Vt str
4253 Configuration file for
4254 .Xr bthidd 8 .
4255 Default
4256 .Pa /etc/bluetooth/bthidd.conf .
4257 .It Va bthidd_hids
4258 .Pq Vt str
4259 Path to a file, where
4260 .Xr bthidd 8
4261 will store information about known HID devices.
4262 Default
4263 .Pa /var/db/bthidd.hids .
4264 .It Va rfcomm_pppd_server_enable
4265 .Pq Vt bool
4266 If set to
4267 .Dq Li YES ,
4268 enable Bluetooth RFCOMM PPP wrapper daemon.
4269 .It Va rfcomm_pppd_server_profile
4270 .Pq Vt str
4271 The name of the profile to use from
4272 .Pa /etc/ppp/ppp.conf .
4273 Multiple profiles can be specified here.
4274 Also used to specify per-profile overrides.
4275 When the profile name contains any of the characters
4276 .Dq Li .-/+
4277 they are translated to
4278 .Dq Li _
4279 for the proposes of the override variable names.
4280 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _bdaddr
4281 .Pq Vt str
4282 Overrides local address to listen on.
4283 By default
4284 .Xr rfcomm_pppd 8
4285 will listen on
4286 .Dq Li ANY
4287 address.
4288 The address can be specified as BD_ADDR or name.
4289 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _channel
4290 .Pq Vt str
4291 Overrides local RFCOMM channel to listen on.
4292 By default
4293 .Xr rfcomm_pppd 8
4294 will listen on RFCOMM channel 1.
4295 Must set properly if multiple profiles used in the same time.
4296 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _register_sp
4297 .Pq Vt bool
4298 Tells
4299 .Xr rfcomm_pppd 8
4300 if it should register Serial Port service on the specified RFCOMM channel.
4301 Default
4302 .Dq Li NO .
4303 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _register_dun
4304 .Pq Vt bool
4305 Tells
4306 .Xr rfcomm_pppd 8
4307 if it should register Dial-Up Networking service on the specified
4308 RFCOMM channel.
4309 Default
4310 .Dq Li NO .
4311 .It Va ubthidhci_enable
4312 .Pq Vt bool
4313 If set to
4314 .Dq Li YES ,
4315 change the USB Bluetooth controller from HID mode to HCI mode.
4316 You also need to specify the location of USB Bluetooth controller with the
4317 .Va ubthidhci_busnum
4318 and
4319 .Va ubthidhci_addr
4320 variables.
4321 .It Va ubthidhci_busnum
4322 Bus number where the USB Bluetooth controller is located.
4323 Check the output of
4324 .Xr usbconfig 8
4325 on your system to find this information.
4326 .It Va ubthidhci_addr
4327 Bus address of the USB Bluetooth controller.
4328 Check the output of
4329 .Xr usbconfig 8
4330 on your system to find this information.
4331 .It Va netwait_enable
4332 .Pq Vt bool
4333 If set to
4334 .Dq Li YES ,
4335 delays the start of network-reliant services until
4336 .Va netwait_if
4337 is up and ICMP packets to a destination defined in
4338 .Va netwait_ip
4339 are flowing.
4340 Link state is examined first, followed by
4341 .Dq Li pinging
4342 an IP address to verify network usability.
4343 If no destination can be reached or timeouts are exceeded,
4344 network services are started anyway with no guarantee that
4345 the network is usable.
4346 Use of this variable requires both
4347 .Va netwait_ip
4348 and
4349 .Va netwait_if
4350 to be set.
4351 .It Va netwait_ip
4352 .Pq Vt str
4353 Empty by default.
4354 This variable contains a space-delimited list of IP addresses to
4355 .Xr ping 8 .
4356 DNS hostnames should not be used as resolution is not guaranteed
4357 to be functional at this point.
4358 If multiple IP addresses are specified,
4359 each will be tried until one is successful or the list is exhausted.
4360 .It Va netwait_timeout
4361 .Pq Vt int
4362 Indicates the total number of seconds to perform a
4363 .Dq Li ping
4364 against each IP address in
4365 .Va netwait_ip ,
4366 at a rate of one ping per second.
4367 If any of the pings are successful,
4368 full network connectivity is considered reliable.
4369 The default is 60.
4370 .It Va netwait_if
4371 .Pq Vt str
4372 Empty by default.
4373 Defines the name of the network interface on which watch for link.
4374 .Xr ifconfig 8
4375 is used to monitor the interface, looking for
4376 .Dq Li status: no carrier .
4377 Once gone, the link is considered up.
4378 This can be a
4379 .Xr vlan 4
4380 interface if desired.
4381 .It Va netwait_if_timeout
4382 .Pq Vt int
4383 Defines the total number of seconds to wait for link to become usable,
4384 polled at a 1-second interval.
4385 The default is 30.
4386 .It Va rctl_enable
4387 .Pq Vt bool
4388 If set to
4389 .Dq Li YES ,
4390 load
4391 .Xr rctl 8
4392 rules from the defined ruleset.
4393 The kernel must be built with
4394 .Cd "options RACCT"
4395 and
4396 .Cd "options RCTL" .
4397 .It Va rctl_rules
4398 .Pq Vt str
4399 Set to
4400 .Pa /etc/rctl.conf
4401 by default.
4402 This variables contains the
4403 .Xr rctl.conf 5
4404 ruleset to load for
4405 .Xr rctl 8 .
4406 .It Va iovctl_files
4407 .Pq Vt str
4408 A space-separated list of configuration files used by
4409 .Xr iovctl 8 .
4410 The default value is an empty string.
4411 .It Va autofs_enable
4412 .Pq Vt bool
4413 If set to
4414 .Dq Li YES ,
4415 start the
4416 .Xr automount 8
4417 utility and the
4418 .Xr automountd 8
4419 and
4420 .Xr autounmountd 8
4421 daemons at boot time.
4422 .It Va automount_flags
4423 .Pq Vt str
4424 If
4425 .Va autofs_enable
4426 is set to
4427 .Dq Li YES ,
4428 these are the flags to pass to the
4429 .Xr automount 8
4430 program.
4431 By default no flags are passed.
4432 .It Va automountd_flags
4433 .Pq Vt str
4434 If
4435 .Va autofs_enable
4436 is set to
4437 .Dq Li YES ,
4438 these are the flags to pass to the
4439 .Xr automountd 8
4440 daemon.
4441 By default no flags are passed.
4442 .It Va autounmountd_flags
4443 .Pq Vt str
4444 If
4445 .Va autofs_enable
4446 is set to
4447 .Dq Li YES ,
4448 these are the flags to pass to the
4449 .Xr autounmountd 8
4450 daemon.
4451 By default no flags are passed.
4452 .It Va ctld_enable
4453 .Pq Vt bool
4454 If set to
4455 .Dq Li YES ,
4456 start the
4457 .Xr ctld 8
4458 daemon at boot time.
4459 .It Va iscsid_enable
4460 .Pq Vt bool
4461 If set to
4462 .Dq Li YES ,
4463 start the
4464 .Xr iscsid 8
4465 daemon at boot time.
4466 .It Va iscsictl_enable
4467 .Pq Vt bool
4468 If set to
4469 .Dq Li YES ,
4470 start the
4471 .Xr iscsictl 8
4472 utility at boot time.
4473 .It Va iscsictl_flags
4474 .Pq Vt str
4475 If
4476 .Va iscsictl_enable
4477 is set to
4478 .Dq Li YES ,
4479 these are the flags to pass to the
4480 .Xr iscsictl 8
4481 program.
4482 The default is
4483 .Dq Li -Aa ,
4484 which configures sessions based on the
4485 .Pa /etc/iscsi.conf
4486 configuration file.
4487 .It Va cfumass_enable
4488 .Pq Vt bool
4489 If set to
4490 .Dq Li YES ,
4491 create and export an USB LUN using
4492 .Xr cfumass 4
4493 at boot time.
4494 .It Va cfumass_dir
4495 .Pq Vt str
4496 The directory where the files exported by USB LUN are located.
4497 The default directory is
4498 .Pa /var/cfumass .
4499 .It Va service_delete_empty
4500 .Pq Vt bool
4501 If set to
4502 .Dq Li YES ,
4503 .Ql Li service delete
4504 removes empty
4505 .Dq Li rc.conf.d
4506 files.
4507 .El
4508 .Sh FILES
4509 .Bl -tag -width ".Pa /etc/defaults/rc.conf" -compact
4510 .It Pa /etc/defaults/rc.conf
4511 .It Pa /etc/rc.conf
4512 .It Pa /etc/rc.conf.local
4513 .El
4514 .Sh SEE ALSO
4515 .Xr chmod 1 ,
4516 .Xr gdb 1 ,
4517 .Xr info 1 ,
4518 .Xr kbdcontrol 1 ,
4519 .Xr makewhatis 1 ,
4520 .Xr sh 1 ,
4521 .Xr vi 1 ,
4522 .Xr vidcontrol 1 ,
4523 .Xr bridge 4 ,
4524 .Xr dummynet 4 ,
4525 .Xr ip 4 ,
4526 .Xr ipf 4 ,
4527 .Xr ipfw 4 ,
4528 .Xr ipnat 4 ,
4529 .Xr kld 4 ,
4530 .Xr pf 4 ,
4531 .Xr pflog 4 ,
4532 .Xr pfsync 4 ,
4533 .Xr tcp 4 ,
4534 .Xr udp 4 ,
4535 .Xr exports 5 ,
4536 .Xr fstab 5 ,
4537 .Xr ipf 5 ,
4538 .Xr ipnat 5 ,
4539 .Xr jail.conf 5 ,
4540 .Xr loader.conf 5 ,
4541 .Xr motd 5 ,
4542 .Xr newsyslog.conf 5 ,
4543 .Xr pf.conf 5 ,
4544 .Xr security 7 ,
4545 .Xr accton 8 ,
4546 .Xr amd 8 ,
4547 .Xr apm 8 ,
4548 .Xr bsdinstall 8 ,
4549 .Xr bthidd 8 ,
4550 .Xr chkprintcap 8 ,
4551 .Xr chown 8 ,
4552 .Xr cron 8 ,
4553 .Xr devfs 8 ,
4554 .Xr dhclient 8 ,
4555 .Xr ftpd 8 ,
4556 .Xr geli 8 ,
4557 .Xr hcsecd 8 ,
4558 .Xr ifconfig 8 ,
4559 .Xr inetd 8 ,
4560 .Xr iovctl 8 ,
4561 .Xr ipf 8 ,
4562 .Xr ipfw 8 ,
4563 .Xr ipnat 8 ,
4564 .Xr jail 8 ,
4565 .Xr kldxref 8 ,
4566 .Xr loader 8 ,
4567 .Xr lpd 8 ,
4568 .Xr mdconfig 8 ,
4569 .Xr mdmfs 8 ,
4570 .Xr mixer 8 ,
4571 .Xr mountd 8 ,
4572 .Xr moused 8 ,
4573 .Xr newfs 8 ,
4574 .Xr newsyslog 8 ,
4575 .Xr nfsd 8 ,
4576 .Xr ntpd 8 ,
4577 .Xr ntpdate 8 ,
4578 .Xr pfctl 8 ,
4579 .Xr pflogd 8 ,
4580 .Xr ping 8 ,
4581 .Xr powerd 8 ,
4582 .Xr quotacheck 8 ,
4583 .Xr quotaon 8 ,
4584 .Xr rc 8 ,
4585 .Xr rc.sendmail 8 ,
4586 .Xr rfcomm_pppd 8 ,
4587 .Xr route 8 ,
4588 .Xr routed 8 ,
4589 .Xr rpc.lockd 8 ,
4590 .Xr rpc.statd 8 ,
4591 .Xr rpcbind 8 ,
4592 .Xr rwhod 8 ,
4593 .Xr savecore 8 ,
4594 .Xr sdpd 8 ,
4595 .Xr service 8 ,
4596 .Xr sshd 8 ,
4597 .Xr swapon 8 ,
4598 .Xr sysctl 8 ,
4599 .Xr syslogd 8 ,
4600 .Xr sysrc 8 ,
4601 .Xr timed 8 ,
4602 .Xr unbound 8 ,
4603 .Xr usbconfig 8 ,
4604 .Xr wlandebug 8 ,
4605 .Xr yp 8 ,
4606 .Xr ypbind 8 ,
4607 .Xr ypserv 8 ,
4608 .Xr ypset 8
4609 .Sh HISTORY
4610 The
4611 .Nm
4612 file appeared in
4613 .Fx 2.2.2 .
4614 .Sh AUTHORS
4615 .An Jordan K. Hubbard .