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