Deleted Added
full compact
rc.conf (85219) rc.conf (86856)
1#!/bin/sh
2#
3
4# This is rc.conf - a file full of useful variables that you can set
5# to change the default startup behavior of your system. You should
6# not edit this file! Put any overrides into one of the ${rc_conf_files}
7# instead and you will be able to update these defaults later without
8# spamming your local configuration information.
9#
10# The ${rc_conf_files} files should only contain values which override
11# values set in this file. This eases the upgrade path when defaults
12# are changed and new features are added.
13#
14# All arguments must be in double or single quotes.
15#
1#!/bin/sh
2#
3
4# This is rc.conf - a file full of useful variables that you can set
5# to change the default startup behavior of your system. You should
6# not edit this file! Put any overrides into one of the ${rc_conf_files}
7# instead and you will be able to update these defaults later without
8# spamming your local configuration information.
9#
10# The ${rc_conf_files} files should only contain values which override
11# values set in this file. This eases the upgrade path when defaults
12# are changed and new features are added.
13#
14# All arguments must be in double or single quotes.
15#
16# $FreeBSD: head/etc/defaults/rc.conf 85219 2001-10-20 04:33:02Z darrenr $
16# $FreeBSD: head/etc/defaults/rc.conf 86856 2001-11-24 15:36:30Z darrenr $
17
18##############################################################
19### Important initial Boot-time options ####################
20##############################################################
21
22swapfile="NO" # Set to name of swapfile if aux swapfile desired.
23apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
24apmd_enable="NO" # Run apmd to handle APM event from userland.

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

56ip_portrange_last="NO" # Set last dynamically allocated port
57ipsec_enable="NO" # Set to YES to run setkey on ipsec_file
58ipsec_file="/etc/ipsec.conf" # Name of config file for setkey
59natd_program="/sbin/natd" # path to natd, if you want a different one.
60natd_enable="NO" # Enable natd (if firewall_enable == YES).
61natd_interface="fxp0" # Public interface or IPaddress to use.
62natd_flags="" # Additional flags for natd.
63ipfilter_enable="NO" # Set to YES to enable ipfilter functionality
17
18##############################################################
19### Important initial Boot-time options ####################
20##############################################################
21
22swapfile="NO" # Set to name of swapfile if aux swapfile desired.
23apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
24apmd_enable="NO" # Run apmd to handle APM event from userland.

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

56ip_portrange_last="NO" # Set last dynamically allocated port
57ipsec_enable="NO" # Set to YES to run setkey on ipsec_file
58ipsec_file="/etc/ipsec.conf" # Name of config file for setkey
59natd_program="/sbin/natd" # path to natd, if you want a different one.
60natd_enable="NO" # Enable natd (if firewall_enable == YES).
61natd_interface="fxp0" # Public interface or IPaddress to use.
62natd_flags="" # Additional flags for natd.
63ipfilter_enable="NO" # Set to YES to enable ipfilter functionality
64ipfilter_program="/sbin/ipf -Fa -f"
65 # program and how to specify the rules file,
66 # see /etc/rc.network (pass1) for details
64ipfilter_program="/sbin/ipf" # where the ipfilter program lives
67ipfilter_rules="/etc/ipf.rules" # rules definition file for ipfilter, see
68 # /usr/src/contrib/ipfilter/rules for examples
65ipfilter_rules="/etc/ipf.rules" # rules definition file for ipfilter, see
66 # /usr/src/contrib/ipfilter/rules for examples
69ipfilter_flags="-E" # should be *empty* when ipf is _not_ a module
70 # (i.e. compiled into the kernel) to
71 # avoid a warning about "already initialized"
72ipnat_enable="NO" # Set to YES for ipnat; needs ipfilter, too!
73ipnat_program="/sbin/ipnat -CF -f" # program and how to specify rules file
67ipfilter_flags="" # additional flags for ipfilter
68ipnat_enable="NO" # Set to YES to enable ipnat functionality
69ipnat_program="/sbin/ipnat" # where the ipnat program lives
74ipnat_rules="/etc/ipnat.rules" # rules definition file for ipnat
75ipnat_flags="" # additional flags for ipnat
70ipnat_rules="/etc/ipnat.rules" # rules definition file for ipnat
71ipnat_flags="" # additional flags for ipnat
72ipmon_enable="NO" # Set to YES for ipmon; needs ipfilter or ipnat
73ipmon_program="/sbin/ipmon" # where the ipfilter monitor program lives
74ipmon_flags="-Ds" # typically "-Ds" or "-D /var/log/ipflog"
76ipfs_enable="NO" # Set to YES to enable saving and restoring
77 # of state tables at shutdown and boot
75ipfs_enable="NO" # Set to YES to enable saving and restoring
76 # of state tables at shutdown and boot
78ipfs_flags="" # additional flags for ipfs
79ipfs_program="/sbin/ipfs" # where the ipfs program lives
77ipfs_program="/sbin/ipfs" # where the ipfs program lives
80ipmon_enable="NO" # Set to YES for ipmon; needs ipfilter, too!
81ipmon_program="/sbin/ipmon" # where the ipfilter monitor program lives
82ipmon_flags="-Ds" # typically "-Ds" or "-D /var/log/ipflog"
78ipfs_flags="" # additional flags for ipfs
83tcp_extensions="YES" # Set to NO to turn off RFC1323 extensions.
84log_in_vain="NO" # YES to log connects to ports w/o listeners.
85tcp_keepalive="YES" # Enable stale TCP connection timeout (or NO).
86# For the following two options, you need to have TCP_DROP_SYNFIN and
87# TCP_RESTRICT_RST set in your kernel. Please refer to LINT for details.
88tcp_drop_synfin="NO" # Set to YES to drop TCP packets with SYN+FIN
89 # NOTE: this violates the TCP specification
90icmp_drop_redirect="NO" # Set to YES to ignore ICMP REDIRECT packets

--- 307 unchanged lines hidden ---
79tcp_extensions="YES" # Set to NO to turn off RFC1323 extensions.
80log_in_vain="NO" # YES to log connects to ports w/o listeners.
81tcp_keepalive="YES" # Enable stale TCP connection timeout (or NO).
82# For the following two options, you need to have TCP_DROP_SYNFIN and
83# TCP_RESTRICT_RST set in your kernel. Please refer to LINT for details.
84tcp_drop_synfin="NO" # Set to YES to drop TCP packets with SYN+FIN
85 # NOTE: this violates the TCP specification
86icmp_drop_redirect="NO" # Set to YES to ignore ICMP REDIRECT packets

--- 307 unchanged lines hidden ---