2002-12-05 14:11:41 +05:30
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2018-06-01 10:45:55 +05:30
|
|
|
# see docs/Kconfig-language.txt.
|
2002-12-05 14:11:41 +05:30
|
|
|
#
|
|
|
|
|
|
|
|
menu "Networking Utilities"
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config FEATURE_IPV6
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "Enable IPv6 support"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
Enable IPv6 support in busybox.
|
|
|
|
This adds IPv6 support in the networking applets.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2009-04-25 18:46:53 +05:30
|
|
|
config FEATURE_UNIX_LOCAL
|
2009-05-01 06:30:04 +05:30
|
|
|
bool "Enable Unix domain socket support (usually not needed)"
|
2009-04-25 18:46:53 +05:30
|
|
|
default n
|
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
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 16:53:58 +05:30
|
|
|
|
2017-07-21 13:20:55 +05:30
|
|
|
This extension is almost never used in real world usage.
|
|
|
|
You most likely want to say N.
|
2009-04-25 18:46:53 +05:30
|
|
|
|
2007-11-14 15:48:33 +05:30
|
|
|
config FEATURE_PREFER_IPV4_ADDRESS
|
2009-02-14 18:47:48 +05:30
|
|
|
bool "Prefer IPv4 addresses from DNS queries"
|
2007-11-14 15:48:33 +05:30
|
|
|
default y
|
|
|
|
depends on FEATURE_IPV6
|
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
Use IPv4 address of network host if it has one.
|
2007-11-14 15:48:33 +05:30
|
|
|
|
2017-07-21 13:20:55 +05:30
|
|
|
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 15:48:33 +05:30
|
|
|
|
2007-01-23 04:16:04 +05:30
|
|
|
config VERBOSE_RESOLUTION_ERRORS
|
|
|
|
bool "Verbose resolution errors"
|
|
|
|
default n
|
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
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-23 04:16:04 +05:30
|
|
|
|
2016-11-23 13:35:14 +05:30
|
|
|
INSERT
|
2007-06-20 20:53:03 +05:30
|
|
|
|
2006-05-08 08:54:36 +05:30
|
|
|
source networking/udhcp/Config.in
|
|
|
|
|
2008-11-15 02:48:45 +05:30
|
|
|
config IFUPDOWN_UDHCPC_CMD_OPTIONS
|
|
|
|
string "ifup udhcpc command line options"
|
|
|
|
default "-R -n"
|
2017-01-03 16:59:52 +05:30
|
|
|
depends on IFUP || IFDOWN
|
2008-11-15 02:48:45 +05:30
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
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-15 02:48:45 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
endmenu
|