diff options
author | bz <bz@FreeBSD.org> | 2011-05-31 00:25:52 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2011-05-31 00:25:52 +0000 |
commit | 3de43df666fc0c65ef09fad8946fa68943f2f93b (patch) | |
tree | daaf64b3c055004246c6fb2636cf669eb2e90cbd /etc/defaults | |
parent | 8cee41e82ddb57f6395ba6dd9748b90bb439b1a8 (diff) | |
download | FreeBSD-src-3de43df666fc0c65ef09fad8946fa68943f2f93b.zip FreeBSD-src-3de43df666fc0c65ef09fad8946fa68943f2f93b.tar.gz |
No logner set an IPv4 loopback address by default in defaults/rc.conf.
If not specified, network.subr will add it automatically if we have
INET support (1).
In network.subr only call the address family up/down functions
if the respective AF is available.
Switch to new kern.features variables for inet and inet6 as the
inet sysctl tree is also available for IPv6-only kernels leading
to unexpected results.
Suggested by: hrs (1)
Reviewed by: hrs
Sponsored by: The FreeBSD Foundation
Sponsored by: iXsystems
MFC after: 20 days
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/rc.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 21007d6..0fa9004 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -210,7 +210,7 @@ icmp_log_redirect="NO" # Set to YES to log ICMP REDIRECT packets network_interfaces="auto" # List of network interfaces (or "auto"). cloned_interfaces="" # List of cloned network interfaces to create. #cloned_interfaces="gif0 gif1 gif2 gif3" # Pre-cloning GENERIC config. -ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration. +#ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration. #ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry. #ifconfig_ed0_ipx="ipx 0x00010010" # Sample IPX address family entry. #ifconfig_ed0_ipv6="inet6 2001:db8:1::1 prefixlen 64" # Sample IPv6 addr entry |