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