Deleted Added
full compact
rc.conf (166121) rc.conf (166583)
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 166121 2007-01-20 04:24:20Z mpp $
18# $FreeBSD: head/etc/defaults/rc.conf 166583 2007-02-09 12:11:27Z flz $
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

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

173#autobridge_interfaces="bridge0" # List of bridges to check
174#autobridge_bridge0="tap* vlan0" # Interface glob to automatically add to the bridge
175#
176# If you have any sppp(4) interfaces above, you might also want to set
177# the following parameters. Refer to spppcontrol(8) for their meaning.
178sppp_interfaces="" # List of sppp interfaces.
179#sppp_interfaces="isp0" # example: sppp over ISDN
180#spppconfig_isp0="authproto=chap myauthname=foo myauthsecret='top secret' hisauthname=some-gw hisauthsecret='another secret'"
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

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

173#autobridge_interfaces="bridge0" # List of bridges to check
174#autobridge_bridge0="tap* vlan0" # Interface glob to automatically add to the bridge
175#
176# If you have any sppp(4) interfaces above, you might also want to set
177# the following parameters. Refer to spppcontrol(8) for their meaning.
178sppp_interfaces="" # List of sppp interfaces.
179#sppp_interfaces="isp0" # example: sppp over ISDN
180#spppconfig_isp0="authproto=chap myauthname=foo myauthsecret='top secret' hisauthname=some-gw hisauthsecret='another secret'"
181gif_interfaces="NO" # List of GIF tunnels (or "NO").
181gif_interfaces="" # List of GIF tunnels.
182#gif_interfaces="gif0 gif1" # Examples typically for a router.
183 # Choose correct tunnel addrs.
184#gifconfig_gif0="10.1.1.1 10.1.2.1" # Examples typically for a router.
185#gifconfig_gif1="10.1.1.2 10.1.2.2" # Examples typically for a router.
182#gif_interfaces="gif0 gif1" # Examples typically for a router.
183 # Choose correct tunnel addrs.
184#gifconfig_gif0="10.1.1.1 10.1.2.1" # Examples typically for a router.
185#gifconfig_gif1="10.1.1.2 10.1.2.2" # Examples typically for a router.
186fec_interfaces="" # List of Fast EtherChannels.
187#fec_interfaces="fec0 fec1"
188#fecconfig_fec0="fxp0 dc0" # Examples typically for two NICs
189#fecconfig_fec1="em0 em1 bge0 bge1" # Examples typically for four NICs
186
187# User ppp configuration.
188ppp_enable="NO" # Start user-ppp (or NO).
189ppp_program="/usr/sbin/ppp" # Path to user-ppp program.
190ppp_mode="auto" # Choice of "auto", "ddial", "direct" or "dedicated".
191 # For details see man page for ppp(8). Default is auto.
192ppp_nat="YES" # Use PPP's internal network address translation or NO.
193ppp_profile="papchap" # Which profile to use from /etc/ppp/ppp.conf.

--- 419 unchanged lines hidden ---
190
191# User ppp configuration.
192ppp_enable="NO" # Start user-ppp (or NO).
193ppp_program="/usr/sbin/ppp" # Path to user-ppp program.
194ppp_mode="auto" # Choice of "auto", "ddial", "direct" or "dedicated".
195 # For details see man page for ppp(8). Default is auto.
196ppp_nat="YES" # Use PPP's internal network address translation or NO.
197ppp_profile="papchap" # Which profile to use from /etc/ppp/ppp.conf.

--- 419 unchanged lines hidden ---