2002-12-05 08:41:41 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2018-05-31 22:15:55 -07:00
|
|
|
# see docs/Kconfig-language.txt.
|
2002-12-05 08:41:41 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
menu "Networking Utilities"
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config FEATURE_IPV6
|
2002-12-05 08:41:41 +00:00
|
|
|
bool "Enable IPv6 support"
|
2010-06-06 04:14:28 +02:00
|
|
|
default y
|
2002-12-05 08:41:41 +00:00
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Enable IPv6 support in busybox.
|
|
|
|
This adds IPv6 support in the networking applets.
|
2002-12-05 08:41:41 +00:00
|
|
|
|
2009-04-25 13:16:53 +00:00
|
|
|
config FEATURE_UNIX_LOCAL
|
2009-05-01 03:00:04 +02:00
|
|
|
bool "Enable Unix domain socket support (usually not needed)"
|
2009-04-25 13:16:53 +00:00
|
|
|
default n
|
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Enable Unix domain socket support in all busybox networking
|
|
|
|
applets. Address of the form local:/path/to/unix/socket
|
|
|
|
will be recognized.
|
2009-06-18 13:23:58 +02:00
|
|
|
|
2017-07-21 09:50:55 +02:00
|
|
|
This extension is almost never used in real world usage.
|
|
|
|
You most likely want to say N.
|
2009-04-25 13:16:53 +00:00
|
|
|
|
2007-11-14 10:18:33 +00:00
|
|
|
config FEATURE_PREFER_IPV4_ADDRESS
|
2009-02-14 13:17:48 +00:00
|
|
|
bool "Prefer IPv4 addresses from DNS queries"
|
2007-11-14 10:18:33 +00:00
|
|
|
default y
|
|
|
|
depends on FEATURE_IPV6
|
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Use IPv4 address of network host if it has one.
|
2007-11-14 10:18:33 +00:00
|
|
|
|
2017-07-21 09:50:55 +02:00
|
|
|
If this option is off, the first returned address will be used.
|
|
|
|
This may cause problems when your DNS server is IPv6-capable and
|
|
|
|
is returning IPv6 host addresses too. If IPv6 address
|
|
|
|
precedes IPv4 one in DNS reply, busybox network applets
|
|
|
|
(e.g. wget) will use IPv6 address. On an IPv6-incapable host
|
|
|
|
or network applets will fail to connect to the host
|
|
|
|
using IPv6 address.
|
2007-11-14 10:18:33 +00:00
|
|
|
|
2007-01-22 22:46:04 +00:00
|
|
|
config VERBOSE_RESOLUTION_ERRORS
|
|
|
|
bool "Verbose resolution errors"
|
|
|
|
default n
|
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Enable if you are not satisfied with simplistic
|
|
|
|
"can't resolve 'hostname.com'" and want to know more.
|
|
|
|
This may increase size of your executable a bit.
|
2007-01-22 22:46:04 +00:00
|
|
|
|
2016-11-23 09:05:14 +01:00
|
|
|
INSERT
|
2007-06-20 15:23:03 +00:00
|
|
|
|
2006-05-08 03:24:36 +00:00
|
|
|
source networking/udhcp/Config.in
|
|
|
|
|
2008-11-14 21:18:45 +00:00
|
|
|
config IFUPDOWN_UDHCPC_CMD_OPTIONS
|
|
|
|
string "ifup udhcpc command line options"
|
|
|
|
default "-R -n"
|
2017-01-03 12:29:52 +01:00
|
|
|
depends on IFUP || IFDOWN
|
2008-11-14 21:18:45 +00:00
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Command line options to pass to udhcpc from ifup.
|
|
|
|
Intended to alter options not available in /etc/network/interfaces.
|
|
|
|
(IE: --syslog --background etc...)
|
2008-11-14 21:18:45 +00:00
|
|
|
|
2002-12-05 08:41:41 +00:00
|
|
|
endmenu
|