diff options
author | hrs <hrs@FreeBSD.org> | 2014-09-11 12:30:29 +0000 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2014-09-11 12:30:29 +0000 |
commit | 9e4c2e60325e025e2d03da9eeecd353a4dba10b7 (patch) | |
tree | df97ed79b52bb303c1dbe97b46b064bd82e7aa7e /etc/defaults | |
parent | 0808eece71149096aacff5958700040c4c743552 (diff) | |
download | FreeBSD-src-9e4c2e60325e025e2d03da9eeecd353a4dba10b7.zip FreeBSD-src-9e4c2e60325e025e2d03da9eeecd353a4dba10b7.tar.gz |
- Add $netif_ipexpand_max to specify the upper limit for the number of
addresses generated by an address range specification. The default
value is 2048. This can be increased by setting $netif_ipexpand_max
in rc.conf.
- Fix warning messages when an address range spec exceeds the upper limit.
PR: 186841
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/rc.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 190bb9c..7a39a27 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -110,6 +110,7 @@ synchronous_dhclient="NO" # Start dhclient directly on configured # interfaces during startup. defaultroute_delay="30" # Time to wait for a default route on a DHCP interface. defaultroute_carrier_delay="5" # Time to wait for carrier while waiting for a default route. +netif_ipexpand_max="2048" # Maximum number of IP addrs in a range spec. wpa_supplicant_program="/usr/sbin/wpa_supplicant" wpa_supplicant_flags="-s" # Extra flags to pass to wpa_supplicant wpa_supplicant_conf_file="/etc/wpa_supplicant.conf" |