]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/man/man5/rc.conf.5
MFH (r270392, r270676, r270679, r270698): add support for subdirectories in rc.conf.d
[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 .Pp
1163 In the case of
1164 .Li 192.0.2.5-23/24 ,
1165 the address 192.0.2.5 will be configured with the
1166 netmask /24 and the addresses 192.0.2.6 to 192.0.2.23 with
1167 the non-conflicting netmask /32 as explained in the
1168 .Xr ifconfig 8
1169 alias section.
1170 Note that this special netmask handling is only for
1171 .Li inet ,
1172 not for the other address families such as
1173 .Li inet6 .
1174 .Pp
1175 With the interface in question being
1176 .Li ed0 ,
1177 an example could look like:
1178 .Bd -literal
1179 ifconfig_ed0_alias2="inet 192.0.2.129/27"
1180 ifconfig_ed0_alias3="inet 192.0.2.1-5/28"
1181 .Ed
1182 .Pp
1183 and so on.
1184 .Pp
1185 Note that
1186 .Va ipv4_addrs_ Ns Aq Ar interface
1187 variable was supported for IPv4 CIDR address notation.
1188 It is now deprecated because the functionality was integrated into
1189 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1190 though
1191 .Va ipv4_addrs_ Ns Aq Ar interface
1192 is still supported for backward compatibility.
1193 .Pp
1194 For each
1195 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1196 entry with an address family keyword,
1197 its contents are passed to
1198 .Xr ifconfig 8 .
1199 Execution stops at the first unsuccessful access, so if
1200 something like this is present:
1201 .Bd -literal
1202 ifconfig_ed0_alias0="inet 127.0.0.251 netmask 0xffffffff"
1203 ifconfig_ed0_alias1="inet 127.0.0.252 netmask 0xffffffff"
1204 ifconfig_ed0_alias2="inet 127.0.0.253 netmask 0xffffffff"
1205 ifconfig_ed0_alias4="inet 127.0.0.254 netmask 0xffffffff"
1206 .Ed
1207 .Pp
1208 Then note that alias4 would
1209 .Em not
1210 be added since the search would
1211 stop with the missing
1212 .Dq Li alias3
1213 entry.
1214 Because of this difficult to manage behavior,
1215 there is
1216 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _aliases
1217 variable, which has the same functionality as
1218 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1219 and can have all of entries in a variable like the following:
1220 .Bd -literal
1221 ifconfig_ed0_aliases="\\
1222         inet 127.0.0.251 netmask 0xffffffff \\
1223         inet 127.0.0.252 netmask 0xffffffff \\
1224         inet 127.0.0.253 netmask 0xffffffff \\
1225         inet 127.0.0.254 netmask 0xffffffff"
1226 .Ed
1227 .Pp
1228 It also supports CIDR notation.
1229 .Pp
1230 If the
1231 .Pa /etc/start_if. Ns Aq Ar interface
1232 file is present, it is read and executed by the
1233 .Xr sh 1
1234 interpreter
1235 before configuring the interface as specified in the
1236 .Va ifconfig_ Ns Aq Ar interface
1237 and
1238 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1239 variables.
1240 .Pp
1241 If a
1242 .Va vlans_ Ns Aq Ar interface
1243 variable is set,
1244 a
1245 .Xr vlan 4
1246 interface will be created for each item in the list with the
1247 .Ar vlandev
1248 argument set to
1249 .Ar interface .
1250 If a vlan interface's name is a number,
1251 then that number is used as the vlan tag and the new vlan interface is
1252 named
1253 .Ar interface . Ns Ar tag .
1254 Otherwise,
1255 the vlan tag must be specified via a
1256 .Va vlan
1257 parameter in the
1258 .Va create_args_ Ns Aq Ar interface
1259 variable.
1260 .Pp
1261 To create a vlan device named
1262 .Li em0.101
1263 on
1264 .Li em0
1265 with the vlan tag 101 and the optional the IPv4 address 192.0.2.1/24:
1266 .Bd -literal
1267 vlans_em0="101"
1268 ifconfig_em0_101="inet 192.0.2.1/24"
1269 .Ed
1270 .Pp
1271 To create a vlan device named
1272 .Li myvlan
1273 on
1274 .Li em0
1275 with the vlan tag 102:
1276 .Bd -literal
1277 vlans_em0="myvlan"
1278 create_args_myvlan="vlan 102"
1279 .Ed
1280 .Pp
1281 If a
1282 .Va wlans_ Ns Aq Ar interface
1283 variable is set,
1284 an
1285 .Xr wlan 4
1286 interface will be created for each item in the list with the
1287 .Ar wlandev
1288 argument set to
1289 .Ar interface .
1290 Further wlan cloning arguments may be passed to the
1291 .Xr ifconfig 8
1292 .Cm create
1293 command by setting the
1294 .Va create_args_ Ns Aq Ar interface
1295 variable.
1296 One or more
1297 .Xr wlan 4
1298 devices must be created for each wireless devices as of
1299 .Fx 8.0 .
1300 Debugging flags for
1301 .Xr wlan 4
1302 devices as set by
1303 .Xr wlandebug 8
1304 may be specified with an
1305 .Va wlandebug_ Ns Aq Ar interface
1306 variable.
1307 The contents of this variable will be passed directly to
1308 .Xr wlandebug 8 .
1309 .Pp
1310 If the
1311 .Va ifconfig_ Ns Aq Ar interface
1312 contains the keyword
1313 .Dq Li NOAUTO
1314 then the interface will not be configured
1315 at boot or by
1316 .Pa /etc/pccard_ether
1317 when
1318 .Va network_interfaces
1319 is set to
1320 .Dq Li AUTO .
1321 .Pp
1322 It is possible to bring up an interface with DHCP by adding
1323 .Dq Li DHCP
1324 to the
1325 .Va ifconfig_ Ns Aq Ar interface
1326 variable.
1327 For instance, to initialize the
1328 .Li ed0
1329 device via DHCP,
1330 it is possible to use something like:
1331 .Bd -literal
1332 ifconfig_ed0="DHCP"
1333 .Ed
1334 .Pp
1335 If you want to configure your wireless interface with
1336 .Xr wpa_supplicant 8
1337 for use with WPA, EAP/LEAP or WEP, you need to add
1338 .Dq Li WPA
1339 to the
1340 .Va ifconfig_ Ns Aq Ar interface
1341 variable.
1342 .Pp
1343 On the other hand, if you want to configure your wireless interface with
1344 .Xr hostapd 8 ,
1345 you need to add
1346 .Dq Li HOSTAP
1347 to the
1348 .Va ifconfig_ Ns Aq Ar interface
1349 variable.
1350 .Xr hostapd 8
1351 will use the settings from
1352 .Pa /etc/hostapd- Ns Ao Ar interface Ac Ns .conf
1353 .Pp
1354 Finally, you can add
1355 .Xr ifconfig 8
1356 options in this variable, in addition to the
1357 .Pa /etc/start_if. Ns Aq Ar interface
1358 file.
1359 For instance, to configure an
1360 .Xr ath 4
1361 wireless device in station mode with an address obtained
1362 via DHCP, using WPA authentication and 802.11b mode, it is
1363 possible to use something like:
1364 .Bd -literal
1365 wlans_ath0="wlan0"
1366 ifconfig_wlan0="DHCP WPA mode 11b"
1367 .Ed
1368 .Pp
1369 In addition to the
1370 .Va ifconfig_ Ns Aq Ar interface
1371 form, a fallback variable
1372 .Va ifconfig_DEFAULT
1373 may be configured.
1374 It will be used for all interfaces with no
1375 .Va ifconfig_ Ns Aq Ar interface
1376 variable.
1377 This is intended to replace the no longer supported
1378 .Va pccard_ifconfig
1379 variable.
1380 .Pp
1381 It is also possible to rename an interface by doing:
1382 .Bd -literal
1383 ifconfig_ed0_name="net0"
1384 ifconfig_net0="inet 192.0.2.1 netmask 0xffffff00"
1385 .Ed
1386 .It Va ipv6_enable
1387 .Pq Vt bool
1388 This variable is deprecated.
1389 Use
1390 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1391 and
1392 .Va ipv6_activate_all_interfaces
1393 if necessary.
1394 .Pp
1395 If the variable is
1396 .Dq Li YES ,
1397 .Dq Li inet6 accept_rtadv
1398 is added to all of
1399 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1400 and the
1401 .Va ipv6_activate_all_interfaces
1402 is defined as
1403 .Dq Li YES .
1404 .It Va ipv6_prefer
1405 .Pq Vt bool
1406 This variable is deprecated.
1407 Use
1408 .Va ip6addrctl_policy
1409 instead.
1410 .Pp
1411 If the variable is
1412 .Dq Li YES ,
1413 the default address selection policy table set by
1414 .Xr ip6addrctl 8
1415 will be IPv6-preferred.
1416 .Pp
1417 If the variable is
1418 .Dq Li NO ,
1419 the default address selection policy table set by
1420 .Xr ip6addrctl 8
1421 will be IPv4-preferred.
1422 .It Va ipv6_activate_all_interfaces
1423 .Pq Vt bool
1424 This controls initial configuration on IPv6-capable
1425 interfaces with no corresponding
1426 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1427 variable.
1428 Note that it is not always necessary to set this variable to
1429 .Dq YES
1430 to use IPv6 functionality on
1431 .Fx .
1432 In most cases, just configuring
1433 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1434 variables works.
1435 .Pp
1436 If the variable is
1437 .Dq Li NO ,
1438 all interfaces which do not have a corresponding
1439 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1440 variable will be marked as
1441 .Dq Li IFDISABLED
1442 at creation.
1443 This means that all of IPv6 functionality on that interface
1444 is completely disabled to enforce a security policy.
1445 If the variable is set to
1446 .Dq YES ,
1447 the flag will be cleared on all of the interfaces.
1448 .Pp
1449 In most cases, just defining an
1450 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1451 for an IPv6-capable interface should be sufficient.
1452 However, if an interface is added dynamically
1453 .Pq by some tunneling protocols such as PPP, for example ,
1454 it is often difficult to define the variable in advance.
1455 In such a case, configuring the
1456 .Dq Li IFDISABLED
1457 flag can be disabled by setting this variable to
1458 .Dq YES .
1459 .Pp
1460 For more details of the
1461 .Dq Li IFDISABLED
1462 flag and keywords
1463 .Dq Li inet6 ifdisabled ,
1464 see
1465 .Xr ifconfig 8 .
1466 .Pp
1467 Default is
1468 .Dq Li NO .
1469 .It Va ipv6_privacy
1470 .Pq Vt bool
1471 If the variable is
1472 .Dq Li YES
1473 privacy addresses will be generated for each IPv6
1474 interface as described in RFC 4941.
1475 .It Va ipv6_network_interfaces
1476 .Pq Vt str
1477 This is the IPv6 equivalent of
1478 .Va network_interfaces .
1479 Normally manual configuration of this variable is not needed.
1480 .Pp
1481 .It Va ipv6_cpe_wanif
1482 .Pq Vt str
1483 If the variable is set to an interface name,
1484 the
1485 .Xr ifconfig 8
1486 options
1487 .Dq inet6 -no_radr accept_rtadv
1488 will be added to the specified interface automatically before evaluating
1489 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6 ,
1490 and two
1491 .Xr sysctl 8
1492 variables
1493 .Va net.inet6.ip6.rfc6204w3
1494 and
1495 .Va net.inet6.ip6.no_radr
1496 will be set to 1.
1497 .Pp
1498 This means the specified interface will accept ICMPv6 Router
1499 Advertisement messages on that link and add the discovered
1500 routers into the Default Router List.
1501 While the other interfaces can still accept RA messages if the
1502 .Dq inet6 accept_rtadv
1503 option is specified, adding
1504 routes into the Default Router List will be disabled by
1505 .Dq inet6 no_radr
1506 option by default.
1507 See
1508 .Xr ifconfig 8
1509 for more details.
1510 .Pp
1511 Note that ICMPv6 Router Advertisement messages will be
1512 accepted even when
1513 .Va net.inet6.ip6.forwarding
1514 is 1
1515 .Pq packet forwarding is enabled
1516 when
1517 .Va net.inet6.ip6.rfc6204w3
1518 is set to 1.
1519 .Pp
1520 Default is
1521 .Dq Li NO .
1522 .It Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1523 .Pq Vt str
1524 IPv6 functionality on an interface should be configured by
1525 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6 ,
1526 instead of setting ifconfig parameters in
1527 .Va ifconfig_ Ns Aq Ar interface .
1528 If this variable is empty, all of IPv6 configurations on the
1529 specified interface by other variables such as
1530 .Va ipv6_prefix_ Ns Ao Ar interface Ac
1531 will be ignored.
1532 .Pp
1533 Aliases should be set by
1534 .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n
1535 with
1536 .Dq Li inet6
1537 keyword.
1538 For example:
1539 .Bd -literal
1540 ifconfig_ed0_ipv6="inet6 2001:db8:1::1 prefixlen 64"
1541 ifconfig_ed0_alias0="inet6 2001:db8:2::1 prefixlen 64"
1542 .Ed
1543 .Pp
1544 Interfaces that have an
1545 .Dq Li inet6 accept_rtadv
1546 keyword in
1547 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1548 setting will be automatically configured by SLAAC
1549 .Pq StateLess Address AutoConfiguration
1550 described in
1551 .Rs
1552 .%T "RFC 4862"
1553 .Re
1554 .Pp
1555 Note that a link-local address will be automatically configured in
1556 addition to the configured global-scope addresses because the IPv6
1557 specifications require it on each link.
1558 The address is calculated from the MAC address by using an algorithm
1559 defined in
1560 .Rs
1561 .%T "RFC 4862"
1562 .%O "Section 5.3"
1563 .Re
1564 .Pp
1565 If only a link-local address is needed on the interface,
1566 the following configuration can be used:
1567 .Bd -literal
1568 ifconfig_ed0_ipv6="inet6 auto_linklocal"
1569 .Ed
1570 .Pp
1571 A link-local address can also be configured manually.
1572 This is useful for the default router address of an IPv6 router
1573 so that it does not change when the network interface
1574 card is replaced.
1575 For example:
1576 .Bd -literal
1577 ifconfig_ed0_ipv6="inet6 fe80::1 prefixlen 64"
1578 .Ed
1579 .It Va ipv6_prefix_ Ns Aq Ar interface
1580 .Pq Vt str
1581 If one or more prefixes are defined in
1582 .Va ipv6_prefix_ Ns Aq Ar interface
1583 addresses based on each prefix and the EUI-64 interface index will be
1584 configured on that interface.
1585 Note that this variable will be ignored when
1586 .Va ifconfig_ Ns Ao Ar interface Ac Ns _ipv6
1587 is empty.
1588 .Pp
1589 For example, the following configuration
1590 .Bd -literal
1591 ipv6_prefix_ed0="2001:db8:1:0 2001:db8:2:0"
1592 .Ed
1593 .Pp
1594 is equivalent to the following:
1595 .Bd -literal
1596 ifconfig_ed0_alias0="inet6 2001:db8:1:: eui64 prefixlen 64"
1597 ifconfig_ed0_alias1="inet6 2001:db8:1:: prefixlen 64 anycast"
1598 ifconfig_ed0_alias2="inet6 2001:db8:2:: eui64 prefixlen 64"
1599 ifconfig_ed0_alias3="inet6 2001:db8:2:: prefixlen 64 anycast"
1600 .Ed
1601 .Pp
1602 These Subnet-Router anycast addresses will be added only when
1603 .Va ipv6_gateway_enable
1604 is YES.
1605 .It Va ipv6_default_interface
1606 .Pq Vt str
1607 If not set to
1608 .Dq Li NO ,
1609 this is the default output interface for scoped addresses.
1610 This works only with ipv6_gateway_enable="NO".
1611 .It Va ip6addrctl_enable
1612 .Pq Vt bool
1613 This variable is to enable configuring default address selection policy table
1614 .Pq RFC 3484 .
1615 The table can be specified in another variable
1616 .Va ip6addrctl_policy .
1617 For
1618 .Va ip6addrctl_policy
1619 the following keywords can be specified:
1620 .Dq Li ipv4_prefer ,
1621 .Dq Li ipv6_prefer ,
1622 or
1623 .Dq Li AUTO .
1624 .Pp
1625 If
1626 .Dq Li ipv4_prefer
1627 or
1628 .Dq Li ipv6_prefer
1629 is specified,
1630 .Xr ip6addrctl 8
1631 installs a pre-defined policy table described in Section 2.1
1632 .Pq IPv6-preferred
1633 or 10.3
1634 .Pq IPv4-preferred
1635 of RFC 3484.
1636 .Pp
1637 If
1638 .Dq Li AUTO
1639 is specified, it attempts to read a file
1640 .Pa /etc/ip6addrctl.conf
1641 first.
1642 If this file is found,
1643 .Xr ip6addrctl 8
1644 reads and installs it.
1645 If not found, a policy is automatically set
1646 according to
1647 .Va ipv6_activate_all_interfaces
1648 variable; if the variable is set to
1649 .Dq Li YES
1650 the IPv6-preferred one is used.
1651 Otherwise IPv4-preferred.
1652 .Pp
1653 The default value of
1654 .Va ip6addrctl_enable
1655 and
1656 .Va ip6addrctl_policy
1657 are
1658 .Dq Li YES
1659 and
1660 .Dq Li AUTO ,
1661 respectively.
1662 .It Va cloned_interfaces
1663 .Pq Vt str
1664 Set to the list of clonable network interfaces to create on this host.
1665 Further cloning arguments may be passed to the
1666 .Xr ifconfig 8
1667 .Cm create
1668 command for each interface by setting the
1669 .Va create_args_ Ns Aq Ar interface
1670 variable.
1671 If an interface name is specified with
1672 .Dq :sticky
1673 keyword,
1674 the interface will not be destroyed even when
1675 .Pa rc.d/netif
1676 script is invoked with
1677 .Dq stop
1678 argument.
1679 This is useful when reconfiguring the interface without destroying it.
1680 Entries in
1681 .Va cloned_interfaces
1682 are automatically appended to
1683 .Va network_interfaces
1684 for configuration.
1685 .It Va cloned_interfaces_sticky
1686 .Pq Vt bool
1687 This variable is to globally enable functionality of
1688 .Dq :sticky
1689 keyword in
1690 .Va cloned_interfaces
1691 for all interfaces.
1692 The default value is
1693 .Dq NO .
1694 Even if this variable is specified to
1695 .Dq YES ,
1696 .Dq :nosticky
1697 keyword can be used to override it on per interface basis.
1698 .It Va fec_interfaces
1699 .Pq Vt str
1700 Set to the list of
1701 .Xr ng_fec 4
1702 Fast EtherChannel interfaces to configure on this host.
1703 A
1704 .Va fecconfig_ Ns Aq Ar interface
1705 variable is assumed to exist for each value of
1706 .Ar interface .
1707 The value of this variable is used to configure link aggregated interfaces
1708 according to the syntax of the
1709 .Cm NGM_FEC_ADD_IFACE
1710 to
1711 .Xr ngctl 8
1712 msg.
1713 Additionally, this option ensures that each listed interface is created
1714 via the
1715 .Cm mkpeer
1716 command to
1717 .Xr ngctl 8
1718 before attempting to configure it.
1719 For example:
1720 .Bd -literal
1721 fec_interfaces="fec0"
1722 fecconfig_fec0="em0 em1"
1723 ifconfig_fec0="DHCP"
1724 .Ed
1725 .It Va gif_interfaces
1726 .Pq Vt str
1727 This variable is deprecated in favor of
1728 .Va cloned_interfaces .
1729 Set to the list of
1730 .Xr gif 4
1731 tunnel interfaces to configure on this host.
1732 A
1733 .Va gifconfig_ Ns Aq Ar interface
1734 variable is assumed to exist for each value of
1735 .Ar interface .
1736 The value of this variable is used to configure the link layer of the
1737 tunnel according to the syntax of the
1738 .Cm tunnel
1739 option to
1740 .Xr ifconfig 8 .
1741 Additionally, this option ensures that each listed interface is created
1742 via the
1743 .Cm create
1744 option to
1745 .Xr ifconfig 8
1746 before attempting to configure it.
1747 .It Va sppp_interfaces
1748 .Pq Vt str
1749 Set to the list of
1750 .Xr sppp 4
1751 interfaces to configure on this host.
1752 A
1753 .Va spppconfig_ Ns Aq Ar interface
1754 variable is assumed to exist for each value of
1755 .Ar interface .
1756 Each interface should also be configured by a general
1757 .Va ifconfig_ Ns Aq Ar interface
1758 setting.
1759 Refer to
1760 .Xr spppcontrol 8
1761 for more information about available options.
1762 .It Va ppp_enable
1763 .Pq Vt bool
1764 If set to
1765 .Dq Li YES ,
1766 run the
1767 .Xr ppp 8
1768 daemon.
1769 .It Va ppp_profile
1770 .Pq Vt str
1771 The name of the profile to use from
1772 .Pa /etc/ppp/ppp.conf .
1773 Also used for per-profile overrides of
1774 .Va ppp_mode
1775 and
1776 .Va ppp_nat ,
1777 and
1778 .Va ppp_ Ns Ao Ar profile Ac Ns _unit .
1779 When the profile name contains any of the characters
1780 .Dq Li .-/+
1781 they are translated to
1782 .Dq Li _
1783 for the proposes of the override variable names.
1784 .It Va ppp_mode
1785 .Pq Vt str
1786 Mode in which to run the
1787 .Xr ppp 8
1788 daemon.
1789 .It Va ppp_ Ns Ao Ar profile Ac Ns _mode
1790 .Pq Vt str
1791 Overrides the global
1792 .Va ppp_mode
1793 for
1794 .Ar profile .
1795 Accepted modes are
1796 .Dq Li auto ,
1797 .Dq Li ddial ,
1798 .Dq Li direct
1799 and
1800 .Dq Li dedicated .
1801 See the manual for a full description.
1802 .It Va ppp_nat
1803 .Pq Vt bool
1804 If set to
1805 .Dq Li YES ,
1806 enables network address translation.
1807 Used in conjunction with
1808 .Va gateway_enable
1809 allows hosts on private network addresses access to the Internet using
1810 this host as a network address translating router.
1811 .It Va ppp_ Ns Ao Ar profile Ac Ns _nat
1812 .Pq Vt str
1813 Overrides the global
1814 .Va ppp_nat
1815 for
1816 .Ar profile .
1817 .It Va ppp_ Ns Ao Ar profile Ac Ns _unit
1818 .Pq Vt int
1819 Set the unit number to be used for this profile.
1820 See the manual description of
1821 .Fl unit Ns Ar N
1822 for details.
1823 .It Va ppp_user
1824 .Pq Vt str
1825 The name of the user under which
1826 .Xr ppp 8
1827 should be started.
1828 By
1829 default,
1830 .Xr ppp 8
1831 is started as
1832 .Dq Li root .
1833 .It Va rc_conf_files
1834 .Pq Vt str
1835 This option is used to specify a list of files that will override
1836 the settings in
1837 .Pa /etc/defaults/rc.conf .
1838 The files will be read in the order in which they are specified and should
1839 include the full path to the file.
1840 By default, the files specified are
1841 .Pa /etc/rc.conf
1842 and
1843 .Pa /etc/rc.conf.local
1844 .It Va zfs_enable
1845 .Pq Vt bool
1846 If set to
1847 .Dq Li YES ,
1848 .Pa /etc/rc.d/zfs
1849 will attempt to automatically mount ZFS file systems and initialize ZFS volumes
1850 (ZVOLs).
1851 .It Va gptboot_enable
1852 .Pq Vt bool
1853 If set to
1854 .Dq Li YES ,
1855 .Pa /etc/rc.d/gptboot
1856 will log if the system successfully (or not) booted from a GPT partition,
1857 which had the
1858 .Ar bootonce
1859 attribute set using
1860 .Xr gpart 8
1861 utility.
1862 .It Va gbde_autoattach_all
1863 .Pq Vt bool
1864 If set to
1865 .Dq Li YES ,
1866 .Pa /etc/rc.d/gbde
1867 will attempt to automatically initialize your .bde devices in
1868 .Pa /etc/fstab .
1869 .It Va gbde_devices
1870 .Pq Vt str
1871 List the devices that the script should try to attach,
1872 or
1873 .Dq Li AUTO .
1874 .It Va gbde_lockdir
1875 .Pq Vt str
1876 The directory where the
1877 .Xr gbde 4
1878 lockfiles are located.
1879 The default lockfile directory is
1880 .Pa /etc .
1881 .Pp
1882 The lockfile for each individual
1883 .Xr gbde 4
1884 device can be overridden by setting the variable
1885 .Va gbde_lock_ Ns Aq Ar device ,
1886 where
1887 .Ar device
1888 is the encrypted device without the
1889 .Dq Pa /dev/
1890 and
1891 .Dq Pa .bde
1892 parts.
1893 .It Va gbde_attach_attempts
1894 .Pq Vt int
1895 Number of times to attempt attaching to a
1896 .Xr gbde 4
1897 device, i.e., how many times the user is asked for the pass-phrase.
1898 Default is 3.
1899 .It Va geli_devices
1900 .Pq Vt str
1901 List of devices to automatically attach on boot.
1902 Note that .eli devices from
1903 .Pa /etc/fstab
1904 are automatically appended to this list.
1905 .It Va geli_tries
1906 .Pq Vt int
1907 Number of times user is asked for the pass-phrase.
1908 If empty, it will be taken from
1909 .Va kern.geom.eli.tries
1910 sysctl variable.
1911 .It Va geli_default_flags
1912 .Pq Vt str
1913 Default flags to use by
1914 .Xr geli 8
1915 when configuring disk encryption.
1916 Flags can be configured for every device separately by defining
1917 .Va geli_ Ns Ao Ar device Ac Ns Va _flags
1918 variable.
1919 .It Va geli_autodetach
1920 .Pq Vt str
1921 Specifies if GELI devices should be marked for detach on last close after
1922 file systems are mounted.
1923 Default is
1924 .Dq Li YES .
1925 This can be changed for every device separately by defining
1926 .Va geli_ Ns Ao Ar device Ac Ns Va _autodetach
1927 variable.
1928 .It Va root_rw_mount
1929 .Pq Vt bool
1930 Set to
1931 .Dq Li YES
1932 by default.
1933 After the file systems are checked at boot time, the root file system
1934 is remounted as read-write if this is set to
1935 .Dq Li YES .
1936 Diskless systems that mount their root file system from a read-only remote
1937 NFS share should set this to
1938 .Dq Li NO
1939 in their
1940 .Pa rc.conf .
1941 .It Va fsck_y_enable
1942 .Pq Vt bool
1943 If set to
1944 .Dq Li YES ,
1945 .Xr fsck 8
1946 will be run with the
1947 .Fl y
1948 flag if the initial preen
1949 of the file systems fails.
1950 .It Va background_fsck
1951 .Pq Vt bool
1952 If set to
1953 .Dq Li YES ,
1954 the system will attempt to run
1955 .Xr fsck 8
1956 in the background where possible.
1957 .It Va background_fsck_delay
1958 .Pq Vt int
1959 The amount of time in seconds to sleep before starting a background
1960 .Xr fsck 8 .
1961 It defaults to sixty seconds to allow large applications such as
1962 the X server to start before disk I/O bandwidth is monopolized by
1963 .Xr fsck 8 .
1964 If set to a negative number, the background file system check will be
1965 delayed indefinitely to allow the administrator to run it at a more
1966 convenient time.
1967 For example it may be run from
1968 .Xr cron 8
1969 by adding a line like
1970 .Pp
1971 .Dl "0 4 * * * root /etc/rc.d/bgfsck forcestart"
1972 .Pp
1973 to
1974 .Pa /etc/crontab .
1975 .It Va netfs_types
1976 .Pq Vt str
1977 List of file system types that are network-based.
1978 This list should generally not be modified by end users.
1979 Use
1980 .Va extra_netfs_types
1981 instead.
1982 .It Va extra_netfs_types
1983 .Pq Vt str
1984 If set to something other than
1985 .Dq Li NO
1986 (the default),
1987 this variable extends the list of file system types
1988 for which automatic mounting at startup by
1989 .Xr rc 8
1990 should be delayed until the network is initialized.
1991 It should contain
1992 a whitespace-separated list of network file system descriptor pairs,
1993 each consisting of a file system type as passed to
1994 .Xr mount 8
1995 and a human-readable, one-word description,
1996 joined with a colon
1997 .Pq Ql \&: .
1998 Extending the default list in this way is only necessary
1999 when third party file system types are used.
2000 .It Va syslogd_enable
2001 .Pq Vt bool
2002 If set to
2003 .Dq Li YES ,
2004 run the
2005 .Xr syslogd 8
2006 daemon.
2007 .It Va syslogd_program
2008 .Pq Vt str
2009 Path to
2010 .Xr syslogd 8
2011 (default
2012 .Pa /usr/sbin/syslogd ) .
2013 .It Va syslogd_flags
2014 .Pq Vt str
2015 If
2016 .Va syslogd_enable
2017 is set to
2018 .Dq Li YES ,
2019 these are the flags to pass to
2020 .Xr syslogd 8 .
2021 .It Va inetd_enable
2022 .Pq Vt bool
2023 If set to
2024 .Dq Li YES ,
2025 run the
2026 .Xr inetd 8
2027 daemon.
2028 .It Va inetd_program
2029 .Pq Vt str
2030 Path to
2031 .Xr inetd 8
2032 (default
2033 .Pa /usr/sbin/inetd ) .
2034 .It Va inetd_flags
2035 .Pq Vt str
2036 If
2037 .Va inetd_enable
2038 is set to
2039 .Dq Li YES ,
2040 these are the flags to pass to
2041 .Xr inetd 8 .
2042 .It Va hastd_enable
2043 .Pq Vt bool
2044 If set to
2045 .Dq Li YES ,
2046 run the
2047 .Xr hastd 8
2048 daemon.
2049 .It Va hastd_program
2050 .Pq Vt str
2051 Path to
2052 .Xr hastd 8
2053 (default
2054 .Pa /sbin/hastd ) .
2055 .It Va hastd_flags
2056 .Pq Vt str
2057 If
2058 .Va hastd_enable
2059 is set to
2060 .Dq Li YES ,
2061 these are the flags to pass to
2062 .Xr hastd 8 .
2063 .It Va local_unbound_enable
2064 .Pq Vt bool
2065 If set to
2066 .Dq Li YES ,
2067 run the
2068 .Xr unbound 8
2069 daemon as a local caching resolver.
2070 .It Va kerberos5_server_enable
2071 .Pq Vt bool
2072 Set to
2073 .Dq Li YES
2074 to start a Kerberos 5 authentication server
2075 at boot time.
2076 .It Va kerberos5_server
2077 .Pq Vt str
2078 If
2079 .Va kerberos5_server_enable
2080 is set to
2081 .Dq Li YES
2082 this is the path to Kerberos 5 Authentication Server.
2083 .It Va kerberos5_server_flags
2084 .Pq Vt str
2085 Empty by default.
2086 This variable contains additional flags to be passed to the Kerberos 5
2087 authentication server.
2088 .It Va kadmind5_server_enable
2089 .Pq Vt bool
2090 Set to
2091 .Dq Li YES
2092 to start
2093 .Xr kadmind 8 ,
2094 the Kerberos 5 Administration Daemon; set to
2095 .Dq Li NO
2096 on a slave server.
2097 .It Va kadmind5_server
2098 .Pq Vt str
2099 If
2100 .Va kadmind5_server_enable
2101 is set to
2102 .Dq Li YES
2103 this is the path to Kerberos 5 Administration Daemon.
2104 .It Va kpasswdd_server_enable
2105 .Pq Vt bool
2106 Set to
2107 .Dq Li YES
2108 to start
2109 .Xr kpasswdd 8 ,
2110 the Kerberos 5 Password-Changing Daemon; set to
2111 .Dq Li NO
2112 on a slave server.
2113 .It Va kpasswdd_server
2114 .Pq Vt str
2115 If
2116 .Va kpasswdd_server_enable
2117 is set to
2118 .Dq Li YES
2119 this is the path to Kerberos 5 Password-Changing Daemon.
2120 .It Va kfd_enable
2121 .Pq Vt bool
2122 Set to
2123 .Dq Li YES
2124 to start
2125 .Xr kfd 8 ,
2126 the Kerberos 5 ticket forwarding daemon, at the boot time.
2127 .It Va kfd_program
2128 .Pq Vt str
2129 Path to
2130 .Xr kfd 8
2131 (default
2132 .Pa /usr/libexec/kfd ) .
2133 .It Va rwhod_enable
2134 .Pq Vt bool
2135 If set to
2136 .Dq Li YES ,
2137 run the
2138 .Xr rwhod 8
2139 daemon at boot time.
2140 .It Va rwhod_flags
2141 .Pq Vt str
2142 If
2143 .Va rwhod_enable
2144 is set to
2145 .Dq Li YES ,
2146 these are the flags to pass to it.
2147 .It Va amd_enable
2148 .Pq Vt bool
2149 If set to
2150 .Dq Li YES ,
2151 run the
2152 .Xr amd 8
2153 daemon at boot time.
2154 .It Va amd_flags
2155 .Pq Vt str
2156 If
2157 .Va amd_enable
2158 is set to
2159 .Dq Li YES ,
2160 these are the flags to pass to it.
2161 See the
2162 .Xr amd 8
2163 manpage for more information.
2164 .It Va amd_map_program
2165 .Pq Vt str
2166 If set,
2167 the specified program is run to get the list of
2168 .Xr amd 8
2169 maps.
2170 For example, if the
2171 .Xr amd 8
2172 maps are stored in NIS, one can set this to
2173 run
2174 .Xr ypcat 1
2175 to get a list of
2176 .Xr amd 8
2177 maps from the
2178 .Pa amd.master
2179 NIS map.
2180 .It Va update_motd
2181 .Pq Vt bool
2182 If set to
2183 .Dq Li YES ,
2184 .Pa /etc/motd
2185 will be updated at boot time to reflect the kernel release
2186 being run.
2187 If set to
2188 .Dq Li NO ,
2189 .Pa /etc/motd
2190 will not be updated.
2191 .It Va nfs_client_enable
2192 .Pq Vt bool
2193 If set to
2194 .Dq Li YES ,
2195 run the NFS client daemons at boot time.
2196 .It Va nfs_access_cache
2197 .Pq Vt int
2198 If
2199 .Va nfs_client_enable
2200 is set to
2201 .Dq Li YES ,
2202 this can be set to
2203 .Dq Li 0
2204 to disable NFS ACCESS RPC caching, or to the number of seconds for which
2205 NFS ACCESS
2206 results should be cached.
2207 A value of 2-10 seconds will substantially reduce network
2208 traffic for many NFS operations.
2209 .It Va nfs_server_enable
2210 .Pq Vt bool
2211 If set to
2212 .Dq Li YES ,
2213 run the NFS server daemons at boot time.
2214 .It Va nfs_server_flags
2215 .Pq Vt str
2216 If
2217 .Va nfs_server_enable
2218 is set to
2219 .Dq Li YES ,
2220 these are the flags to pass to the
2221 .Xr nfsd 8
2222 daemon.
2223 .It Va nfsv4_server_enable
2224 .Pq Vt bool
2225 If
2226 .Va nfs_server_enable
2227 is set to
2228 .Dq Li YES
2229 and
2230 .Va nfsv4_server_enable
2231 are set to
2232 .Dq Li YES ,
2233 enable the server for NFSv4 as well as NFSv2 and NFSv3.
2234 .It Va nfsuserd_enable
2235 .Pq Vt bool
2236 If
2237 .Va nfsuserd_enable
2238 is set to
2239 .Dq Li YES ,
2240 run the nfsuserd daemon, which is needed for NFSv4 in order
2241 to map between user/group names vs uid/gid numbers.
2242 If
2243 .Va nfsv4_server_enable
2244 is set to
2245 .Dq Li YES ,
2246 this will be forced enabled.
2247 .It Va nfsuserd_flags
2248 .Pq Vt str
2249 If
2250 .Va nfsuserd_enable
2251 is set to
2252 .Dq Li YES ,
2253 these are the flags to pass to the
2254 .Xr nfsuserd 8
2255 daemon.
2256 .It Va nfscbd_enable
2257 .Pq Vt bool
2258 If
2259 .Va nfscbd_enable
2260 is set to
2261 .Dq Li YES ,
2262 run the nfscbd daemon, which enables callbacks/delegations for the NFSv4 client.
2263 .It Va nfscbd_flags
2264 .Pq Vt str
2265 If
2266 .Va nfscbd_enable
2267 is set to
2268 .Dq Li YES ,
2269 these are the flags to pass to the
2270 .Xr nfscbd 8
2271 daemon.
2272 .It Va oldnfs_server_enable
2273 .Pq Vt bool
2274 If
2275 .Va oldnfs_server_enable
2276 is set to
2277 .Dq Li YES ,
2278 force the NFS server daemons to run the old NFS server code
2279 that does not support NFSv4.
2280 .It Va mountd_enable
2281 .Pq Vt bool
2282 If set to
2283 .Dq Li YES ,
2284 and no
2285 .Va nfs_server_enable
2286 is set, start
2287 .Xr mountd 8 ,
2288 but not
2289 .Xr nfsd 8
2290 daemon.
2291 It is commonly needed to run CFS without real NFS used.
2292 .It Va mountd_flags
2293 .Pq Vt str
2294 If
2295 .Va mountd_enable
2296 is set to
2297 .Dq Li YES ,
2298 these are the flags to pass to the
2299 .Xr mountd 8
2300 daemon.
2301 .It Va weak_mountd_authentication
2302 .Pq Vt bool
2303 If set to
2304 .Dq Li YES ,
2305 allow services like PCNFSD to make non-privileged mount
2306 requests.
2307 .It Va nfs_reserved_port_only
2308 .Pq Vt bool
2309 If set to
2310 .Dq Li YES ,
2311 provide NFS services only on a secure port.
2312 .It Va nfs_bufpackets
2313 .Pq Vt int
2314 If set to a number, indicates the number of packets worth of
2315 socket buffer space to reserve on an NFS client.
2316 The kernel default is typically 4.
2317 Using a higher number may be
2318 useful on gigabit networks to improve performance.
2319 The minimum value is
2320 2 and the maximum is 64.
2321 .It Va rpc_lockd_enable
2322 .Pq Vt bool
2323 If set to
2324 .Dq Li YES
2325 and also an NFS server or client, run
2326 .Xr rpc.lockd 8
2327 at boot time.
2328 .It Va rpc_lockd_flags
2329 .Pq Vt str
2330 If
2331 .Va rpc_lockd_enable
2332 is set to
2333 .Dq Li YES ,
2334 these are the flags to pass to the
2335 .Xr rpc.lockd 8
2336 daemon.
2337 .It Va rpc_statd_enable
2338 .Pq Vt bool
2339 If set to
2340 .Dq Li YES
2341 and also an NFS server or client, run
2342 .Xr rpc.statd 8
2343 at boot time.
2344 .It Va rpc_statd_flags
2345 .Pq Vt str
2346 If
2347 .Va rpc_statd_enable
2348 is set to
2349 .Dq Li YES ,
2350 these are the flags to pass to the
2351 .Xr rpc.statd 8
2352 daemon.
2353 .It Va rpcbind_program
2354 .Pq Vt str
2355 Path to
2356 .Xr rpcbind 8
2357 (default
2358 .Pa /usr/sbin/rpcbind ) .
2359 .It Va rpcbind_enable
2360 .Pq Vt bool
2361 If set to
2362 .Dq Li YES ,
2363 run the
2364 .Xr rpcbind 8
2365 service at boot time.
2366 .It Va rpcbind_flags
2367 .Pq Vt str
2368 If
2369 .Va rpcbind_enable
2370 is set to
2371 .Dq Li YES ,
2372 these are the flags to pass to the
2373 .Xr rpcbind 8
2374 daemon.
2375 .It Va keyserv_enable
2376 .Pq Vt bool
2377 If set to
2378 .Dq Li YES ,
2379 run the
2380 .Xr keyserv 8
2381 daemon on boot for running Secure RPC.
2382 .It Va keyserv_flags
2383 .Pq Vt str
2384 If
2385 .Va keyserv_enable
2386 is set to
2387 .Dq Li YES ,
2388 these are the flags to pass to
2389 .Xr keyserv 8
2390 daemon.
2391 .It Va pppoed_enable
2392 .Pq Vt bool
2393 If set to
2394 .Dq Li YES ,
2395 run the
2396 .Xr pppoed 8
2397 daemon at boot time to provide PPP over Ethernet services.
2398 .It Va pppoed_ Ns Aq Ar provider
2399 .Pq Vt str
2400 .Xr pppoed 8
2401 listens to requests to this
2402 .Ar provider
2403 and ultimately runs
2404 .Xr ppp 8
2405 with a
2406 .Ar system
2407 argument of the same name.
2408 .It Va pppoed_flags
2409 .Pq Vt str
2410 Additional flags to pass to
2411 .Xr pppoed 8 .
2412 .It Va pppoed_interface
2413 .Pq Vt str
2414 The network interface to run
2415 .Xr pppoed 8
2416 on.
2417 This is mandatory when
2418 .Va pppoed_enable
2419 is set to
2420 .Dq Li YES .
2421 .It Va timed_enable
2422 .Pq Vt bool
2423 If set to
2424 .Dq Li YES ,
2425 run the
2426 .Xr timed 8
2427 service at boot time.
2428 This command is intended for networks of
2429 machines where a consistent
2430 .Dq "network time"
2431 for all hosts must be established.
2432 This is often useful in large NFS
2433 environments where time stamps on files are expected to be consistent
2434 network-wide.
2435 .It Va timed_flags
2436 .Pq Vt str
2437 If
2438 .Va timed_enable
2439 is set to
2440 .Dq Li YES ,
2441 these are the flags to pass to the
2442 .Xr timed 8
2443 service.
2444 .It Va ntpdate_enable
2445 .Pq Vt bool
2446 If set to
2447 .Dq Li YES ,
2448 run
2449 .Xr ntpdate 8
2450 at system startup.
2451 This command is intended to
2452 synchronize the system clock only
2453 .Em once
2454 from some standard reference.
2455 .It Va ntpdate_config
2456 .Pq Vt str
2457 Configuration file for
2458 .Xr ntpdate 8 .
2459 Default
2460 .Pa /etc/ntp.conf .
2461 .It Va ntpdate_hosts
2462 .Pq Vt str
2463 A whitespace-separated list of NTP servers to synchronize with at startup.
2464 The default is to use the servers listed in
2465 .Va ntpdate_config ,
2466 if that file exists.
2467 .It Va ntpdate_program
2468 .Pq Vt str
2469 Path to
2470 .Xr ntpdate 8
2471 (default
2472 .Pa /usr/sbin/ntpdate ) .
2473 .It Va ntpdate_flags
2474 .Pq Vt str
2475 If
2476 .Va ntpdate_enable
2477 is set to
2478 .Dq Li YES ,
2479 these are the flags to pass to the
2480 .Xr ntpdate 8
2481 command (typically a hostname).
2482 .It Va ntpd_enable
2483 .Pq Vt bool
2484 If set to
2485 .Dq Li YES ,
2486 run the
2487 .Xr ntpd 8
2488 command at boot time.
2489 .It Va ntpd_program
2490 .Pq Vt str
2491 Path to
2492 .Xr ntpd 8
2493 (default
2494 .Pa /usr/sbin/ntpd ) .
2495 .It Va ntpd_config
2496 .Pq Vt str
2497 Path to
2498 .Xr ntpd 8
2499 configuration file.
2500 Default
2501 .Pa /etc/ntp.conf .
2502 .It Va ntpd_flags
2503 .Pq Vt str
2504 If
2505 .Va ntpd_enable
2506 is set to
2507 .Dq Li YES ,
2508 these are the flags to pass to the
2509 .Xr ntpd 8
2510 daemon.
2511 .It Va ntpd_sync_on_start
2512 .Pq Vt bool
2513 If set to
2514 .Dq Li YES ,
2515 .Xr ntpd 8
2516 is run with the
2517 .Fl g
2518 flag, which syncs the system's clock on startup.
2519 See
2520 .Xr ntpd 8
2521 for more information regarding the
2522 .Fl g
2523 option.
2524 This is a preferred alternative to using
2525 .Xr ntpdate 8
2526 or specifying the
2527 .Va ntpdate_enable
2528 variable.
2529 .It Va nis_client_enable
2530 .Pq Vt bool
2531 If set to
2532 .Dq Li YES ,
2533 run the
2534 .Xr ypbind 8
2535 service at system boot time.
2536 .It Va nis_client_flags
2537 .Pq Vt str
2538 If
2539 .Va nis_client_enable
2540 is set to
2541 .Dq Li YES ,
2542 these are the flags to pass to the
2543 .Xr ypbind 8
2544 service.
2545 .It Va nis_ypset_enable
2546 .Pq Vt bool
2547 If set to
2548 .Dq Li YES ,
2549 run the
2550 .Xr ypset 8
2551 daemon at system boot time.
2552 .It Va nis_ypset_flags
2553 .Pq Vt str
2554 If
2555 .Va nis_ypset_enable
2556 is set to
2557 .Dq Li YES ,
2558 these are the flags to pass to the
2559 .Xr ypset 8
2560 daemon.
2561 .It Va nis_server_enable
2562 .Pq Vt bool
2563 If set to
2564 .Dq Li YES ,
2565 run the
2566 .Xr ypserv 8
2567 daemon at system boot time.
2568 .It Va nis_server_flags
2569 .Pq Vt str
2570 If
2571 .Va nis_server_enable
2572 is set to
2573 .Dq Li YES ,
2574 these are the flags to pass to the
2575 .Xr ypserv 8
2576 daemon.
2577 .It Va nis_ypxfrd_enable
2578 .Pq Vt bool
2579 If set to
2580 .Dq Li YES ,
2581 run the
2582 .Xr rpc.ypxfrd 8
2583 daemon at system boot time.
2584 .It Va nis_ypxfrd_flags
2585 .Pq Vt str
2586 If
2587 .Va nis_ypxfrd_enable
2588 is set to
2589 .Dq Li YES ,
2590 these are the flags to pass to the
2591 .Xr rpc.ypxfrd 8
2592 daemon.
2593 .It Va nis_yppasswdd_enable
2594 .Pq Vt bool
2595 If set to
2596 .Dq Li YES ,
2597 run the
2598 .Xr rpc.yppasswdd 8
2599 daemon at system boot time.
2600 .It Va nis_yppasswdd_flags
2601 .Pq Vt str
2602 If
2603 .Va nis_yppasswdd_enable
2604 is set to
2605 .Dq Li YES ,
2606 these are the flags to pass to the
2607 .Xr rpc.yppasswdd 8
2608 daemon.
2609 .It Va rpc_ypupdated_enable
2610 .Pq Vt bool
2611 If set to
2612 .Dq Li YES ,
2613 run the
2614 .Nm rpc.ypupdated
2615 daemon at system boot time.
2616 .It Va bsnmpd_enable
2617 .Pq Vt bool
2618 If set to
2619 .Dq Li YES ,
2620 run the
2621 .Xr bsnmpd 1
2622 daemon at system boot time.
2623 Be sure to understand the security implications of running SNMP daemon
2624 on your host.
2625 .It Va bsnmpd_flags
2626 .Pq Vt str
2627 If
2628 .Va bsnmpd_enable
2629 is set to
2630 .Dq Li YES ,
2631 these are the flags to pass to the
2632 .Xr bsnmpd 1
2633 daemon.
2634 .It Va defaultrouter
2635 .Pq Vt str
2636 If not set to
2637 .Dq Li NO ,
2638 create a default route to this host name or IP address
2639 (use an IP address if this router is also required to get to the
2640 name server!).
2641 .It Va ipv6_defaultrouter
2642 .Pq Vt str
2643 The IPv6 equivalent of
2644 .Va defaultrouter .
2645 .It Va static_arp_pairs
2646 .Pq Vt str
2647 Set to the list of static ARP pairs that are to be added at system
2648 boot time.
2649 For each whitespace separated
2650 .Ar element
2651 in the value, a
2652 .Va static_arp_ Ns Aq Ar element
2653 variable is assumed to exist whose contents will later be passed to a
2654 .Dq Nm arp Cm -S
2655 operation.
2656 For example
2657 .Bd -literal
2658 static_arp_pairs="gw"
2659 static_arp_gw="192.168.1.1 00:01:02:03:04:05"
2660 .Ed
2661 .It Va static_ndp_pairs
2662 .Pq Vt str
2663 Set to the list of static NDP pairs that are to be added at system
2664 boot time.
2665 For each whitespace separated
2666 .Ar element
2667 in the value, a
2668 .Va static_ndp_ Ns Aq Ar element
2669 variable is assumed to exist whose contents will later be passed to a
2670 .Dq Nm ndp Cm -s
2671 operation.
2672 For example
2673 .Bd -literal
2674 static_ndp_pairs="gw"
2675 static_ndp_gw="2001:db8:3::1 00:01:02:03:04:05"
2676 .Ed
2677 .It Va static_routes
2678 .Pq Vt str
2679 Set to the list of static routes that are to be added at system
2680 boot time.
2681 If not set to
2682 .Dq Li NO
2683 then for each whitespace separated
2684 .Ar element
2685 in the value, a
2686 .Va route_ Ns Aq Ar element
2687 variable is assumed to exist
2688 whose contents will later be passed to a
2689 .Dq Nm route Cm add
2690 operation.
2691 For example:
2692 .Bd -literal
2693 static_routes="ext mcast:gif0 gif0local:gif0"
2694 route_ext="-net 10.0.0.0/24 -gateway 192.168.0.1"
2695 route_mcast="-net 224.0.0.0/4 -iface gif0"
2696 route_gif0local="-host 169.254.1.1 -iface lo0"
2697 .Ed
2698 .Pp
2699 When an
2700 .Ar element
2701 is in the form of
2702 .Li name:ifname ,
2703 the route is specific to the interface
2704 .Li ifname .
2705 .It Va ipv6_static_routes
2706 .Pq Vt str
2707 The IPv6 equivalent of
2708 .Va static_routes .
2709 If not set to
2710 .Dq Li NO
2711 then for each whitespace separated
2712 .Ar element
2713 in the value, a
2714 .Va ipv6_route_ Ns Aq Ar element
2715 variable is assumed to exist
2716 whose contents will later be passed to a
2717 .Dq Nm route Cm add Fl inet6
2718 operation.
2719 .It Va natm_static_routes
2720 .Pq Vt str
2721 The
2722 .Xr natmip 4
2723 equivalent of
2724 .Va static_routes .
2725 If not empty then for each whitespace separated
2726 .Ar element
2727 in the value, a
2728 .Va route_ Ns Aq Ar element
2729 variable is assumed to exist whose contents will later be passed to a
2730 .Dq Nm atmconfig Cm natm Cm add
2731 operation.
2732 .It Va gateway_enable
2733 .Pq Vt bool
2734 If set to
2735 .Dq Li YES ,
2736 configure host to act as an IP router, e.g.\& to forward packets
2737 between interfaces.
2738 .It Va ipv6_gateway_enable
2739 .Pq Vt bool
2740 The IPv6 equivalent of
2741 .Va gateway_enable .
2742 .It Va routed_enable
2743 .Pq Vt bool
2744 If set to
2745 .Dq Li YES ,
2746 run a routing daemon of some sort, based on the
2747 settings of
2748 .Va routed_program
2749 and
2750 .Va routed_flags .
2751 .It Va route6d_enable
2752 .Pq Vt bool
2753 The IPv6 equivalent of
2754 .Va routed_enable .
2755 If set to
2756 .Dq Li YES ,
2757 run a routing daemon of some sort, based on the
2758 settings of
2759 .Va route6d_program
2760 and
2761 .Va route6d_flags .
2762 .It Va routed_program
2763 .Pq Vt str
2764 If
2765 .Va routed_enable
2766 is set to
2767 .Dq Li YES ,
2768 this is the name of the routing daemon to use.
2769 .It Va route6d_program
2770 .Pq Vt str
2771 The IPv6 equivalent of
2772 .Va routed_program .
2773 .It Va routed_flags
2774 .Pq Vt str
2775 If
2776 .Va routed_enable
2777 is set to
2778 .Dq Li YES ,
2779 these are the flags to pass to the routing daemon.
2780 .It Va route6d_flags
2781 .Pq Vt str
2782 The IPv6 equivalent of
2783 .Va routed_flags .
2784 .It Va mrouted_enable
2785 .Pq Vt bool
2786 If set to
2787 .Dq Li YES ,
2788 run the multicast routing daemon,
2789 .Xr mrouted 8 .
2790 .It Va mroute6d_enable
2791 .Pq Vt bool
2792 The IPv6 equivalent of
2793 .Va mrouted_enable .
2794 If set to
2795 .Dq Li YES ,
2796 run the IPv6 multicast routing daemon.
2797 .Pp
2798 Note that multicast routing daemons are no longer included in the
2799 .Fx
2800 base system, however, both
2801 .Xr mrouted 8
2802 and
2803 .Xr pim6dd 8
2804 may be installed from the
2805 .Fx
2806 Ports Collection.
2807 .It Va mrouted_flags
2808 .Pq Vt str
2809 If
2810 .Va mrouted_enable
2811 is set to
2812 .Dq Li YES ,
2813 these are the flags to pass to the
2814 .Xr mrouted 8
2815 daemon.
2816 .It Va mroute6d_flags
2817 .Pq Vt str
2818 The IPv6 equivalent of
2819 .Va mrouted_flags .
2820 If
2821 .Va mroute6d_enable
2822 is set to
2823 .Dq Li YES ,
2824 these are the flags passed to the IPv6 multicast routing daemon.
2825 .It Va mroute6d_program
2826 .Pq Vt str
2827 If
2828 .Va mroute6d_enable
2829 is set to
2830 .Dq Li YES ,
2831 this is the path to the IPv6 multicast routing daemon.
2832 .It Va rtadvd_enable
2833 .Pq Vt bool
2834 If set to
2835 .Dq Li YES ,
2836 run the
2837 .Xr rtadvd 8
2838 daemon at boot time.
2839 The
2840 .Xr rtadvd 8
2841 utility sends ICMPv6 Router Advertisement messages to
2842 the interfaces specified in
2843 .Va rtadvd_interfaces .
2844 This should only be enabled with great care.
2845 You may want to fine-tune
2846 .Xr rtadvd.conf 5 .
2847 .It Va rtadvd_interfaces
2848 .Pq Vt str
2849 If
2850 .Va rtadvd_enable
2851 is set to
2852 .Dq Li YES
2853 this is the list of interfaces to use.
2854 .It Va ipxgateway_enable
2855 .Pq Vt bool
2856 If set to
2857 .Dq Li YES ,
2858 enable the routing of IPX traffic.
2859 .It Va ipxrouted_enable
2860 .Pq Vt bool
2861 If set to
2862 .Dq Li YES ,
2863 run the
2864 .Xr IPXrouted 8
2865 daemon at system boot time.
2866 .It Va ipxrouted_flags
2867 .Pq Vt str
2868 If
2869 .Va ipxrouted_enable
2870 is set to
2871 .Dq Li YES ,
2872 these are the flags to pass to the
2873 .Xr IPXrouted 8
2874 daemon.
2875 .It Va arpproxy_all
2876 .Pq Vt bool
2877 If set to
2878 .Dq Li YES ,
2879 enable global proxy ARP.
2880 .It Va forward_sourceroute
2881 .Pq Vt bool
2882 If set to
2883 .Dq Li YES
2884 and
2885 .Va gateway_enable
2886 is also set to
2887 .Dq Li YES ,
2888 source-routed packets are forwarded.
2889 .It Va accept_sourceroute
2890 .Pq Vt bool
2891 If set to
2892 .Dq Li YES ,
2893 the system will accept source-routed packets directed at it.
2894 .It Va rarpd_enable
2895 .Pq Vt bool
2896 If set to
2897 .Dq Li YES ,
2898 run the
2899 .Xr rarpd 8
2900 daemon at system boot time.
2901 .It Va rarpd_flags
2902 .Pq Vt str
2903 If
2904 .Va rarpd_enable
2905 is set to
2906 .Dq Li YES ,
2907 these are the flags to pass to the
2908 .Xr rarpd 8
2909 daemon.
2910 .It Va bootparamd_enable
2911 .Pq Vt bool
2912 If set to
2913 .Dq Li YES ,
2914 run the
2915 .Xr bootparamd 8
2916 daemon at system boot time.
2917 .It Va bootparamd_flags
2918 .Pq Vt str
2919 If
2920 .Va bootparamd_enable
2921 is set to
2922 .Dq Li YES ,
2923 these are the flags to pass to the
2924 .Xr bootparamd 8
2925 daemon.
2926 .It Va stf_interface_ipv4addr
2927 .Pq Vt str
2928 If not set to
2929 .Dq Li NO ,
2930 this is the local IPv4 address for 6to4 (IPv6 over IPv4 tunneling
2931 interface).
2932 Specify this entry to enable the 6to4 interface.
2933 .It Va stf_interface_ipv4plen
2934 .Pq Vt int
2935 Prefix length for 6to4 IPv4 addresses, to limit peer address range.
2936 An effective value is 0-31.
2937 .It Va stf_interface_ipv6_ifid
2938 .Pq Vt str
2939 IPv6 interface ID for
2940 .Xr stf 4 .
2941 This can be set to
2942 .Dq Li AUTO .
2943 .It Va stf_interface_ipv6_slaid
2944 .Pq Vt str
2945 IPv6 Site Level Aggregator for
2946 .Xr stf 4 .
2947 .It Va ipv6_faith_prefix
2948 .Pq Vt str
2949 If not set to
2950 .Dq Li NO ,
2951 this is the faith prefix to enable a FAITH IPv6-to-IPv4 TCP
2952 translator.
2953 You also need
2954 .Xr faithd 8
2955 setup.
2956 .It Va ipv6_ipv4mapping
2957 .Pq Vt bool
2958 If set to
2959 .Dq Li YES
2960 this enables IPv4 mapped IPv6 address communication (like
2961 .Li ::ffff:a.b.c.d ) .
2962 .It Va rtsold_enable
2963 .Pq Vt bool
2964 Set to
2965 .Dq Li YES
2966 to enable the
2967 .Xr rtsold 8
2968 daemon to send ICMPv6 Router Solicitation messages.
2969 .It Va rtsold_flags
2970 .Pq Vt str
2971 If
2972 .Va rtsold_enable
2973 is set to
2974 .Dq Li YES ,
2975 these are the flags to pass to
2976 .Xr rtsold 8 .
2977 .It Va rtsol_flags
2978 .Pq Vt str
2979 For interfaces configured with the
2980 .Dq Li inet6 accept_rtadv
2981 keyword, these are the flags to pass to
2982 .Xr rtsol 8 .
2983 .Pp
2984 Note that
2985 .Va rtsold_enable
2986 is mutually exclusive to
2987 .Va rtsol_flags ;
2988 .Va rtsold_enable
2989 takes precedence.
2990 .It Va atm_enable
2991 .Pq Vt bool
2992 Set to
2993 .Dq Li YES
2994 to enable the configuration of ATM interfaces at system boot time.
2995 For all of the ATM variables described below, please refer to the
2996 .Xr atm 8
2997 manual page for further details on the available command parameters.
2998 Also refer to the files in
2999 .Pa /usr/share/examples/atm
3000 for more detailed configuration information.
3001 .It Va atm_load
3002 .Pq Vt str
3003 This is a list of physical ATM interface drivers to load.
3004 Typical values are
3005 .Dq Li hfa_pci
3006 and/or
3007 .Dq Li hea_pci .
3008 .It Va atm_netif_ Ns Aq Ar intf
3009 .Pq Vt str
3010 For the ATM physical interface
3011 .Ar intf ,
3012 this variable defines the name prefix and count for the ATM network
3013 interfaces to be created.
3014 The value will be passed as the parameters of an
3015 .Dq Nm atm Cm "set netif" Ar intf
3016 command.
3017 .It Va atm_sigmgr_ Ns Aq Ar intf
3018 .Pq Vt str
3019 For the ATM physical interface
3020 .Ar intf ,
3021 this variable defines the ATM signalling manager to be used.
3022 The value will be passed as the parameters of an
3023 .Dq Nm atm Cm attach Ar intf
3024 command.
3025 .It Va atm_prefix_ Ns Aq Ar intf
3026 .Pq Vt str
3027 For the ATM physical interface
3028 .Ar intf ,
3029 this variable defines the NSAP prefix for interfaces using a UNI signalling
3030 manager.
3031 If set to
3032 .Dq Li ILMI ,
3033 the prefix will automatically be set via the
3034 .Xr ilmid 8
3035 daemon.
3036 Otherwise, the value will be passed as the parameters of an
3037 .Dq Nm atm Cm "set prefix" Ar intf
3038 command.
3039 .It Va atm_macaddr_ Ns Aq Ar intf
3040 .Pq Vt str
3041 For the ATM physical interface
3042 .Ar intf ,
3043 this variable defines the MAC address for interfaces using a UNI signalling
3044 manager.
3045 If set to
3046 .Dq Li NO ,
3047 the hardware MAC address contained in the ATM interface card will be used.
3048 Otherwise, the value will be passed as the parameters of an
3049 .Dq Nm atm Cm "set mac" Ar intf
3050 command.
3051 .It Va atm_arpserver_ Ns Aq Ar netif
3052 .Pq Vt str
3053 For the ATM network interface
3054 .Ar netif ,
3055 this variable defines the ATM address for a host which is to provide ATMARP
3056 service.
3057 This variable is only applicable to interfaces using a UNI signalling
3058 manager.
3059 If set to
3060 .Dq Li local ,
3061 this host will become an ATMARP server.
3062 The value will be passed as the parameters of an
3063 .Dq Nm atm Cm "set arpserver" Ar netif
3064 command.
3065 .It Va atm_scsparp_ Ns Aq Ar netif
3066 .Pq Vt bool
3067 If set to
3068 .Dq Li YES ,
3069 SCSP/ATMARP service for the network interface
3070 .Ar netif
3071 will be initiated using the
3072 .Xr scspd 8
3073 and
3074 .Xr atmarpd 8
3075 daemons.
3076 This variable is only applicable if
3077 .Va atm_arpserver_ Ns Aq Ar netif
3078 is set to
3079 .Dq Li local .
3080 .It Va atm_pvcs
3081 .Pq Vt str
3082 Set to the list of ATM PVCs to be added at system
3083 boot time.
3084 For each whitespace separated
3085 .Ar element
3086 in the value, an
3087 .Va atm_pvc_ Ns Aq Ar element
3088 variable is assumed to exist.
3089 The value of each of these variables
3090 will be passed as the parameters of an
3091 .Dq Nm atm Cm "add pvc"
3092 command.
3093 .It Va atm_arps
3094 .Pq Vt str
3095 Set to the list of permanent ATM ARP entries to be added
3096 at system boot time.
3097 For each whitespace separated
3098 .Ar element
3099 in the value, an
3100 .Va atm_arp_ 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 arp"
3105 command.
3106 .It Va natm_interfaces
3107 .Pq Vt str
3108 Set to the list of
3109 .Xr natm 4
3110 interfaces that will also be used for HARP through
3111 .Xr harp 4 .
3112 If this list is not empty all interfaces in the list will be brought up
3113 with
3114 .Xr ifconfig 8
3115 and
3116 .Xr harp 4
3117 will be loaded.
3118 For this to work the interface drivers must be either compiled into the
3119 kernel or must reside on the root partition.
3120 .It Va keybell
3121 .Pq Vt str
3122 The keyboard bell sound.
3123 Set to
3124 .Dq Li normal ,
3125 .Dq Li visual ,
3126 .Dq Li off ,
3127 or
3128 .Dq Li NO
3129 if the default behavior is desired.
3130 For details, refer to the
3131 .Xr kbdcontrol 1
3132 manpage.
3133 .It Va keyboard
3134 .Pq Vt str
3135 If set to a non-null string, the virtual console's keyboard input is
3136 set to this device.
3137 .It Va keymap
3138 .Pq Vt str
3139 If set to
3140 .Dq Li NO ,
3141 no keymap is installed, otherwise the value is used to install
3142 the keymap file found in
3143 .Pa /usr/share/syscons/keymaps/ Ns Ao Ar value Ac Ns Pa .kbd
3144 (if using
3145 .Xr syscons 4 ) or
3146 .Pa /usr/share/vt/keymaps/ Ns Ao Ar value Ac Ns Pa .kbd
3147 (if using
3148 .Xr vt 4 ) .
3149 .It Va keyrate
3150 .Pq Vt str
3151 The keyboard repeat speed.
3152 Set to
3153 .Dq Li slow ,
3154 .Dq Li normal ,
3155 .Dq Li fast ,
3156 or
3157 .Dq Li NO
3158 if the default behavior is desired.
3159 .It Va keychange
3160 .Pq Vt str
3161 If not set to
3162 .Dq Li NO ,
3163 attempt to program the function keys with the value.
3164 The value should
3165 be a single string of the form:
3166 .Dq Ar funkey_number new_value Op Ar funkey_number new_value ... .
3167 .It Va cursor
3168 .Pq Vt str
3169 Can be set to the value of
3170 .Dq Li normal ,
3171 .Dq Li blink ,
3172 .Dq Li destructive ,
3173 or
3174 .Dq Li NO
3175 to set the cursor behavior explicitly or choose the default behavior.
3176 .It Va scrnmap
3177 .Pq Vt str
3178 If set to
3179 .Dq Li NO ,
3180 no screen map is installed, otherwise the value is used to install
3181 the screen map file in
3182 .Pa /usr/share/syscons/scrnmaps/ Ns Aq Ar value .
3183 This parameter is ignored when using
3184 .Xr vt 4
3185 as the console driver.
3186 .It Va font8x16
3187 .Pq Vt str
3188 If set to
3189 .Dq Li NO ,
3190 the default 8x16 font value is used for screen size requests, otherwise
3191 the value in
3192 .Pa /usr/share/syscons/fonts/ Ns Aq Ar value
3193 or
3194 .Pa /usr/share/vt/fonts/ Ns Aq Ar value
3195 is used (depending on the console driver being used).
3196 .It Va font8x14
3197 .Pq Vt str
3198 If set to
3199 .Dq Li NO ,
3200 the default 8x14 font value is used for screen size requests, otherwise
3201 the value in
3202 .Pa /usr/share/syscons/fonts/ Ns Aq Ar value
3203 or
3204 .Pa /usr/share/vt/fonts/ Ns Aq Ar value
3205 is used (depending on the console driver being used).
3206 .It Va font8x8
3207 .Pq Vt str
3208 If set to
3209 .Dq Li NO ,
3210 the default 8x8 font value is used for screen size requests, otherwise
3211 the value in
3212 .Pa /usr/share/syscons/fonts/ Ns Aq Ar value
3213 or
3214 .Pa /usr/share/vt/fonts/ Ns Aq Ar value
3215 is used (depending on the console driver being used).
3216 .It Va blanktime
3217 .Pq Vt int
3218 If set to
3219 .Dq Li NO ,
3220 the default screen blanking interval is used, otherwise it is set
3221 to
3222 .Ar value
3223 seconds.
3224 .It Va saver
3225 .Pq Vt str
3226 If not set to
3227 .Dq Li NO ,
3228 this is the actual screen saver to use
3229 .Li ( blank , snake , daemon ,
3230 etc).
3231 .It Va moused_nondefault_enable
3232 .Pq Vt str
3233 If set to
3234 .Dq Li NO ,
3235 the mouse device specified on
3236 the command line is not automatically treated as enabled by the
3237 .Pa /etc/rc.d/moused
3238 script.
3239 Having this variable set to
3240 .Dq Li YES
3241 allows a
3242 .Xr usb 4
3243 mouse,
3244 for example,
3245 to be enabled as soon as it is plugged in.
3246 .It Va moused_enable
3247 .Pq Vt str
3248 If set to
3249 .Dq Li YES ,
3250 the
3251 .Xr moused 8
3252 daemon is started for doing cut/paste selection on the console.
3253 .It Va moused_type
3254 .Pq Vt str
3255 This is the protocol type of the mouse connected to this host.
3256 This variable must be set if
3257 .Va moused_enable
3258 is set to
3259 .Dq Li YES .
3260 The
3261 .Xr moused 8
3262 daemon
3263 is able to detect the appropriate mouse type automatically in many cases.
3264 Set this variable to
3265 .Dq Li auto
3266 to let the daemon detect it, or
3267 select one from the following list if the automatic detection fails.
3268 .Pp
3269 If the mouse is attached to the PS/2 mouse port, choose
3270 .Dq Li auto
3271 or
3272 .Dq Li ps/2 ,
3273 regardless of the brand and model of the mouse.
3274 Likewise, if the
3275 mouse is attached to the bus mouse port, choose
3276 .Dq Li auto
3277 or
3278 .Dq Li busmouse .
3279 All other protocols are for serial mice and will not work with
3280 the PS/2 and bus mice.
3281 If this is a USB mouse,
3282 .Dq Li auto
3283 is the only protocol type which will work.
3284 .Pp
3285 .Bl -tag -width ".Li x10mouseremote" -compact
3286 .It Li microsoft
3287 Microsoft mouse (serial)
3288 .It Li intellimouse
3289 Microsoft IntelliMouse (serial)
3290 .It Li mousesystems
3291 Mouse systems Corp.\& mouse (serial)
3292 .It Li mmseries
3293 MM Series mouse (serial)
3294 .It Li logitech
3295 Logitech mouse (serial)
3296 .It Li busmouse
3297 A bus mouse
3298 .It Li mouseman
3299 Logitech MouseMan and TrackMan (serial)
3300 .It Li glidepoint
3301 ALPS GlidePoint (serial)
3302 .It Li thinkingmouse
3303 Kensington ThinkingMouse (serial)
3304 .It Li ps/2
3305 PS/2 mouse
3306 .It Li mmhittab
3307 MM HitTablet (serial)
3308 .It Li x10mouseremote
3309 X10 MouseRemote (serial)
3310 .It Li versapad
3311 Interlink VersaPad (serial)
3312 .El
3313 .Pp
3314 Even if the mouse is not in the above list, it may be compatible
3315 with one in the list.
3316 Refer to the manual page for
3317 .Xr moused 8
3318 for compatibility information.
3319 .Pp
3320 It should also be noted that while this is enabled, any
3321 other client of the mouse (such as an X server) should access
3322 the mouse through the virtual mouse device,
3323 .Pa /dev/sysmouse ,
3324 and configure it as a
3325 .Dq Li sysmouse
3326 type mouse, since all
3327 mouse data is converted to this single canonical format when
3328 using
3329 .Xr moused 8 .
3330 If the client program does not support the
3331 .Dq Li sysmouse
3332 type,
3333 specify the
3334 .Dq Li mousesystems
3335 type.
3336 It is the second preferred type.
3337 .It Va moused_port
3338 .Pq Vt str
3339 If
3340 .Va moused_enable
3341 is set to
3342 .Dq Li YES ,
3343 this is the actual port the mouse is on.
3344 It might be
3345 .Pa /dev/cuau0
3346 for a COM1 serial mouse,
3347 .Pa /dev/psm0
3348 for a PS/2 mouse or
3349 .Pa /dev/mse0
3350 for a bus mouse, for example.
3351 .It Va moused_flags
3352 .Pq Vt str
3353 If
3354 .Va moused_flags
3355 is set, its value is used as an additional set of flags to pass to the
3356 .Xr moused 8
3357 daemon.
3358 .It Va "moused_" Ns Ar XXX Ns Va "_flags"
3359 When
3360 .Va moused_nondefault_enable
3361 is enabled, and a
3362 .Xr moused 8
3363 daemon is started for a non-default port, the
3364 .Va "moused_" Ns Ar XXX Ns Va "_flags"
3365 set of options has precedence over and replaces the default
3366 .Va moused_flags
3367 (where
3368 .Ar XXX
3369 is the name of the non-default port, i.e.,\&
3370 .Ar ums0 ) .
3371 By setting
3372 .Va "moused_" Ns Ar XXX Ns Va "_flags"
3373 it is possible to set up a different set of default flags for each
3374 .Xr moused 8
3375 instance.
3376 For example, you can use
3377 .Dq Li "-3"
3378 for the default
3379 .Va moused_flags
3380 to make your laptop's touchpad more comfortable to use,
3381 but an empty set of options for
3382 .Va moused_ums0_flags
3383 when your
3384 .Xr usb 4
3385 mouse has three or more buttons.
3386 .It Va mousechar_start
3387 .Pq Vt int
3388 If set to
3389 .Dq Li NO ,
3390 the default mouse cursor character range
3391 .Li 0xd0 Ns - Ns Li 0xd3
3392 is used,
3393 otherwise the range start is set
3394 to
3395 .Ar value
3396 character, see
3397 .Xr vidcontrol 1 .
3398 Use if the default range is occupied in the language code table.
3399 .It Va allscreens_flags
3400 .Pq Vt str
3401 If set,
3402 .Xr vidcontrol 1
3403 is run with these options for each of the virtual terminals
3404 .Pq Pa /dev/ttyv* .
3405 For example,
3406 .Dq Fl m Cm on
3407 will enable the mouse pointer on all virtual terminals
3408 if
3409 .Va moused_enable
3410 is set to
3411 .Dq Li YES .
3412 .It Va allscreens_kbdflags
3413 .Pq Vt str
3414 If set,
3415 .Xr kbdcontrol 1
3416 is run with these options for each of the virtual terminals
3417 .Pq Pa /dev/ttyv* .
3418 For example,
3419 .Dq Fl h Li 200
3420 will set the
3421 .Xr syscons 4
3422 or
3423 .Xr vt 4
3424 scrollback (history) buffer to 200 lines.
3425 .It Va cron_enable
3426 .Pq Vt bool
3427 If set to
3428 .Dq Li YES ,
3429 run the
3430 .Xr cron 8
3431 daemon at system boot time.
3432 .It Va cron_program
3433 .Pq Vt str
3434 Path to
3435 .Xr cron 8
3436 (default
3437 .Pa /usr/sbin/cron ) .
3438 .It Va cron_flags
3439 .Pq Vt str
3440 If
3441 .Va cron_enable
3442 is set to
3443 .Dq Li YES ,
3444 these are the flags to pass to
3445 .Xr cron 8 .
3446 .It Va cron_dst
3447 .Pq Vt bool
3448 If set to
3449 .Dq Li YES ,
3450 enable the special handling of transitions to and from the
3451 Daylight Saving Time in
3452 .Xr cron 8
3453 (equivalent to using the flag
3454 .Fl s ) .
3455 .It Va lpd_program
3456 .Pq Vt str
3457 Path to
3458 .Xr lpd 8
3459 (default
3460 .Pa /usr/sbin/lpd ) .
3461 .It Va lpd_enable
3462 .Pq Vt bool
3463 If set to
3464 .Dq Li YES ,
3465 run the
3466 .Xr lpd 8
3467 daemon at system boot time.
3468 .It Va lpd_flags
3469 .Pq Vt str
3470 If
3471 .Va lpd_enable
3472 is set to
3473 .Dq Li YES ,
3474 these are the flags to pass to the
3475 .Xr lpd 8
3476 daemon.
3477 .It Va chkprintcap_enable
3478 .Pq Vt bool
3479 If set to
3480 .Dq Li YES ,
3481 run the
3482 .Xr chkprintcap 8
3483 command before starting the
3484 .Xr lpd 8
3485 daemon.
3486 .It Va chkprintcap_flags
3487 .Pq Vt str
3488 If
3489 .Va lpd_enable
3490 and
3491 .Va chkprintcap_enable
3492 are set to
3493 .Dq Li YES ,
3494 these are the flags to pass to the
3495 .Xr chkprintcap 8
3496 program.
3497 The default is
3498 .Dq Li -d ,
3499 which causes missing directories to be created.
3500 .It Va mta_start_script
3501 .Pq Vt str
3502 This variable specifies the full path to the script to run to start
3503 a mail transfer agent.
3504 The default is
3505 .Pa /etc/rc.sendmail .
3506 The
3507 .Va sendmail_*
3508 variables which
3509 .Pa /etc/rc.sendmail
3510 uses are documented in the
3511 .Xr rc.sendmail 8
3512 manual page.
3513 .It Va dumpdev
3514 .Pq Vt str
3515 Indicates the device (usually a swap partition) to which a crash dump
3516 should be written in the event of a system crash.
3517 If the value of this variable is
3518 .Dq Li AUTO ,
3519 the first suitable swap device listed in
3520 .Pa /etc/fstab
3521 will be used as dump device.
3522 Otherwise, the value of this variable is passed as the argument to
3523 .Xr dumpon 8 .
3524 To disable crash dumps, set this variable to
3525 .Dq Li NO .
3526 .It Va dumpdir
3527 .Pq Vt str
3528 When the system reboots after a crash and a crash dump is found on the
3529 device specified by the
3530 .Va dumpdev
3531 variable,
3532 .Xr savecore 8
3533 will save that crash dump and a copy of the kernel to the directory
3534 specified by the
3535 .Va dumpdir
3536 variable.
3537 The default value is
3538 .Pa /var/crash .
3539 Set to
3540 .Dq Li NO
3541 to not run
3542 .Xr savecore 8
3543 at boot time when
3544 .Va dumpdir
3545 is set.
3546 .It Va savecore_flags
3547 .Pq Vt str
3548 If crash dumps are enabled, these are the flags to pass to the
3549 .Xr savecore 8
3550 utility.
3551 .It Va quota_enable
3552 .Pq Vt bool
3553 Set to
3554 .Dq Li YES
3555 to turn on user and group disk quotas on system startup via the
3556 .Xr quotaon 8
3557 command for all file systems marked as having quotas enabled in
3558 .Pa /etc/fstab .
3559 The kernel must be built with
3560 .Cd "options QUOTA"
3561 for disk quotas to function.
3562 .It Va check_quotas
3563 .Pq Vt bool
3564 Set to
3565 .Dq Li YES
3566 to enable user and group disk quota checking via the
3567 .Xr quotacheck 8
3568 command.
3569 .It Va quotacheck_flags
3570 .Pq Vt str
3571 If
3572 .Va quota_enable
3573 is set to
3574 .Dq Li YES ,
3575 and
3576 .Va check_quotas
3577 is set to
3578 .Dq Li YES ,
3579 these are the flags to pass to the
3580 .Xr quotacheck 8
3581 utility.
3582 The default is
3583 .Dq Li "-a" ,
3584 which checks quotas for all file systems with quotas enabled in
3585 .Pa /etc/fstab .
3586 .It Va quotaon_flags
3587 .Pq Vt str
3588 If
3589 .Va quota_enable
3590 is set to
3591 .Dq Li YES ,
3592 these are the flags to pass to the
3593 .Xr quotaon 8
3594 utility.
3595 The default is
3596 .Dq Li "-a" ,
3597 which enables quotas for all file systems with quotas enabled in
3598 .Pa /etc/fstab .
3599 .It Va quotaoff_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 quotaoff 8
3607 utility when shutting down the quota system.
3608 The default is
3609 .Dq Li "-a" ,
3610 which disables quotas for all file systems with quotas enabled in
3611 .Pa /etc/fstab .
3612 .It Va accounting_enable
3613 .Pq Vt bool
3614 Set to
3615 .Dq Li YES
3616 to enable system accounting through the
3617 .Xr accton 8
3618 facility.
3619 .It Va ibcs2_enable
3620 .Pq Vt bool
3621 Set to
3622 .Dq Li YES
3623 to enable iBCS2 (SCO) binary emulation at system initial boot
3624 time.
3625 .It Va ibcs2_loaders
3626 .Pq Vt str
3627 If not set to
3628 .Dq Li NO
3629 and if
3630 .Va ibcs2_enable
3631 is set to
3632 .Dq Li YES ,
3633 this specifies a list of additional iBCS2 loaders to enable.
3634 .It Va firstboot_sentinel
3635 .Pq Vt str
3636 This variable specifies the full path to a
3637 .Dq first boot
3638 sentinel file.
3639 If a file exists with this path,
3640 .Pa rc.d
3641 scripts with the
3642 .Dq firstboot
3643 keyword will be run on startup and the sentinel file will be deleted
3644 after the boot process completes.
3645 The sentinel file must be located on a writable file system which is
3646 mounted no later than
3647 .Va early_late_divider
3648 to function properly.
3649 The default is
3650 .Pa /firstboot .
3651 .It Va linux_enable
3652 .Pq Vt bool
3653 Set to
3654 .Dq Li YES
3655 to enable Linux/ELF binary emulation at system initial
3656 boot time.
3657 .It Va svr4_enable
3658 .Pq Vt bool
3659 If set to
3660 .Dq Li YES ,
3661 enable SysVR4 emulation at boot time.
3662 .It Va sysvipc_enable
3663 .Pq Vt bool
3664 If set to
3665 .Dq Li YES ,
3666 load System V IPC primitives at boot time.
3667 .It Va clear_tmp_enable
3668 .Pq Vt bool
3669 Set to
3670 .Dq Li YES
3671 to have
3672 .Pa /tmp
3673 cleaned at startup.
3674 .It Va clear_tmp_X
3675 .Pq Vt bool
3676 Set to
3677 .Dq Li NO
3678 to disable removing of X11 lock files,
3679 and the removal and (secure) recreation
3680 of the various socket directories for X11
3681 related programs.
3682 .It Va ldconfig_paths
3683 .Pq Vt str
3684 Set to the list of shared library paths to use with
3685 .Xr ldconfig 8 .
3686 NOTE:
3687 .Pa /usr/lib
3688 will always be added first, so it need not appear in this list.
3689 .It Va ldconfig32_paths
3690 .Pq Vt str
3691 Set to the list of 32-bit compatibility shared library paths to
3692 use with
3693 .Xr ldconfig 8 .
3694 .It Va ldconfig_paths_aout
3695 .Pq Vt str
3696 Set to the list of shared library paths to use with
3697 .Xr ldconfig 8
3698 legacy
3699 .Xr a.out 5
3700 support.
3701 .It Va ldconfig_insecure
3702 .Pq Vt bool
3703 The
3704 .Xr ldconfig 8
3705 utility normally refuses to use directories
3706 which are writable by anyone except root.
3707 Set this variable to
3708 .Dq Li YES
3709 to disable that security check during system startup.
3710 .It Va ldconfig_local_dirs
3711 .Pq Vt str
3712 Set to the list of local
3713 .Xr ldconfig 8
3714 directories.
3715 The names of all files in the directories listed will be
3716 passed as arguments to
3717 .Xr ldconfig 8 .
3718 .It Va ldconfig_local32_dirs
3719 .Pq Vt str
3720 Set to the list of local 32-bit compatibility
3721 .Xr ldconfig 8
3722 directories.
3723 The names of all files in the directories listed will be
3724 passed as arguments to
3725 .Dq Nm ldconfig Fl 32 .
3726 .It Va kern_securelevel_enable
3727 .Pq Vt bool
3728 Set to
3729 .Dq Li YES
3730 to set the kernel security level at system startup.
3731 .It Va kern_securelevel
3732 .Pq Vt int
3733 The kernel security level to set at startup.
3734 The allowed range of
3735 .Ar value
3736 ranges from \-1 (the compile time default) to 3 (the
3737 most secure).
3738 See
3739 .Xr security 7
3740 for the list of possible security levels and their effect
3741 on system operation.
3742 .It Va sshd_program
3743 .Pq Vt str
3744 Path to the SSH server program
3745 .Pa ( /usr/sbin/sshd
3746 is the default).
3747 .It Va sshd_enable
3748 .Pq Vt bool
3749 Set to
3750 .Dq Li YES
3751 to start
3752 .Xr sshd 8
3753 at system boot time.
3754 .It Va sshd_flags
3755 .Pq Vt str
3756 If
3757 .Va sshd_enable
3758 is set to
3759 .Dq Li YES ,
3760 these are the flags to pass to the
3761 .Xr sshd 8
3762 daemon.
3763 .It Va ftpd_program
3764 .Pq Vt str
3765 Path to the FTP server program
3766 .Pa ( /usr/libexec/ftpd
3767 is the default).
3768 .It Va ftpd_enable
3769 .Pq Vt bool
3770 Set to
3771 .Dq Li YES
3772 to start
3773 .Xr ftpd 8
3774 as a stand-alone daemon at system boot time.
3775 .It Va ftpd_flags
3776 .Pq Vt str
3777 If
3778 .Va ftpd_enable
3779 is set to
3780 .Dq Li YES ,
3781 these are the additional flags to pass to the
3782 .Xr ftpd 8
3783 daemon.
3784 .It Va watchdogd_enable
3785 .Pq Vt bool
3786 If set to
3787 .Dq Li YES ,
3788 start the
3789 .Xr watchdogd 8
3790 daemon at boot time.
3791 This requires that the kernel have been compiled with a
3792 .Xr watchdog 4
3793 compatible device.
3794 .It Va watchdogd_flags
3795 .Pq Vt str
3796 If
3797 .Va watchdogd_enable
3798 is set to
3799 .Dq Li YES ,
3800 these are the flags passed to the
3801 .Xr watchdogd 8
3802 daemon.
3803 .It Va devfs_rulesets
3804 .Pq Vt str
3805 List of files containing sets of rules for
3806 .Xr devfs 8 .
3807 .It Va devfs_system_ruleset
3808 .Pq Vt str
3809 Rule name(s) to apply to the system
3810 .Pa /dev
3811 itself.
3812 .It Va devfs_set_rulesets
3813 .Pq Vt str
3814 Pairs of already-mounted
3815 .Pa dev
3816 directories and rulesets that should be applied to them.
3817 For example: /mount/dev=ruleset_name
3818 .It Va devfs_load_rulesets
3819 .Pq Vt bool
3820 If set, always load the default rulesets listed in
3821 .Va devfs_rulesets .
3822 .It Va performance_cx_lowest
3823 .Pq Vt str
3824 CPU idle state to use while on AC power.
3825 The string
3826 .Dq Li LOW
3827 indicates that
3828 .Xr acpi 4
3829 should use the lowest power state available while
3830 .Dq Li HIGH
3831 indicates that the lowest latency state (less power savings) should be used.
3832 .It Va performance_cpu_freq
3833 .Pq Vt str
3834 CPU clock frequency to use while on AC power.
3835 The string
3836 .Dq Li LOW
3837 indicates that
3838 .Xr cpufreq 4
3839 should use the lowest frequency available while
3840 .Dq Li HIGH
3841 indicates that the highest frequency (less power savings) should be used.
3842 .It Va economy_cx_lowest
3843 .Pq Vt str
3844 CPU idle state to use when off AC power.
3845 The string
3846 .Dq Li LOW
3847 indicates that
3848 .Xr acpi 4
3849 should use the lowest power state available while
3850 .Dq Li HIGH
3851 indicates that the lowest latency state (less power savings) should be used.
3852 .It Va economy_cpu_freq
3853 .Pq Vt str
3854 CPU clock frequency to use when off AC power.
3855 The string
3856 .Dq Li LOW
3857 indicates that
3858 .Xr cpufreq 4
3859 should use the lowest frequency available while
3860 .Dq Li HIGH
3861 indicates that the highest frequency (less power savings) should be used.
3862 .It Va jail_enable
3863 .Pq Vt bool
3864 If set to
3865 .Dq Li NO ,
3866 any configured jails will not be started.
3867 .It Va jail_conf
3868 .Pq Vt str
3869 The configuration filename used by
3870 .Xr jail 8
3871 utility.
3872 The default value is
3873 .Pa /etc/jail.conf .
3874 .It Va jail_parallel_start
3875 .Pq Vt bool
3876 If set to
3877 .Dq Li YES ,
3878 all configured jails will be started in the background (in parallel).
3879 .It Va jail_flags
3880 .Pq Vt str
3881 Unset by default.
3882 When set, use as default value for
3883 .Va jail_ Ns Ao Ar jname Ac Ns Va _flags
3884 for every jail in
3885 .Va jail_list .
3886 .It Va jail_list
3887 .Pq Vt str
3888 A space separated list of names for jails.
3889 If this variable is empty,
3890 all of
3891 .Xr jail 8
3892 instances in the configuration file will be configured.
3893 This is purely a configuration aid to help identify and
3894 configure multiple jails.
3895 The names specified in this list will be used to
3896 identify settings common to an instance of a jail,
3897 and should contain alphanumeric characters only.
3898 The literal jail name of
3899 .Dq Li 0
3900 .Pq zero
3901 is not allowed.
3902 .It Va jail_* variables
3903 Note that older releases supported per-jail configuration via
3904 .Xr rc.conf 5
3905 variables.
3906 For example,
3907 hostname of a jail named
3908 .Li vjail
3909 was able to be set by
3910 .Li jail_vjail_hostname .
3911 These per-jail configuration variables are now obsolete in favor of
3912 .Xr jail 8
3913 configuration file.
3914 For backward compatibility,
3915 when per-jail configuration variables are defined,
3916 .Xr jail 8
3917 configuration files are created as
3918 .Pa /var/run/jail. Ns Ao Ar jname Ac Ns Pa .conf
3919 and used.
3920 .Pp
3921 The following per-jail parameters are handled by
3922 .Pa rc.d/jail
3923 script out of their corresponding
3924 .Nm
3925 variables.
3926 In addition to them, parameters in
3927 .Va jail_ Ns Ao Ar jname Ac Ns Va _parameters
3928 will be added to the configuration file.
3929 They must be a semi-colon
3930 .Pq Ql \&;
3931 delimited list of
3932 .Dq key=value .
3933 For more details,
3934 see
3935 .Xr jail 8
3936 manual page.
3937 .Bl  -tag -width "host.hostname" -offset indent
3938 .It Li path
3939 set from
3940 .Va jail_ Ns Ao Ar jname Ac Ns Va _rootdir
3941 .It Li host.hostname
3942 set from
3943 .Va jail_ Ns Ao Ar jname Ac Ns Va _hostname
3944 .It Li exec.consolelog
3945 set from
3946 .Va jail_ Ns Ao Ar jname Ac Ns Va _consolelog .
3947 The default value is
3948 .Pa /var/log/jail_ Ao Ar jname Ac Pa _console.log .
3949 .It Li interface
3950 set from
3951 .Va jail_ Ns Ao Ar jname Ac Ns Va _interface .
3952 .It Li vnet.interface
3953 set from
3954 .Va jail_ Ns Ao Ar jname Ac Ns Va _vnet_interface .
3955 This implies
3956 .Li vnet
3957 parameter will be enabled and cannot be specified with
3958 .Va jail_ Ns Ao Ar jname Ac Ns Va _interface ,
3959 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip
3960 and/or
3961 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip_multi Ns Aq Ar n
3962 at the same time.
3963 .It Li fstab
3964 set from
3965 .Va jail_ Ns Ao Ar jname Ac Ns Va _fstab
3966 .It Li mount
3967 set from
3968 .Va jail_ Ns Ao Ar jname Ac Ns Va _procfs_enable .
3969 .It Li exec.fib
3970 set from
3971 .Va jail_ Ns Ao Ar jname Ac Ns Va _fib
3972 .It Li exec.start
3973 set from
3974 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_start .
3975 The parameter name was
3976 .Li command
3977 in some older releases.
3978 .It Li exec.prestart
3979 set from
3980 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_prestart
3981 .It Li exec.poststart
3982 set from
3983 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_poststart
3984 .It Li exec.stop
3985 set from
3986 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_stop
3987 .It Li exec.prestop
3988 set from
3989 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_prestop
3990 .It Li exec.poststop
3991 set from
3992 .Va jail_ Ns Ao Ar jname Ac Ns Va _exec_poststop
3993 .It Li ip4.addr
3994 set if
3995 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip
3996 or
3997 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip_multi Ns Aq Ar n
3998 contain IPv4 addresses
3999 .It Li ip6.addr
4000 set if
4001 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip
4002 or
4003 .Va jail_ Ns Ao Ar jname Ac Ns Va _ip_multi Ns Aq Ar n
4004 contain IPv6 addresses
4005 .It Li allow.mount
4006 set from
4007 .Va jail_ Ns Ao Ar jname Ac Ns Va _mount_enable
4008 .It Li mount.devfs
4009 set from
4010 .Va jail_ Ns Ao Ar jname Ac Ns Va _devfs_enable
4011 .It Li devfs_ruleset
4012 set from
4013 .Va jail_ Ns Ao Ar jname Ac Ns Va _devfs_ruleset .
4014 This must be an integer,
4015 not a string.
4016 .It Li mount.fdescfs
4017 set from
4018 .Va jail_ Ns Ao Ar jname Ac Ns Va _fdescfs_enable
4019 .It Li allow.set_hostname
4020 set from
4021 .Va jail_ Ns Ao Ar jname Ac Ns Va _set_hostname_allow
4022 .It Li allow.rawsocket
4023 set from
4024 .Va jail_ Ns Ao Ar jname Ac Ns Va _socket_unixiproute_only
4025 .It Li allow.sysvipc
4026 set from
4027 .Va jail_ Ns Ao Ar jname Ac Ns Va _sysvipc_allow
4028 .El
4029 .\" -----------------------------------------------------
4030 .It Va harvest_interrupt
4031 .Pq Vt bool
4032 Set to
4033 .Dq Li YES
4034 to use hardware interrupts as an entropy source.
4035 Refer to
4036 .Xr random 4
4037 for more information.
4038 .It Va harvest_ethernet
4039 .Pq Vt bool
4040 Set to
4041 .Dq Li YES
4042 to use LAN traffic as an entropy source.
4043 Refer to
4044 .Xr random 4
4045 for more information.
4046 .It Va harvest_p_to_p
4047 .Pq Vt bool
4048 Set to
4049 .Dq Li YES
4050 to use serial line traffic as an entropy source.
4051 Refer to
4052 .Xr random 4
4053 for more information.
4054 .It Va entropy_dir
4055 .Pq Vt str
4056 Set to
4057 .Dq Li NO
4058 to disable caching entropy via
4059 .Xr cron 8 .
4060 Otherwise set to the directory used to store entropy files in.
4061 .It Va entropy_file
4062 .Pq Vt str
4063 Set to
4064 .Dq Li NO
4065 to disable caching entropy through reboots.
4066 Otherwise set to the filename used to store cached entropy through
4067 reboots.
4068 This file should be located on the root file system to seed the
4069 .Xr random 4
4070 device as early as possible in the boot process.
4071 .It Va entropy_save_sz
4072 .Pq Vt int
4073 Size of the entropy cache files saved by
4074 .Nm save-entropy
4075 periodically.
4076 .It Va entropy_save_num
4077 .Pq Vt int
4078 Number of entropy cache files to save by
4079 .Nm save-entropy
4080 periodically.
4081 .It Va ipsec_enable
4082 .Pq Vt bool
4083 Set to
4084 .Dq Li YES
4085 to run
4086 .Xr setkey 8
4087 on
4088 .Va ipsec_file
4089 at boot time.
4090 .It Va ipsec_file
4091 .Pq Vt str
4092 Configuration file for
4093 .Xr setkey 8 .
4094 .It Va dmesg_enable
4095 .Pq Vt bool
4096 Set to
4097 .Dq Li YES
4098 to save
4099 .Xr dmesg 8
4100 to
4101 .Pa /var/run/dmesg.boot
4102 on boot.
4103 .It Va rcshutdown_timeout
4104 .Pq Vt int
4105 If set, start a watchdog timer in the background which will terminate
4106 .Pa rc.shutdown
4107 if
4108 .Xr shutdown 8
4109 has not completed within the specified time (in seconds).
4110 Notice that in addition to this soft timeout,
4111 .Xr init 8
4112 also applies a hard timeout for the execution of
4113 .Pa rc.shutdown .
4114 This is configured via
4115 .Xr sysctl 8
4116 variable
4117 .Va kern.init_shutdown_timeout
4118 and defaults to 120 seconds.
4119 Setting the value of
4120 .Va rcshutdown_timeout
4121 to more than 120 seconds will have no effect until the
4122 .Xr sysctl 8
4123 variable
4124 .Va kern.init_shutdown_timeout
4125 is also increased.
4126 .It Va virecover_enable
4127 .Pq Vt bool
4128 Set to
4129 .Dq Li NO
4130 to prevent the system from trying to
4131 recover pre-maturely terminated
4132 .Xr vi 1
4133 sessions.
4134 .It Va ugidfw_enable
4135 .Pq Vt bool
4136 Set to
4137 .Dq Li YES
4138 to load the
4139 .Xr mac_bsdextended 4
4140 module upon system initialization and load a default
4141 ruleset file.
4142 .It Va bsdextended_script
4143 .Pq Vt str
4144 The default
4145 .Xr mac_bsdextended 4
4146 ruleset file to load.
4147 The default value of this variable is
4148 .Pa /etc/rc.bsdextended .
4149 .It Va newsyslog_enable
4150 .Pq Vt bool
4151 If set to
4152 .Dq Li YES ,
4153 run
4154 .Xr newsyslog 8
4155 command at startup.
4156 .It Va newsyslog_flags
4157 .Pq Vt str
4158 If
4159 .Va newsyslog_enable
4160 is set to
4161 .Dq Li YES ,
4162 these are the flags to pass to the
4163 .Xr newsyslog 8
4164 program.
4165 The default is
4166 .Dq Li -CN ,
4167 which causes log files flagged with a
4168 .Cm C
4169 to be created.
4170 .It Va mdconfig_md Ns Aq Ar X
4171 .Pq Vt str
4172 Arguments to
4173 .Xr mdconfig 8
4174 for
4175 .Xr md 4
4176 device
4177 .Ar X .
4178 At minimum a
4179 .Fl t Ar type
4180 must be specified and either a
4181 .Fl s Ar size
4182 for malloc or swap backed
4183 .Xr md 4
4184 devices or a
4185 .Fl f Ar file
4186 for vnode backed
4187 .Xr md 4
4188 devices.
4189 Note that
4190 .Va mdconfig_md Ns Aq Ar X
4191 variables are evaluated until one variable is unset or null.
4192 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _newfs
4193 .Pq Vt str
4194 Optional arguments passed to
4195 .Xr newfs 8
4196 to initialize
4197 .Xr md 4
4198 device
4199 .Ar X .
4200 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _owner
4201 .Pq Vt str
4202 An ownership specification passed to
4203 .Xr chown 8
4204 after the specified
4205 .Xr md 4
4206 device
4207 .Ar X
4208 has been mounted.
4209 Both the
4210 .Xr md 4
4211 device and the mount point will be changed.
4212 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _perms
4213 .Pq Vt str
4214 A mode string passed to
4215 .Xr chmod 1
4216 after the specified
4217 .Xr md 4
4218 device
4219 .Ar X
4220 has been mounted.
4221 Both the
4222 .Xr md 4
4223 device and the mount point will be changed.
4224 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _files
4225 .Pq Vt str
4226 Files to be copied to the mount point of the
4227 .Xr md 4
4228 device
4229 .Ar X
4230 after it has been mounted.
4231 .It Va mdconfig_md Ns Ao Ar X Ac Ns Va _cmd
4232 .Pq Vt str
4233 Command to execute after the specified
4234 .Xr md 4
4235 device
4236 .Ar X
4237 has been mounted.
4238 Note that the command is passed to
4239 .Ic eval
4240 and that both
4241 .Va _dev
4242 and
4243 .Va _mp
4244 variables can be used to reference respectively the
4245 .Xr md 4
4246 device and the mount point.
4247 Assuming that the
4248 .Xr md 4
4249 device is
4250 .Li md0 ,
4251 one could set the following:
4252 .Bd -literal
4253 mdconfig_md0_cmd="tar xfzC /var/file.tgz \e${_mp}"
4254 .Ed
4255 .It Va autobridge_interfaces
4256 .Pq Vt str
4257 Set to the list of bridge interfaces that will have newly arriving interfaces
4258 checked against to be automatically added.
4259 If not set to
4260 .Dq Li NO
4261 then for each whitespace separated
4262 .Ar element
4263 in the value, a
4264 .Va autobridge_ Ns Aq Ar element
4265 variable is assumed to exist which has a whitespace separated list of interface
4266 names to match, these names can use wildcards.
4267 For example:
4268 .Bd -literal
4269 autobridge_interfaces="bridge0"
4270 autobridge_bridge0="tap* dc0 vlan[345]"
4271 .Ed
4272 .It Va mixer_enable
4273 .Pq Vt bool
4274 If set to
4275 .Dq Li YES ,
4276 enable support for sound mixer.
4277 .It Va hcsecd_enable
4278 .Pq Vt bool
4279 If set to
4280 .Dq Li YES ,
4281 enable Bluetooth security daemon.
4282 .It Va hcsecd_config
4283 .Pq Vt str
4284 Configuration file for
4285 .Xr hcsecd 8 .
4286 Default
4287 .Pa /etc/bluetooth/hcsecd.conf .
4288 .It Va sdpd_enable
4289 .Pq Vt bool
4290 If set to
4291 .Dq Li YES ,
4292 enable Bluetooth Service Discovery Protocol daemon.
4293 .It Va sdpd_control
4294 .Pq Vt str
4295 Path to
4296 .Xr sdpd 8
4297 control socket.
4298 Default
4299 .Pa /var/run/sdp .
4300 .It Va sdpd_groupname
4301 .Pq Vt str
4302 Sets
4303 .Xr sdpd 8
4304 group to run as after it initializes.
4305 Default
4306 .Dq Li nobody .
4307 .It Va sdpd_username
4308 .Pq Vt str
4309 Sets
4310 .Xr sdpd 8
4311 user to run as after it initializes.
4312 Default
4313 .Dq Li nobody .
4314 .It Va bthidd_enable
4315 .Pq Vt bool
4316 If set to
4317 .Dq Li YES ,
4318 enable Bluetooth Human Interface Device daemon.
4319 .It Va bthidd_config
4320 .Pq Vt str
4321 Configuration file for
4322 .Xr bthidd 8 .
4323 Default
4324 .Pa /etc/bluetooth/bthidd.conf .
4325 .It Va bthidd_hids
4326 .Pq Vt str
4327 Path to a file, where
4328 .Xr bthidd 8
4329 will store information about known HID devices.
4330 Default
4331 .Pa /var/db/bthidd.hids .
4332 .It Va rfcomm_pppd_server_enable
4333 .Pq Vt bool
4334 If set to
4335 .Dq Li YES ,
4336 enable Bluetooth RFCOMM PPP wrapper daemon.
4337 .It Va rfcomm_pppd_server_profile
4338 .Pq Vt str
4339 The name of the profile to use from
4340 .Pa /etc/ppp/ppp.conf .
4341 Multiple profiles can be specified here.
4342 Also used to specify per-profile overrides.
4343 When the profile name contains any of the characters
4344 .Dq Li .-/+
4345 they are translated to
4346 .Dq Li _
4347 for the proposes of the override variable names.
4348 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _bdaddr
4349 .Pq Vt str
4350 Overrides local address to listen on.
4351 By default
4352 .Xr rfcomm_pppd 8
4353 will listen on
4354 .Dq Li ANY
4355 address.
4356 The address can be specified as BD_ADDR or name.
4357 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _channel
4358 .Pq Vt str
4359 Overrides local RFCOMM channel to listen on.
4360 By default
4361 .Xr rfcomm_pppd 8
4362 will listen on RFCOMM channel 1.
4363 Must set properly if multiple profiles used in the same time.
4364 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _register_sp
4365 .Pq Vt bool
4366 Tells
4367 .Xr rfcomm_pppd 8
4368 if it should register Serial Port service on the specified RFCOMM channel.
4369 Default
4370 .Dq Li NO .
4371 .It Va rfcomm_pppd_server_ Ns Ao Ar profile Ac Ns _register_dun
4372 .Pq Vt bool
4373 Tells
4374 .Xr rfcomm_pppd 8
4375 if it should register Dial-Up Networking service on the specified
4376 RFCOMM channel.
4377 Default
4378 .Dq Li NO .
4379 .It Va ubthidhci_enable
4380 .Pq Vt bool
4381 If set to
4382 .Dq Li YES ,
4383 change the USB Bluetooth controller from HID mode to HCI mode.
4384 You also need to specify the location of USB Bluetooth controller with the
4385 .Va ubthidhci_busnum
4386 and
4387 .Va ubthidhci_addr
4388 variables.
4389 .It Va ubthidhci_busnum
4390 Bus number where the USB Bluetooth controller is located.
4391 Check the output of
4392 .Xr usbconfig 8
4393 on your system to find this information.
4394 .It Va ubthidhci_addr
4395 Bus address of the USB Bluetooth controller.
4396 Check the output of
4397 .Xr usbconfig 8
4398 on your system to find this information.
4399 .It Va netwait_enable
4400 .Pq Vt bool
4401 If set to
4402 .Dq Li YES ,
4403 delays the start of network-reliant services until
4404 .Va netwait_if
4405 is up and ICMP packets to a destination defined in
4406 .Va netwait_ip
4407 are flowing.
4408 Link state is examined first, followed by
4409 .Dq Li pinging
4410 an IP address to verify network usability.
4411 If no destination can be reached or timeouts are exceeded,
4412 network services are started anyway with no guarantee that
4413 the network is usable.
4414 Use of this variable requires both
4415 .Va netwait_ip
4416 and
4417 .Va netwait_if
4418 to be set.
4419 .It Va netwait_ip
4420 .Pq Vt str
4421 Empty by default.
4422 This variable contains a space-delimited list of IP addresses to
4423 .Xr ping 8 .
4424 DNS hostnames should not be used as resolution is not guaranteed
4425 to be functional at this point.
4426 If multiple IP addresses are specified,
4427 each will be tried until one is successful or the list is exhausted.
4428 .It Va netwait_timeout
4429 .Pq Vt int
4430 Indicates the total number of seconds to perform a
4431 .Dq Li ping
4432 against each IP address in
4433 .Va netwait_ip ,
4434 at a rate of one ping per second.
4435 If any of the pings are successful,
4436 full network connectivity is considered reliable.
4437 The default is 60.
4438 .It Va netwait_if
4439 .Pq Vt str
4440 Empty by default.
4441 Defines the name of the network interface on which watch for link.
4442 .Xr ifconfig 8
4443 is used to monitor the interface, looking for
4444 .Dq Li status: no carrier .
4445 Once gone, the link is considered up.
4446 This can be a
4447 .Xr vlan 4
4448 interface if desired.
4449 .It Va netwait_if_timeout
4450 .Pq Vt int
4451 Defines the total number of seconds to wait for link to become usable,
4452 polled at a 1-second interval.
4453 The default is 30.
4454 .It Va rctl_enable
4455 .Pq Vt bool
4456 Set to
4457 .Dq Li YES
4458 to load
4459 .Xr rctl 8
4460 rules from the defined ruleset.
4461 The kernel must be built with
4462 .Cd "options RACCT"
4463 and
4464 .Cd "options RCTL" .
4465 .It Va rctl_rules
4466 .Pq Vt str
4467 Set to
4468 .Pa /etc/rctl.conf
4469 by default.
4470 This variables contains the
4471 .Xr rctl.conf 5
4472 ruleset to load for
4473 .Xr rctl 8 .
4474 .El
4475 .Sh FILES
4476 .Bl -tag -width ".Pa /etc/defaults/rc.conf" -compact
4477 .It Pa /etc/defaults/rc.conf
4478 .It Pa /etc/rc.conf
4479 .It Pa /etc/rc.conf.local
4480 .El
4481 .Sh SEE ALSO
4482 .Xr catman 1 ,
4483 .Xr chmod 1 ,
4484 .Xr gdb 1 ,
4485 .Xr info 1 ,
4486 .Xr kbdcontrol 1 ,
4487 .Xr makewhatis 1 ,
4488 .Xr sh 1 ,
4489 .Xr vi 1 ,
4490 .Xr vidcontrol 1 ,
4491 .Xr bridge 4 ,
4492 .Xr dummynet 4 ,
4493 .Xr ip 4 ,
4494 .Xr ipf 4 ,
4495 .Xr ipfw 4 ,
4496 .Xr ipnat 4 ,
4497 .Xr kld 4 ,
4498 .Xr pf 4 ,
4499 .Xr pflog 4 ,
4500 .Xr pfsync 4 ,
4501 .Xr tcp 4 ,
4502 .Xr udp 4 ,
4503 .Xr exports 5 ,
4504 .Xr fstab 5 ,
4505 .Xr ipf 5 ,
4506 .Xr ipnat 5 ,
4507 .Xr jail.conf 5 ,
4508 .Xr motd 5 ,
4509 .Xr newsyslog.conf 5 ,
4510 .Xr pf.conf 5 ,
4511 .Xr security 7 ,
4512 .Xr accton 8 ,
4513 .Xr amd 8 ,
4514 .Xr apm 8 ,
4515 .Xr atm 8 ,
4516 .Xr bthidd 8 ,
4517 .Xr chkprintcap 8 ,
4518 .Xr chown 8 ,
4519 .Xr cron 8 ,
4520 .Xr devfs 8 ,
4521 .Xr dhclient 8 ,
4522 .Xr ftpd 8 ,
4523 .Xr geli 8 ,
4524 .Xr hcsecd 8 ,
4525 .Xr ifconfig 8 ,
4526 .Xr inetd 8 ,
4527 .Xr ipf 8 ,
4528 .Xr ipfw 8 ,
4529 .Xr ipnat 8 ,
4530 .Xr jail 8 ,
4531 .Xr kldxref 8 ,
4532 .Xr lpd 8 ,
4533 .Xr mdconfig 8 ,
4534 .Xr mdmfs 8 ,
4535 .Xr mixer 8 ,
4536 .Xr mountd 8 ,
4537 .Xr moused 8 ,
4538 .Xr mrouted 8 ,
4539 .Xr newfs 8 ,
4540 .Xr newsyslog 8 ,
4541 .Xr nfsd 8 ,
4542 .Xr ntpd 8 ,
4543 .Xr ntpdate 8 ,
4544 .Xr pfctl 8 ,
4545 .Xr pflogd 8 ,
4546 .Xr ping 8 ,
4547 .Xr powerd 8 ,
4548 .Xr quotacheck 8 ,
4549 .Xr quotaon 8 ,
4550 .Xr rc 8 ,
4551 .Xr rc.sendmail 8 ,
4552 .Xr rfcomm_pppd 8 ,
4553 .Xr route 8 ,
4554 .Xr routed 8 ,
4555 .Xr rpcbind 8 ,
4556 .Xr rpc.lockd 8 ,
4557 .Xr rpc.statd 8 ,
4558 .Xr rwhod 8 ,
4559 .Xr savecore 8 ,
4560 .Xr sdpd 8 ,
4561 .Xr sshd 8 ,
4562 .Xr swapon 8 ,
4563 .Xr sysctl 8 ,
4564 .Xr syslogd 8 ,
4565 .Xr timed 8 ,
4566 .Xr unbound 8 ,
4567 .Xr usbconfig 8 ,
4568 .Xr wlandebug 8 ,
4569 .Xr yp 8 ,
4570 .Xr ypbind 8 ,
4571 .Xr ypserv 8 ,
4572 .Xr ypset 8
4573 .Sh HISTORY
4574 The
4575 .Nm
4576 file appeared in
4577 .Fx 2.2.2 .
4578 .Sh AUTHORS
4579 .An Jordan K. Hubbard .