blob: 6bb2d3b83f7f7a150c68136080ec053a97dfbb48 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Networking Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "Enable IPv6 support"
10 default n
11 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000012 Enable IPv6 support in busybox.
13 This adds IPv6 support in the networking applets.
Eric Andersenc9f20d92002-12-05 08:41:41 +000014
Denis Vlasenko5de9e9c2007-01-22 22:46:04 +000015config VERBOSE_RESOLUTION_ERRORS
16 bool "Verbose resolution errors"
17 default n
18 help
19 Enable if you are not satisfied with simplistic
20 "can't resolve 'hostname.com'" and want to know more.
21 This may increase size of your executable a bit.
22
Denis Vlasenkofa85b862007-01-07 01:24:12 +000023config ARP
24 bool "arp"
25 default n
26 help
27 Manipulate the system ARP cache
28
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000029config ARPING
Glenn L McGrath9e598412003-01-09 10:06:01 +000030 bool "arping"
31 default n
32 help
33 Ping hosts by ARP packets
34
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000035config DNSD
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000036 bool "dnsd"
37 default n
38 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000039 Small and static DNS server daemon.
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000040
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000041config ETHER_WAKE
Mike Frysingerb662f0d2005-05-11 03:59:53 +000042 bool "ether-wake"
43 default n
44 help
45 Send a magic packet to wake up sleeping machines.
46
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000047config FAKEIDENTD
Mike Frysingerfa69f112005-04-17 07:24:19 +000048 bool "fakeidentd"
49 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000050 select FEATURE_SYSLOG
Mike Frysingerfa69f112005-04-17 07:24:19 +000051 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000052 fakeidentd listens on the ident port and returns a predefined
53 fake value on any query.
Mike Frysingerfa69f112005-04-17 07:24:19 +000054
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000055config FTPGET
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000056 bool "ftpget"
57 default n
58 help
59 Retrieve a remote file via FTP.
60
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000061config FTPPUT
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000062 bool "ftpput"
63 default n
64 help
65 Store a remote file via FTP.
66
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000067config FEATURE_FTPGETPUT_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000068 bool "Enable long options in ftpget/ftpput"
69 default n
Denis Vlasenko9d4533e2006-11-02 22:09:37 +000070 depends on GETOPT_LONG && (FTPGET || FTPPUT)
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000071 help
72 Support long options for the ftpget/ftpput applet.
73
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000074config HOSTNAME
Eric Andersenc9f20d92002-12-05 08:41:41 +000075 bool "hostname"
76 default n
77 help
Eric Andersene5642112003-07-14 19:37:08 +000078 Show or set the system's host name
Eric Andersenc9f20d92002-12-05 08:41:41 +000079
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000080config HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +000081 bool "httpd"
82 default n
83 help
84 Serve web pages via an HTTP server.
85
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000086config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +000087 bool "Support reloading the global config file using hup signal"
88 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +000089 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +000090 help
91 This option enables processing of SIGHUP to reload cached
92 configuration settings.
93
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000094config FEATURE_HTTPD_SETUID
Denis Vlasenkodb506472006-12-17 20:18:05 +000095 bool "Enable -u <user> option"
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +000096 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +000097 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +000098 help
99 This option allows the server to run as a specific user
100 rather than defaulting to the user that starts the server.
101 Use of this option requires special privileges to change to a
102 different user.
103
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000104config FEATURE_HTTPD_BASIC_AUTH
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000105 bool "Enable Basic http Authentication"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000106 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000107 depends on HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000108 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000109 Utilizes password settings from /etc/httpd.conf for basic
110 authentication on a per url basis.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000111
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000112config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000113 bool "Support MD5 crypted passwords for http Authentication"
Eric Andersen35e643b2003-07-28 07:40:39 +0000114 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000115 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000116 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000117 Enables basic per URL authentication from /etc/httpd.conf
Eric Andersenf3a02bb2003-07-28 08:31:56 +0000118 using md5 passwords.
Eric Andersen35e643b2003-07-28 07:40:39 +0000119
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000120config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000121 bool "Support loading additional MIME types at run-time"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000122 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000123 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000124 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000125 This option enables support for additional MIME types at
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000126 run-time to be specified in the configuration file.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000127
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000128config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000129 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000130 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000131 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000132 help
133 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000134 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000135
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000136config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000137 bool "Enable support for running scripts through an interpreter"
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000138 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000139 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000140 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000141 This option enables support for running scripts through an
142 interpreter. Turn this on if you want PHP scripts to work
143 properly. You need to supply an addition line in your httpd
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000144 config file:
145 *.php:/path/to/your/php
146
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000147config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000148 bool "Support the REMOTE_PORT environment variable for CGI"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000149 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000150 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000151 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000152 Use of this option can assist scripts in generating
153 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000154
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000155config FEATURE_HTTPD_ENCODE_URL_STR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000156 bool "Enable the -e option for shell script CGI simplification."
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000157 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000158 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000159 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000160 This option allows html encoding arbitrary
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000161 strings for display of the browser. Output goes to stdout.
162 For example, httpd -e "<Hello World>" as
163 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000164
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000165config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000166 bool "ifconfig"
167 default n
168 help
Eric Andersene5642112003-07-14 19:37:08 +0000169 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000170
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000171config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000172 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000173 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000174 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000175 help
Eric Andersene5642112003-07-14 19:37:08 +0000176 If ifconfig is called with no arguments it will display the status
177 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000178
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000179config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000180 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000181 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000182 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000183 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000184 Allow "keepalive" and "outfill" support for SLIP. If you're not
185 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000186
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000187config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000188 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000189 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000190 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000191 help
Eric Andersene5642112003-07-14 19:37:08 +0000192 Allow the start address for shared memory, start address for I/O,
193 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000194
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000195config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000196 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000197 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000198 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000199 help
Eric Andersene5642112003-07-14 19:37:08 +0000200 Set the hardware address of this interface, if the device driver
201 supports this operation. Currently, we only support the 'ether'
202 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000203
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000204config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000205 bool "Set the broadcast automatically"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000206 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000207 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000208 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000209 Setting this will make ifconfig attempt to find the broadcast
210 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000211
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000212config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000213 bool "ifupdown"
214 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000215 select RUN_PARTS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000216 help
Eric Andersen342aea92003-07-26 09:27:02 +0000217 Activate or deactivate the specified interfaces. This applet makes
218 use of either "ifconfig" and "route" or the "ip" command to actually
219 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000220 to enable either IFCONFIG and ROUTE, or enable
221 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000222 course you could use non-busybox versions of these programs, so
223 against my better judgement (since this will surely result in plenty
224 of support questions on the mailing list), I do not force you to
225 enable these additional options. It is up to you to supply either
226 "ifconfig" and "route" or the "ip" command, either via busybox or via
227 standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000228
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000229config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000230 bool "Use ip applet"
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000231 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000232 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000233 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000234 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
235 than the default of using the older 'ifconfig' and 'route' utilities.
236
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000237config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000238 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000239 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000240 depends on FEATURE_IFUPDOWN_IP
241 select IP
242 select FEATURE_IP_ADDRESS
243 select FEATURE_IP_LINK
244 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000245 help
246 Use the busybox iproute "ip" applet to implement "ifupdown".
247
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000248 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000249 utility or the "ifup" and "ifdown" applets will not work.
250
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000251config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000252 bool "Use busybox ifconfig and route applets"
Eric Andersenc601ff12003-08-08 23:12:12 +0000253 default y
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000254 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000255 select IFCONFIG
256 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000257 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000258 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000259 implement the "ifup" and "ifdown" utilities.
260
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000261 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000262 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000263 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000264
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000265config FEATURE_IFUPDOWN_IPV4
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000266 bool "Enable support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000267 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000268 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000269 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000270 If you want busybox to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000271
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000272config FEATURE_IFUPDOWN_IPV6
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000273 bool "Enable support for IPv6"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000274 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000275 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000276 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000277 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000278
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000279config FEATURE_IFUPDOWN_IPX
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000280 bool "Enable support for IPX"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000281 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000282 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000283 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000284 If this option is selected you can use busybox to work with IPX
285 networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000286
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000287config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000288 bool "Enable mapping support"
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000289 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000290 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000291 help
292 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000293 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000294
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000295config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000296 bool "inetd"
297 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000298 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000299 help
300 Internet superserver daemon
301
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000302config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000303 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000304 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000305 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000306 help
307 Echo received data internal inetd service
308
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000309config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000310 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000311 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000312 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000313 help
314 Internet /dev/null internal inetd service
315
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000316config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000317 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000318 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000319 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000320 help
321 Return 32 bit time since 1900 internal inetd service
322
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000323config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000324 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000325 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000326 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000327 help
328 Return human-readable time internal inetd service
329
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000330config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000331 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000332 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000333 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000334 help
335 Familiar character generator internal inetd service
336
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000337config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000338 bool "Support RPC services"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000339 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000340 depends on INETD
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000341 depends on FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000342 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000343 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000344
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000345config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000346 bool "ip"
347 default n
348 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000349 The "ip" applet is a TCP/IP interface configuration and routing
350 utility. You generally don't need "ip" to use busybox with
351 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000352
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000353config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000354 bool "ip address"
355 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000356 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000357 help
358 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000359
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000360config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000361 bool "ip link"
362 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000363 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000364 help
365 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000366
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000367config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000368 bool "ip route"
369 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000370 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000371 help
372 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000373
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000374config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000375 bool "ip tunnel"
376 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000377 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000378 help
379 Add support for tunneling commands to "ip".
380
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000381config FEATURE_IP_RULE
382 bool "ip rule"
383 default n
384 depends on IP
385 help
386 Add support for rule commands to "ip".
387
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000388config FEATURE_IP_SHORT_FORMS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000389 bool "Support short forms of ip commands."
390 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000391 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000392 help
393 Also support short-form of ip <OBJECT> commands:
394 ip addr -> ipaddr
395 ip link -> iplink
396 ip route -> iproute
397 ip tunnel -> iptunnel
398
399 Say N unless you desparately need the short form of the ip
400 object commands.
401
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000402config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000403 bool
404 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000405 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000406
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000407config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000408 bool
409 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000410 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000411
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000412config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000413 bool
414 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000415 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000416
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000417config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000418 bool
419 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000420 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000421
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000422config IPRULE
423 bool
424 default y
425 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
426
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000427config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000428 bool "ipcalc"
429 default n
430 help
Eric Andersene5642112003-07-14 19:37:08 +0000431 ipcalc takes an IP address and netmask and calculates the
432 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000433
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000434config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000435 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000436 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000437 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000438 help
Glenn L McGrath530ea422003-09-02 06:59:57 +0000439 Adds the options hostname, prefix and silent to the output of "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000440
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000441config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000442 bool "Enable long options"
443 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000444 depends on IPCALC && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000445 help
446 Support long options for the ipcalc applet.
447
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448config NAMEIF
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000449 bool "nameif"
450 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000451 select FEATURE_SYSLOG
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000452 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000453 nameif is used to rename network interface by its MAC address.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000454 Renamed interfaces MUST be in the down state.
Eric Andersen88c916b2003-10-22 09:58:56 +0000455 It is possible to use a file (default: /etc/mactab)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000456 with list of new interface names and MACs.
457 Maximum interface name length: IF_NAMESIZE = 16
Eric Andersen88c916b2003-10-22 09:58:56 +0000458 File fields are separated by space or tab.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000459 File format:
460 # Comment
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000461 new_interface_name XX:XX:XX:XX:XX:XX
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000462
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000463config NC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000464 bool "nc"
465 default n
466 help
Eric Andersene5642112003-07-14 19:37:08 +0000467 A simple Unix utility which reads and writes data across network
468 connections.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000469
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000470config NC_SERVER
Rob Landley1cca9482006-07-10 19:45:20 +0000471 bool "Netcat server options (-lp)"
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000472 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000473 depends on NC
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000474 help
Rob Landley1cca9482006-07-10 19:45:20 +0000475 Allow netcat to act as a server.
476
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000477config NC_EXTRA
Rob Landley1cca9482006-07-10 19:45:20 +0000478 bool "Netcat extensions (-eiw and filename)"
479 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000480 depends on NC
Rob Landley1cca9482006-07-10 19:45:20 +0000481 help
482 Add -e (support for executing the rest of the command line after
483 making or receiving a successful connection), -i (delay interval for
484 lines sent), -w (timeout for initial connection).
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000485
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000486config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000487 bool "netstat"
488 default n
489 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000490 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000491
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000492config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000493 bool "nslookup"
494 default n
495 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000496 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000497
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000498config PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000499 bool "ping"
500 default n
501 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000502 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
Eric Andersene5642112003-07-14 19:37:08 +0000503 elicit an ICMP ECHO_RESPONSE from a host or gateway.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000504
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000505config FEATURE_FANCY_PING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000506 bool "Enable fancy ping output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000507 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000508 depends on PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000509 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000510 Make the output from the ping applet include statistics, and at the
511 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000512
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000513config PING6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000514 bool "ping6"
515 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000516 depends on FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000517 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000518 This will give you a ping that can talk IPv6.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000519
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000520config FEATURE_FANCY_PING6
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000521 bool "Enable fancy ping6 output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000522 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000523 depends on PING6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000524 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000525 Make the output from the ping6 applet include statistics, and at the
526 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000527
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000528config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000529 bool "route"
530 default n
531 help
Eric Andersene5642112003-07-14 19:37:08 +0000532 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000533
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000534config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000535 bool "telnet"
536 default n
537 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000538 Telnet is an interface to the TELNET protocol, but is also commonly
539 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000540
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000541config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000542 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000543 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000544 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000545 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000546 Setting this option will forward the TERM environment variable to the
547 remote host you are connecting to. This is useful to make sure that
548 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000549
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000550config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000551 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000552 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000553 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000554 help
555 Setting this option will forward the USER environment variable to the
556 remote host you are connecting to. This is useful when you need to
557 log into a machine without telling the username (autologin). This
558 option enables `-a' and `-l USER' arguments.
559
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000560config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000561 bool "telnetd"
562 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000563 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000564 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000565 A daemon for the TELNET protocol, allowing you to log onto the host
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000566 running the daemon. Please keep in mind that the TELNET protocol
Eric Andersen31ec93e2004-09-23 20:08:46 +0000567 sends passwords in plain text. If you can't afford the space for an
568 SSH daemon and you trust your network, you may say 'y' here. As a
569 more secure alternative, you should seriously consider installing the
570 very small Dropbear SSH daemon instead:
571 http://matt.ucc.asn.au/dropbear/dropbear.html
572
573 Note that for busybox telnetd to work you need several things:
574 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000575 UNIX98_PTYS=y
576 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000577
578 Next, you need a /dev/pts directory on your root filesystem:
579
580 $ ls -ld /dev/pts
581 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
582
583 Next you need the pseudo terminal master multiplexer /dev/ptmx:
584
585 $ ls -la /dev/ptmx
586 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
587
588 Any /dev/ttyp[0-9]* files you may have can be removed.
589 Next, you need to mount the devpts filesystem on /dev/pts using:
590
591 mount -t devpts devpts /dev/pts
592
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000593 You need to be sure that Busybox has LOGIN and
594 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000595 certain that Busybox has been installed setuid root:
596
597 chown root.root /bin/busybox
598 chmod 4755 /bin/busybox
599
600 with all that done, telnetd _should_ work....
601
Eric Andersenc9f20d92002-12-05 08:41:41 +0000602
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000603config FEATURE_TELNETD_STANDALONE
604 bool "Support standalone telnetd (not inetd only)"
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000605 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000606 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000607 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000608 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000609
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000610config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000611 bool "tftp"
612 default n
613 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000614 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000615 is usually used for simple, small transfers such as a root image
616 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000617
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000618config FEATURE_TFTP_GET
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000619 bool "Enable \"get\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000620 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000621 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000622 help
Eric Andersene5642112003-07-14 19:37:08 +0000623 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000624 a client to retrieve a file from a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000625
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000626config FEATURE_TFTP_PUT
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000627 bool "Enable \"put\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000628 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000629 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000630 help
Eric Andersene5642112003-07-14 19:37:08 +0000631 Add support for the PUT command within the TFTP client. This allows
632 a client to transfer a file to a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000633
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000634config FEATURE_TFTP_BLOCKSIZE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000635 bool "Enable \"blocksize\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000636 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000637 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000638 help
Eric Andersene5642112003-07-14 19:37:08 +0000639 Allow the client to specify the desired block size for transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000640
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000641config DEBUG_TFTP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000642 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000643 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000644 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000645 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000646 Enable debug settings for tftp. This is useful if you're running
647 into problems with tftp as the protocol doesn't help you much when
648 you run into problems.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000649
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000650config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000651 bool "traceroute"
652 default n
653 help
Eric Andersene5642112003-07-14 19:37:08 +0000654 Utility to trace the route of IP packets
Eric Andersenc9f20d92002-12-05 08:41:41 +0000655
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000656config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000657 bool "Enable verbose output"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000658 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000659 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000660 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000661 Add some verbosity to traceroute. This includes amongst other things
662 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000663
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000664config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000665 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000666 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000667 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000668 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000669 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000670 (8 maximum).
671
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000672config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000673 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000674 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000675 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000676 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000677 Add feature to allow for ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000678
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000679source networking/udhcp/Config.in
680
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000681config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000682 bool "vconfig"
683 default n
684 help
685 Creates, removes, and configures VLAN interfaces
686
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000687config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000688 bool "wget"
689 default n
690 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000691 wget is a utility for non-interactive download of files from HTTP,
Eric Andersene5642112003-07-14 19:37:08 +0000692 HTTPS, and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000693
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000694config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000695 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000696 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000697 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000698 help
Eric Andersene5642112003-07-14 19:37:08 +0000699 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000700
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000701config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000702 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000703 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000704 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000705 help
Eric Andersene5642112003-07-14 19:37:08 +0000706 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000707
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000708config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000709 bool "Enable long options"
710 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000711 depends on WGET && GETOPT_LONG
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000712 help
713 Support long options for the wget applet.
714
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000715config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +0000716 bool "zcip"
717 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000718 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +0000719 help
720 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
721 It's a daemon that allocates and defends a dynamically assigned
722 address on the 169.254/16 network, requiring no system administrator.
723
724 See http://www.zeroconf.org for further details, and "zcip.script"
725 in the busybox examples.
726
Eric Andersenc9f20d92002-12-05 08:41:41 +0000727endmenu