Deleted Added
full compact
rc.conf (172674) rc.conf (175251)
1#!/bin/sh
2
3# This is rc.conf - a file full of useful variables that you can set
4# to change the default startup behavior of your system. You should
5# not edit this file! Put any overrides into one of the ${rc_conf_files}
6# instead and you will be able to update these defaults later without
7# spamming your local configuration information.
8#
9# The ${rc_conf_files} files should only contain values which override
10# values set in this file. This eases the upgrade path when defaults
11# are changed and new features are added.
12#
13# All arguments must be in double or single quotes.
14#
15# For a more detailed explanation of all the rc.conf variables, please
16# refer to the rc.conf(5) manual page.
17#
1#!/bin/sh
2
3# This is rc.conf - a file full of useful variables that you can set
4# to change the default startup behavior of your system. You should
5# not edit this file! Put any overrides into one of the ${rc_conf_files}
6# instead and you will be able to update these defaults later without
7# spamming your local configuration information.
8#
9# The ${rc_conf_files} files should only contain values which override
10# values set in this file. This eases the upgrade path when defaults
11# are changed and new features are added.
12#
13# All arguments must be in double or single quotes.
14#
15# For a more detailed explanation of all the rc.conf variables, please
16# refer to the rc.conf(5) manual page.
17#
18# $FreeBSD: head/etc/defaults/rc.conf 172674 2007-10-15 20:00:24Z netchild $
18# $FreeBSD: head/etc/defaults/rc.conf 175251 2008-01-12 20:52:30Z maxim $
19
20##############################################################
21### Important initial Boot-time options ####################
22##############################################################
23
24rc_debug="NO" # Set to YES to enable debugging output from rc.d
25rc_info="NO" # Enables display of informational messages at boot.
26rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

--- 131 unchanged lines hidden (view full) ---

158ftpproxy_flags="" # additional flags for ftp-proxy(8)
159pfsync_enable="NO" # Expose pf state to other hosts for syncing
160pfsync_syncdev="" # Interface for pfsync to work through
161pfsync_syncpeer="" # IP address of pfsync peer host
162pfsync_ifconfig="" # Additional options to ifconfig(8) for pfsync
163tcp_extensions="YES" # Set to NO to turn off RFC1323 extensions.
164log_in_vain="0" # >=1 to log connects to ports w/o listeners.
165tcp_keepalive="YES" # Enable stale TCP connection timeout (or NO).
19
20##############################################################
21### Important initial Boot-time options ####################
22##############################################################
23
24rc_debug="NO" # Set to YES to enable debugging output from rc.d
25rc_info="NO" # Enables display of informational messages at boot.
26rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

--- 131 unchanged lines hidden (view full) ---

158ftpproxy_flags="" # additional flags for ftp-proxy(8)
159pfsync_enable="NO" # Expose pf state to other hosts for syncing
160pfsync_syncdev="" # Interface for pfsync to work through
161pfsync_syncpeer="" # IP address of pfsync peer host
162pfsync_ifconfig="" # Additional options to ifconfig(8) for pfsync
163tcp_extensions="YES" # Set to NO to turn off RFC1323 extensions.
164log_in_vain="0" # >=1 to log connects to ports w/o listeners.
165tcp_keepalive="YES" # Enable stale TCP connection timeout (or NO).
166# For the following option you need to have TCP_DROP_SYNFIN set in your
167# kernel. Please refer to LINT and NOTES for details.
168tcp_drop_synfin="NO" # Set to YES to drop TCP packets with SYN+FIN
169 # NOTE: this violates the TCP specification
170icmp_drop_redirect="NO" # Set to YES to ignore ICMP REDIRECT packets
171icmp_log_redirect="NO" # Set to YES to log ICMP REDIRECT packets
172network_interfaces="auto" # List of network interfaces (or "auto").
173cloned_interfaces="" # List of cloned network interfaces to create.
174#cloned_interfaces="gif0 gif1 gif2 gif3" # Pre-cloning GENERIC config.
175ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.

--- 458 unchanged lines hidden ---
166tcp_drop_synfin="NO" # Set to YES to drop TCP packets with SYN+FIN
167 # NOTE: this violates the TCP specification
168icmp_drop_redirect="NO" # Set to YES to ignore ICMP REDIRECT packets
169icmp_log_redirect="NO" # Set to YES to log ICMP REDIRECT packets
170network_interfaces="auto" # List of network interfaces (or "auto").
171cloned_interfaces="" # List of cloned network interfaces to create.
172#cloned_interfaces="gif0 gif1 gif2 gif3" # Pre-cloning GENERIC config.
173ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.

--- 458 unchanged lines hidden ---