Deleted Added
full compact
rc.conf (159072) rc.conf (159138)
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 159072 2006-05-30 16:20:48Z matteo $
18# $FreeBSD: head/etc/defaults/rc.conf 159138 2006-06-01 11:01:54Z thompsa $
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

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

154cloned_interfaces="" # List of cloned network interfaces to create.
155#cloned_interfaces="gif0 gif1 gif2 gif3" # Pre-cloning GENERIC config.
156ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.
157#ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry.
158#ifconfig_ed0_ipx="ipx 0x00010010" # Sample IPX address family entry.
159#ifconfig_fxp0_name="net0" # Change interface name from fxp0 to net0.
160#ipv4_addrs_fxp0="192.168.0.1/24 192.168.1.1-5/28" # example IPv4 address entry.
161#
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

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

154cloned_interfaces="" # List of cloned network interfaces to create.
155#cloned_interfaces="gif0 gif1 gif2 gif3" # Pre-cloning GENERIC config.
156ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.
157#ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry.
158#ifconfig_ed0_ipx="ipx 0x00010010" # Sample IPX address family entry.
159#ifconfig_fxp0_name="net0" # Change interface name from fxp0 to net0.
160#ipv4_addrs_fxp0="192.168.0.1/24 192.168.1.1-5/28" # example IPv4 address entry.
161#
162#autobridge_interfaces="bridge0" # List of bridges to check
163#autobridge_bridge0="tap* vlan0" # Interface glob to automatically add to the bridge
164#
162# If you have any sppp(4) interfaces above, you might also want to set
163# the following parameters. Refer to spppcontrol(8) for their meaning.
164sppp_interfaces="" # List of sppp interfaces.
165#sppp_interfaces="isp0" # example: sppp over ISDN
166#spppconfig_isp0="authproto=chap myauthname=foo myauthsecret='top secret' hisauthname=some-gw hisauthsecret='another secret'"
167gif_interfaces="NO" # List of GIF tunnels (or "NO").
168#gif_interfaces="gif0 gif1" # Examples typically for a router.
169 # Choose correct tunnel addrs.

--- 414 unchanged lines hidden ---
165# If you have any sppp(4) interfaces above, you might also want to set
166# the following parameters. Refer to spppcontrol(8) for their meaning.
167sppp_interfaces="" # List of sppp interfaces.
168#sppp_interfaces="isp0" # example: sppp over ISDN
169#spppconfig_isp0="authproto=chap myauthname=foo myauthsecret='top secret' hisauthname=some-gw hisauthsecret='another secret'"
170gif_interfaces="NO" # List of GIF tunnels (or "NO").
171#gif_interfaces="gif0 gif1" # Examples typically for a router.
172 # Choose correct tunnel addrs.

--- 414 unchanged lines hidden ---