busybox: update to version 1.34.0
[openwrt/staging/nbd.git] / package / utils / busybox / config / networking / Config.in
1 # DO NOT EDIT. This file is generated from Config.src
2 #
3 # For a description of the syntax of this configuration file,
4 # see docs/Kconfig-language.txt.
5 #
6
7 menu "Networking Utilities"
8
9 config BUSYBOX_CONFIG_FEATURE_IPV6
10 bool "Enable IPv6 support"
11 default BUSYBOX_DEFAULT_FEATURE_IPV6
12 help
13 Enable IPv6 support in busybox.
14 This adds IPv6 support in the networking applets.
15
16 config BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL
17 bool "Enable Unix domain socket support (usually not needed)"
18 default BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL
19 help
20 Enable Unix domain socket support in all busybox networking
21 applets. Address of the form local:/path/to/unix/socket
22 will be recognized.
23
24 This extension is almost never used in real world usage.
25 You most likely want to say N.
26
27 config BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS
28 bool "Prefer IPv4 addresses from DNS queries"
29 default BUSYBOX_DEFAULT_FEATURE_PREFER_IPV4_ADDRESS
30 depends on BUSYBOX_CONFIG_FEATURE_IPV6
31 help
32 Use IPv4 address of network host if it has one.
33
34 If this option is off, the first returned address will be used.
35 This may cause problems when your DNS server is IPv6-capable and
36 is returning IPv6 host addresses too. If IPv6 address
37 precedes IPv4 one in DNS reply, busybox network applets
38 (e.g. wget) will use IPv6 address. On an IPv6-incapable host
39 or network applets will fail to connect to the host
40 using IPv6 address.
41
42 config BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS
43 bool "Verbose resolution errors"
44 default BUSYBOX_DEFAULT_VERBOSE_RESOLUTION_ERRORS
45 help
46 Enable if you are not satisfied with simplistic
47 "can't resolve 'hostname.com'" and want to know more.
48 This may increase size of your executable a bit.
49
50 config BUSYBOX_CONFIG_FEATURE_TLS_SHA1
51 bool "In TLS code, support ciphers which use deprecated SHA1"
52 depends on BUSYBOX_CONFIG_TLS
53 default BUSYBOX_DEFAULT_FEATURE_TLS_SHA1
54 help
55 Selecting this option increases interoperability with very old
56 servers, but slightly increases code size.
57
58 Most TLS servers support SHA256 today (2018), since SHA1 is
59 considered possibly insecure (although not yet definitely broken).
60
61 config BUSYBOX_CONFIG_ARP
62 bool "arp (10 kb)"
63 default BUSYBOX_DEFAULT_ARP
64 help
65 Manipulate the system ARP cache.
66 config BUSYBOX_CONFIG_ARPING
67 bool "arping (9 kb)"
68 default BUSYBOX_DEFAULT_ARPING
69 help
70 Ping hosts by ARP packets.
71 config BUSYBOX_CONFIG_BRCTL
72 bool "brctl (4.7 kb)"
73 default BUSYBOX_DEFAULT_BRCTL
74 help
75 Manage ethernet bridges.
76 Supports addbr/delbr and addif/delif.
77
78 config BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY
79 bool "Fancy options"
80 default BUSYBOX_DEFAULT_FEATURE_BRCTL_FANCY
81 depends on BUSYBOX_CONFIG_BRCTL
82 help
83 Add support for extended option like:
84 setageing, setfd, sethello, setmaxage,
85 setpathcost, setportprio, setbridgeprio,
86 stp
87 This adds about 600 bytes.
88
89 config BUSYBOX_CONFIG_FEATURE_BRCTL_SHOW
90 bool "Support show"
91 default BUSYBOX_DEFAULT_FEATURE_BRCTL_SHOW
92 depends on BUSYBOX_CONFIG_BRCTL && BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY
93 help
94 Add support for option which prints the current config:
95 show
96 config BUSYBOX_CONFIG_DNSD
97 bool "dnsd (9.8 kb)"
98 default BUSYBOX_DEFAULT_DNSD
99 help
100 Small and static DNS server daemon.
101 config BUSYBOX_CONFIG_ETHER_WAKE
102 bool "ether-wake (4.9 kb)"
103 default BUSYBOX_DEFAULT_ETHER_WAKE
104 help
105 Send a magic packet to wake up sleeping machines.
106 config BUSYBOX_CONFIG_FTPD
107 bool "ftpd (30 kb)"
108 default BUSYBOX_DEFAULT_FTPD
109 help
110 Simple FTP daemon. You have to run it via inetd.
111
112 config BUSYBOX_CONFIG_FEATURE_FTPD_WRITE
113 bool "Enable -w (upload commands)"
114 default BUSYBOX_DEFAULT_FEATURE_FTPD_WRITE
115 depends on BUSYBOX_CONFIG_FTPD
116 help
117 Enable -w option. "ftpd -w" will accept upload commands
118 such as STOR, STOU, APPE, DELE, MKD, RMD, rename commands.
119
120 config BUSYBOX_CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST
121 bool "Enable workaround for RFC-violating clients"
122 default BUSYBOX_DEFAULT_FEATURE_FTPD_ACCEPT_BROKEN_LIST
123 depends on BUSYBOX_CONFIG_FTPD
124 help
125 Some ftp clients (among them KDE's Konqueror) issue illegal
126 "LIST -l" requests. This option works around such problems.
127 It might prevent you from listing files starting with "-" and
128 it increases the code size by ~40 bytes.
129 Most other ftp servers seem to behave similar to this.
130
131 config BUSYBOX_CONFIG_FEATURE_FTPD_AUTHENTICATION
132 bool "Enable authentication"
133 default BUSYBOX_DEFAULT_FEATURE_FTPD_AUTHENTICATION
134 depends on BUSYBOX_CONFIG_FTPD
135 help
136 Require login, and change to logged in user's UID:GID before
137 accessing any files. Option "-a USER" allows "anonymous"
138 logins (treats them as if USER logged in).
139
140 If this option is not selected, ftpd runs with the rights
141 of the user it was started under, and does not require login.
142 Take care to not launch it under root.
143 config BUSYBOX_CONFIG_FTPGET
144 bool "ftpget (7.8 kb)"
145 default BUSYBOX_DEFAULT_FTPGET
146 help
147 Retrieve a remote file via FTP.
148
149 config BUSYBOX_CONFIG_FTPPUT
150 bool "ftpput (7.5 kb)"
151 default BUSYBOX_DEFAULT_FTPPUT
152 help
153 Store a remote file via FTP.
154
155 config BUSYBOX_CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS
156 bool "Enable long options in ftpget/ftpput"
157 default BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS
158 depends on BUSYBOX_CONFIG_LONG_OPTS && (BUSYBOX_CONFIG_FTPGET || BUSYBOX_CONFIG_FTPPUT)
159 config BUSYBOX_CONFIG_HOSTNAME
160 bool "hostname (5.5 kb)"
161 default BUSYBOX_DEFAULT_HOSTNAME
162 help
163 Show or set the system's host name.
164
165 config BUSYBOX_CONFIG_DNSDOMAINNAME
166 bool "dnsdomainname (3.6 kb)"
167 default BUSYBOX_DEFAULT_DNSDOMAINNAME
168 help
169 Alias to "hostname -d".
170 config BUSYBOX_CONFIG_HTTPD
171 bool "httpd (32 kb)"
172 default BUSYBOX_DEFAULT_HTTPD
173 help
174 HTTP server.
175
176 config BUSYBOX_CONFIG_FEATURE_HTTPD_RANGES
177 bool "Support 'Ranges:' header"
178 default BUSYBOX_DEFAULT_FEATURE_HTTPD_RANGES
179 depends on BUSYBOX_CONFIG_HTTPD
180 help
181 Makes httpd emit "Accept-Ranges: bytes" header and understand
182 "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
183 downloads, seeking in multimedia players etc.
184
185 config BUSYBOX_CONFIG_FEATURE_HTTPD_SETUID
186 bool "Enable -u <user> option"
187 default BUSYBOX_DEFAULT_FEATURE_HTTPD_SETUID
188 depends on BUSYBOX_CONFIG_HTTPD
189 help
190 This option allows the server to run as a specific user
191 rather than defaulting to the user that starts the server.
192 Use of this option requires special privileges to change to a
193 different user.
194
195 config BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
196 bool "Enable HTTP authentication"
197 default BUSYBOX_DEFAULT_FEATURE_HTTPD_BASIC_AUTH
198 depends on BUSYBOX_CONFIG_HTTPD
199 help
200 Utilizes password settings from /etc/httpd.conf for basic
201 authentication on a per url basis.
202 Example for httpd.conf file:
203 /adm:toor:PaSsWd
204
205 config BUSYBOX_CONFIG_FEATURE_HTTPD_AUTH_MD5
206 bool "Support MD5-encrypted passwords in HTTP authentication"
207 default BUSYBOX_DEFAULT_FEATURE_HTTPD_AUTH_MD5
208 depends on BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
209 help
210 Enables encrypted passwords, and wildcard user/passwords
211 in httpd.conf file.
212 User '*' means 'any system user name is ok',
213 password of '*' means 'use system password for this user'
214 Examples:
215 /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
216 /adm:root:*
217 /wiki:*:*
218
219 config BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
220 bool "Support Common Gateway Interface (CGI)"
221 default BUSYBOX_DEFAULT_FEATURE_HTTPD_CGI
222 depends on BUSYBOX_CONFIG_HTTPD
223 help
224 This option allows scripts and executables to be invoked
225 when specific URLs are requested.
226
227 config BUSYBOX_CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
228 bool "Support running scripts through an interpreter"
229 default BUSYBOX_DEFAULT_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
230 depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
231 help
232 This option enables support for running scripts through an
233 interpreter. Turn this on if you want PHP scripts to work
234 properly. You need to supply an additional line in your
235 httpd.conf file:
236 *.php:/path/to/your/php
237
238 config BUSYBOX_CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
239 bool "Set REMOTE_PORT environment variable for CGI"
240 default BUSYBOX_DEFAULT_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
241 depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
242 help
243 Use of this option can assist scripts in generating
244 references that contain a unique port number.
245
246 config BUSYBOX_CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
247 bool "Enable -e option (useful for CGIs written as shell scripts)"
248 default BUSYBOX_DEFAULT_FEATURE_HTTPD_ENCODE_URL_STR
249 depends on BUSYBOX_CONFIG_HTTPD
250 help
251 This option allows html encoding of arbitrary strings for display
252 by the browser. Output goes to stdout.
253 For example, httpd -e "<Hello World>" produces
254 "&#60Hello&#32World&#62".
255
256 config BUSYBOX_CONFIG_FEATURE_HTTPD_ERROR_PAGES
257 bool "Support custom error pages"
258 default BUSYBOX_DEFAULT_FEATURE_HTTPD_ERROR_PAGES
259 depends on BUSYBOX_CONFIG_HTTPD
260 help
261 This option allows you to define custom error pages in
262 the configuration file instead of the default HTTP status
263 error pages. For instance, if you add the line:
264 E404:/path/e404.html
265 in the config file, the server will respond the specified
266 '/path/e404.html' file instead of the terse '404 NOT FOUND'
267 message.
268
269 config BUSYBOX_CONFIG_FEATURE_HTTPD_PROXY
270 bool "Support reverse proxy"
271 default BUSYBOX_DEFAULT_FEATURE_HTTPD_PROXY
272 depends on BUSYBOX_CONFIG_HTTPD
273 help
274 This option allows you to define URLs that will be forwarded
275 to another HTTP server. To setup add the following line to the
276 configuration file
277 P:/url/:http://hostname[:port]/new/path/
278 Then a request to /url/myfile will be forwarded to
279 http://hostname[:port]/new/path/myfile.
280
281 config BUSYBOX_CONFIG_FEATURE_HTTPD_GZIP
282 bool "Support GZIP content encoding"
283 default BUSYBOX_DEFAULT_FEATURE_HTTPD_GZIP
284 depends on BUSYBOX_CONFIG_HTTPD
285 help
286 Makes httpd send files using GZIP content encoding if the
287 client supports it and a pre-compressed <file>.gz exists.
288
289 config BUSYBOX_CONFIG_FEATURE_HTTPD_ETAG
290 bool "Support caching via ETag header"
291 default BUSYBOX_DEFAULT_FEATURE_HTTPD_ETAG
292 depends on BUSYBOX_CONFIG_HTTPD
293 help
294 If server responds with ETag then next time client (browser)
295 resend it via If-None-Match header.
296 Then httpd will check if file wasn't modified and if not,
297 return 304 Not Modified status code.
298 The ETag value is constructed from last modification date
299 in unix epoch, and size: "hex(last_mod)-hex(file_size)".
300 It's not completely reliable as hash functions but fair enough.
301
302 config BUSYBOX_CONFIG_FEATURE_HTTPD_LAST_MODIFIED
303 bool "Add Last-Modified header to response"
304 default BUSYBOX_DEFAULT_FEATURE_HTTPD_LAST_MODIFIED
305 depends on BUSYBOX_CONFIG_HTTPD
306 help
307 The Last-Modified header is used for cache validation.
308 The client sends last seen mtime to server in If-Modified-Since.
309 Both headers MUST be an RFC 1123 formatted, which is hard to parse.
310 Use ETag header instead.
311
312 config BUSYBOX_CONFIG_FEATURE_HTTPD_DATE
313 bool "Add Date header to response"
314 default BUSYBOX_DEFAULT_FEATURE_HTTPD_DATE
315 depends on BUSYBOX_CONFIG_HTTPD
316 help
317 RFC2616 says that server MUST add Date header to response.
318 But it is almost useless and can be omitted.
319
320 config BUSYBOX_CONFIG_FEATURE_HTTPD_ACL_IP
321 bool "ACL IP"
322 default BUSYBOX_DEFAULT_FEATURE_HTTPD_ACL_IP
323 depends on BUSYBOX_CONFIG_HTTPD
324 help
325 Support IP deny/allow rules
326 config BUSYBOX_CONFIG_IFCONFIG
327 bool "ifconfig (12 kb)"
328 default BUSYBOX_DEFAULT_IFCONFIG
329 help
330 Ifconfig is used to configure the kernel-resident network interfaces.
331
332 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS
333 bool "Enable status reporting output (+7k)"
334 default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_STATUS
335 depends on BUSYBOX_CONFIG_IFCONFIG
336 help
337 If ifconfig is called with no arguments it will display the status
338 of the currently active interfaces.
339
340 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP
341 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
342 default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_SLIP
343 depends on BUSYBOX_CONFIG_IFCONFIG
344 help
345 Allow "keepalive" and "outfill" support for SLIP. If you're not
346 planning on using serial lines, leave this unchecked.
347
348 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
349 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
350 default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
351 depends on BUSYBOX_CONFIG_IFCONFIG
352 help
353 Allow the start address for shared memory, start address for I/O,
354 and/or the interrupt line used by the specified device.
355
356 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW
357 bool "Enable option \"hw\" (ether only)"
358 default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_HW
359 depends on BUSYBOX_CONFIG_IFCONFIG
360 help
361 Set the hardware address of this interface, if the device driver
362 supports this operation. Currently, we only support the 'ether'
363 class.
364
365 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
366 bool "Set the broadcast automatically"
367 default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_BROADCAST_PLUS
368 depends on BUSYBOX_CONFIG_IFCONFIG
369 help
370 Setting this will make ifconfig attempt to find the broadcast
371 automatically if the value '+' is used.
372 config BUSYBOX_CONFIG_IFENSLAVE
373 bool "ifenslave (13 kb)"
374 default BUSYBOX_DEFAULT_IFENSLAVE
375 help
376 Userspace application to bind several interfaces
377 to a logical interface (use with kernel bonding driver).
378 config BUSYBOX_CONFIG_IFPLUGD
379 bool "ifplugd (10 kb)"
380 default BUSYBOX_DEFAULT_IFPLUGD
381 help
382 Network interface plug detection daemon.
383 config BUSYBOX_CONFIG_IFUP
384 bool "ifup (14 kb)"
385 default BUSYBOX_DEFAULT_IFUP
386 help
387 Activate the specified interfaces. This applet makes use
388 of either "ifconfig" and "route" or the "ip" command to actually
389 configure network interfaces. Therefore, you will probably also want
390 to enable either IFCONFIG and ROUTE, or enable
391 FEATURE_IFUPDOWN_IP and the various IP options. Of
392 course you could use non-busybox versions of these programs, so
393 against my better judgement (since this will surely result in plenty
394 of support questions on the mailing list), I do not force you to
395 enable these additional options. It is up to you to supply either
396 "ifconfig", "route" and "run-parts" or the "ip" command, either
397 via busybox or via standalone utilities.
398
399 config BUSYBOX_CONFIG_IFDOWN
400 bool "ifdown (13 kb)"
401 default BUSYBOX_DEFAULT_IFDOWN
402 help
403 Deactivate the specified interfaces.
404
405 config BUSYBOX_CONFIG_IFUPDOWN_IFSTATE_PATH
406 string "Absolute path to ifstate file"
407 default BUSYBOX_DEFAULT_IFUPDOWN_IFSTATE_PATH
408 depends on BUSYBOX_CONFIG_IFUP || BUSYBOX_CONFIG_IFDOWN
409 help
410 ifupdown keeps state information in a file called ifstate.
411 Typically it is located in /var/run/ifstate, however
412 some distributions tend to put it in other places
413 (debian, for example, uses /etc/network/run/ifstate).
414 This config option defines location of ifstate.
415
416 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
417 bool "Use ip tool (else ifconfig/route is used)"
418 default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP
419 depends on BUSYBOX_CONFIG_IFUP || BUSYBOX_CONFIG_IFDOWN
420 help
421 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
422 than the default of using the older "ifconfig" and "route" utilities.
423
424 If Y: you must install either the full-blown iproute2 package
425 or enable "ip" applet in busybox, or the "ifup" and "ifdown" applets
426 will not work.
427
428 If N: you must install either the full-blown ifconfig and route
429 utilities, or enable these applets in busybox.
430
431 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV4
432 bool "Support IPv4"
433 default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV4
434 depends on BUSYBOX_CONFIG_IFUP || BUSYBOX_CONFIG_IFDOWN
435 help
436 If you want ifup/ifdown to talk IPv4, leave this on.
437
438 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV6
439 bool "Support IPv6"
440 default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV6
441 depends on (BUSYBOX_CONFIG_IFUP || BUSYBOX_CONFIG_IFDOWN) && BUSYBOX_CONFIG_FEATURE_IPV6
442 help
443 If you need support for IPv6, turn this option on.
444
445
446 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_MAPPING
447 bool "Enable mapping support"
448 default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_MAPPING
449 depends on BUSYBOX_CONFIG_IFUP || BUSYBOX_CONFIG_IFDOWN
450 help
451 This enables support for the "mapping" stanza, unless you have
452 a weird network setup you don't need it.
453
454 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP
455 bool "Support external DHCP clients"
456 default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_EXTERNAL_DHCP
457 depends on BUSYBOX_CONFIG_IFUP || BUSYBOX_CONFIG_IFDOWN
458 help
459 This enables support for the external dhcp clients. Clients are
460 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
461 Otherwise, if udhcpc applet is enabled, it is used.
462 Otherwise, ifup/ifdown will have no support for DHCP.
463 config BUSYBOX_CONFIG_INETD
464 bool "inetd (18 kb)"
465 default BUSYBOX_DEFAULT_INETD
466 select BUSYBOX_CONFIG_FEATURE_SYSLOG
467 help
468 Internet superserver daemon
469
470 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
471 bool "Support echo service on port 7"
472 default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
473 depends on BUSYBOX_CONFIG_INETD
474 help
475 Internal service which echoes data back.
476 Activated by configuration lines like these:
477 echo stream tcp nowait root internal
478 echo dgram udp wait root internal
479
480 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
481 bool "Support discard service on port 8"
482 default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
483 depends on BUSYBOX_CONFIG_INETD
484 help
485 Internal service which discards all input.
486 Activated by configuration lines like these:
487 discard stream tcp nowait root internal
488 discard dgram udp wait root internal
489
490 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME
491 bool "Support time service on port 37"
492 default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_TIME
493 depends on BUSYBOX_CONFIG_INETD
494 help
495 Internal service which returns big-endian 32-bit number
496 of seconds passed since 1900-01-01. The number wraps around
497 on overflow.
498 Activated by configuration lines like these:
499 time stream tcp nowait root internal
500 time dgram udp wait root internal
501
502 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
503 bool "Support daytime service on port 13"
504 default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
505 depends on BUSYBOX_CONFIG_INETD
506 help
507 Internal service which returns human-readable time.
508 Activated by configuration lines like these:
509 daytime stream tcp nowait root internal
510 daytime dgram udp wait root internal
511
512 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
513 bool "Support chargen service on port 19"
514 default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
515 depends on BUSYBOX_CONFIG_INETD
516 help
517 Internal service which generates endless stream
518 of all ASCII chars beetween space and char 126.
519 Activated by configuration lines like these:
520 chargen stream tcp nowait root internal
521 chargen dgram udp wait root internal
522
523 config BUSYBOX_CONFIG_FEATURE_INETD_RPC
524 bool "Support RPC services"
525 default BUSYBOX_DEFAULT_FEATURE_INETD_RPC # very rarely used, and needs Sun RPC support in libc
526 depends on BUSYBOX_CONFIG_INETD
527 help
528 Support Sun-RPC based services
529 config BUSYBOX_CONFIG_IP
530 bool "ip (35 kb)"
531 default BUSYBOX_DEFAULT_IP
532 help
533 The "ip" applet is a TCP/IP interface configuration and routing
534 utility.
535 Short forms (enabled below) are busybox-specific extensions.
536 The standard "ip" utility does not provide them. If you are
537 trying to be portable, it's better to use "ip CMD" forms.
538
539 config BUSYBOX_CONFIG_IPADDR
540 bool "ipaddr (14 kb)"
541 default BUSYBOX_DEFAULT_IPADDR
542 select BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
543 help
544 Short form of "ip addr"
545
546 config BUSYBOX_CONFIG_IPLINK
547 bool "iplink (17 kb)"
548 default BUSYBOX_DEFAULT_IPLINK
549 select BUSYBOX_CONFIG_FEATURE_IP_LINK
550 help
551 Short form of "ip link"
552
553 config BUSYBOX_CONFIG_IPROUTE
554 bool "iproute (15 kb)"
555 default BUSYBOX_DEFAULT_IPROUTE
556 select BUSYBOX_CONFIG_FEATURE_IP_ROUTE
557 help
558 Short form of "ip route"
559
560 config BUSYBOX_CONFIG_IPTUNNEL
561 bool "iptunnel (9.6 kb)"
562 default BUSYBOX_DEFAULT_IPTUNNEL
563 select BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
564 help
565 Short form of "ip tunnel"
566
567 config BUSYBOX_CONFIG_IPRULE
568 bool "iprule (10 kb)"
569 default BUSYBOX_DEFAULT_IPRULE
570 select BUSYBOX_CONFIG_FEATURE_IP_RULE
571 help
572 Short form of "ip rule"
573
574 config BUSYBOX_CONFIG_IPNEIGH
575 bool "ipneigh (8.3 kb)"
576 default BUSYBOX_DEFAULT_IPNEIGH
577 select BUSYBOX_CONFIG_FEATURE_IP_NEIGH
578 help
579 Short form of "ip neigh"
580
581 config BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
582 bool "ip address"
583 default BUSYBOX_DEFAULT_FEATURE_IP_ADDRESS
584 depends on BUSYBOX_CONFIG_IP || BUSYBOX_CONFIG_IPADDR
585 help
586 Address manipulation support for the "ip" applet.
587
588 config BUSYBOX_CONFIG_FEATURE_IP_LINK
589 bool "ip link"
590 default BUSYBOX_DEFAULT_FEATURE_IP_LINK
591 depends on BUSYBOX_CONFIG_IP || BUSYBOX_CONFIG_IPLINK
592 help
593 Configure network devices with "ip".
594
595 config BUSYBOX_CONFIG_FEATURE_IP_ROUTE
596 bool "ip route"
597 default BUSYBOX_DEFAULT_FEATURE_IP_ROUTE
598 depends on BUSYBOX_CONFIG_IP || BUSYBOX_CONFIG_IPROUTE
599 help
600 Add support for routing table management to "ip".
601
602 config BUSYBOX_CONFIG_FEATURE_IP_ROUTE_DIR
603 string "ip route configuration directory"
604 default BUSYBOX_DEFAULT_FEATURE_IP_ROUTE_DIR
605 depends on BUSYBOX_CONFIG_FEATURE_IP_ROUTE
606 help
607 Location of the "ip" applet routing configuration.
608
609 config BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
610 bool "ip tunnel"
611 default BUSYBOX_DEFAULT_FEATURE_IP_TUNNEL
612 depends on BUSYBOX_CONFIG_IP || BUSYBOX_CONFIG_IPTUNNEL
613 help
614 Add support for tunneling commands to "ip".
615
616 config BUSYBOX_CONFIG_FEATURE_IP_RULE
617 bool "ip rule"
618 default BUSYBOX_DEFAULT_FEATURE_IP_RULE
619 depends on BUSYBOX_CONFIG_IP || BUSYBOX_CONFIG_IPRULE
620 help
621 Add support for rule commands to "ip".
622
623 config BUSYBOX_CONFIG_FEATURE_IP_NEIGH
624 bool "ip neighbor"
625 default BUSYBOX_DEFAULT_FEATURE_IP_NEIGH
626 depends on BUSYBOX_CONFIG_IP || BUSYBOX_CONFIG_IPNEIGH
627 help
628 Add support for neighbor commands to "ip".
629
630 config BUSYBOX_CONFIG_FEATURE_IP_RARE_PROTOCOLS
631 bool "Support displaying rarely used link types"
632 default BUSYBOX_DEFAULT_FEATURE_IP_RARE_PROTOCOLS
633 depends on BUSYBOX_CONFIG_IP || BUSYBOX_CONFIG_IPADDR || BUSYBOX_CONFIG_IPLINK || BUSYBOX_CONFIG_IPROUTE || BUSYBOX_CONFIG_IPTUNNEL || BUSYBOX_CONFIG_IPRULE || BUSYBOX_CONFIG_IPNEIGH
634 help
635 If you are not going to use links of type "frad", "econet",
636 "bif" etc, you probably don't need to enable this.
637 Ethernet, wireless, infrared, ppp/slip, ip tunnelling
638 link types are supported without this option selected.
639 config BUSYBOX_CONFIG_IPCALC
640 bool "ipcalc (4.4 kb)"
641 default BUSYBOX_DEFAULT_IPCALC
642 help
643 ipcalc takes an IP address and netmask and calculates the
644 resulting broadcast, network, and host range.
645
646 config BUSYBOX_CONFIG_FEATURE_IPCALC_LONG_OPTIONS
647 bool "Enable long options"
648 default BUSYBOX_DEFAULT_FEATURE_IPCALC_LONG_OPTIONS
649 depends on BUSYBOX_CONFIG_IPCALC && BUSYBOX_CONFIG_LONG_OPTS
650
651 config BUSYBOX_CONFIG_FEATURE_IPCALC_FANCY
652 bool "Fancy IPCALC, more options, adds 1 kbyte"
653 default BUSYBOX_DEFAULT_FEATURE_IPCALC_FANCY
654 depends on BUSYBOX_CONFIG_IPCALC
655 help
656 Adds the options hostname, prefix and silent to the output of
657 "ipcalc".
658 config BUSYBOX_CONFIG_FAKEIDENTD
659 bool "fakeidentd (8.7 kb)"
660 default BUSYBOX_DEFAULT_FAKEIDENTD
661 select BUSYBOX_CONFIG_FEATURE_SYSLOG
662 help
663 fakeidentd listens on the ident port and returns a predefined
664 fake value on any query.
665 config BUSYBOX_CONFIG_NAMEIF
666 bool "nameif (6.6 kb)"
667 default BUSYBOX_DEFAULT_NAMEIF
668 select BUSYBOX_CONFIG_FEATURE_SYSLOG
669 help
670 nameif is used to rename network interface by its MAC address.
671 Renamed interfaces MUST be in the down state.
672 It is possible to use a file (default: /etc/mactab)
673 with list of new interface names and MACs.
674 Maximum interface name length: IFNAMSIZ = 16
675 File fields are separated by space or tab.
676 File format:
677 # Comment
678 new_interface_name XX:XX:XX:XX:XX:XX
679
680 config BUSYBOX_CONFIG_FEATURE_NAMEIF_EXTENDED
681 bool "Extended nameif"
682 default BUSYBOX_DEFAULT_FEATURE_NAMEIF_EXTENDED
683 depends on BUSYBOX_CONFIG_NAMEIF
684 help
685 This extends the nameif syntax to support the bus_info, driver,
686 phyaddr selectors. The syntax is compatible to the normal nameif.
687 File format:
688 new_interface_name driver=asix bus=usb-0000:00:08.2-3
689 new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
690 new_interface_name phy_address=2 00:80:C8:38:91:B5
691 new_interface_name mac=00:80:C8:38:91:B5
692 new_interface_name 00:80:C8:38:91:B5
693 config BUSYBOX_CONFIG_NBDCLIENT
694 bool "nbd-client (6 kb)"
695 default BUSYBOX_DEFAULT_NBDCLIENT
696 help
697 Network block device client
698 config BUSYBOX_CONFIG_NC
699 bool "nc (11 kb)"
700 default BUSYBOX_DEFAULT_NC
701 help
702 A simple Unix utility which reads and writes data across network
703 connections.
704
705 config BUSYBOX_CONFIG_NETCAT
706 bool "netcat (11 kb)"
707 default BUSYBOX_DEFAULT_NETCAT
708 help
709 Alias to nc.
710
711 config BUSYBOX_CONFIG_NC_SERVER
712 bool "Netcat server options (-l)"
713 default BUSYBOX_DEFAULT_NC_SERVER
714 depends on BUSYBOX_CONFIG_NC || BUSYBOX_CONFIG_NETCAT
715 help
716 Allow netcat to act as a server.
717
718 config BUSYBOX_CONFIG_NC_EXTRA
719 bool "Netcat extensions (-eiw and -f FILE)"
720 default BUSYBOX_DEFAULT_NC_EXTRA
721 depends on BUSYBOX_CONFIG_NC || BUSYBOX_CONFIG_NETCAT
722 help
723 Add -e (support for executing the rest of the command line after
724 making or receiving a successful connection), -i (delay interval for
725 lines sent), -w (timeout for initial connection).
726
727 config BUSYBOX_CONFIG_NC_110_COMPAT
728 bool "Netcat 1.10 compatibility (+2.5k)"
729 default BUSYBOX_DEFAULT_NC_110_COMPAT
730 depends on BUSYBOX_CONFIG_NC || BUSYBOX_CONFIG_NETCAT
731 help
732 This option makes nc closely follow original nc-1.10.
733 The code is about 2.5k bigger. It enables
734 -s ADDR, -n, -u, -v, -o FILE, -z options, but loses
735 busybox-specific extensions: -f FILE.
736 config BUSYBOX_CONFIG_NETMSG
737 bool "netmsg"
738 default BUSYBOX_DEFAULT_NETMSG
739 help
740 simple program for sending udp broadcast messages
741 config BUSYBOX_CONFIG_NETSTAT
742 bool "netstat (10 kb)"
743 default BUSYBOX_DEFAULT_NETSTAT
744 help
745 netstat prints information about the Linux networking subsystem.
746
747 config BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE
748 bool "Enable wide output"
749 default BUSYBOX_DEFAULT_FEATURE_NETSTAT_WIDE
750 depends on BUSYBOX_CONFIG_NETSTAT
751 help
752 Add support for wide columns. Useful when displaying IPv6 addresses
753 (-W option).
754
755 config BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG
756 bool "Enable PID/Program name output"
757 default BUSYBOX_DEFAULT_FEATURE_NETSTAT_PRG
758 depends on BUSYBOX_CONFIG_NETSTAT
759 help
760 Add support for -p flag to print out PID and program name.
761 +700 bytes of code.
762 config BUSYBOX_CONFIG_NSLOOKUP
763 bool "nslookup (9.7 kb)"
764 default BUSYBOX_DEFAULT_NSLOOKUP
765 help
766 nslookup is a tool to query Internet name servers.
767
768 config BUSYBOX_CONFIG_FEATURE_NSLOOKUP_BIG
769 bool "Use internal resolver code instead of libc"
770 depends on BUSYBOX_CONFIG_NSLOOKUP
771 default BUSYBOX_DEFAULT_FEATURE_NSLOOKUP_BIG
772
773 config BUSYBOX_CONFIG_FEATURE_NSLOOKUP_LONG_OPTIONS
774 bool "Enable long options"
775 default BUSYBOX_DEFAULT_FEATURE_NSLOOKUP_LONG_OPTIONS
776 depends on BUSYBOX_CONFIG_FEATURE_NSLOOKUP_BIG && BUSYBOX_CONFIG_LONG_OPTS
777
778 config BUSYBOX_CONFIG_NTPD
779 bool "ntpd (22 kb)"
780 default BUSYBOX_DEFAULT_NTPD
781 help
782 The NTP client/server daemon.
783
784 config BUSYBOX_CONFIG_FEATURE_NTPD_SERVER
785 bool "Make ntpd usable as a NTP server"
786 default BUSYBOX_DEFAULT_FEATURE_NTPD_SERVER
787 depends on BUSYBOX_CONFIG_NTPD
788 help
789 Make ntpd usable as a NTP server. If you disable this option
790 ntpd will be usable only as a NTP client.
791
792 config BUSYBOX_CONFIG_FEATURE_NTPD_CONF
793 bool "Make ntpd understand /etc/ntp.conf"
794 default BUSYBOX_DEFAULT_FEATURE_NTPD_CONF
795 depends on BUSYBOX_CONFIG_NTPD
796 help
797 Make ntpd look in /etc/ntp.conf for peers. Only "server address"
798 is supported.
799
800 config BUSYBOX_CONFIG_FEATURE_NTP_AUTH
801 bool "Support md5/sha1 message authentication codes"
802 default BUSYBOX_DEFAULT_FEATURE_NTP_AUTH
803 depends on BUSYBOX_CONFIG_NTPD
804 config BUSYBOX_CONFIG_PING
805 bool "ping (10 kb)"
806 default BUSYBOX_DEFAULT_PING
807 help
808 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
809 elicit an ICMP ECHO_RESPONSE from a host or gateway.
810
811 config BUSYBOX_CONFIG_PING6
812 bool "ping6 (11 kb)"
813 default BUSYBOX_DEFAULT_PING6
814 depends on BUSYBOX_CONFIG_FEATURE_IPV6
815 help
816 Alias to "ping -6".
817
818 config BUSYBOX_CONFIG_FEATURE_FANCY_PING
819 bool "Enable fancy ping output"
820 default BUSYBOX_DEFAULT_FEATURE_FANCY_PING
821 depends on BUSYBOX_CONFIG_PING || BUSYBOX_CONFIG_PING6
822 help
823 With this option off, ping will say "HOST is alive!"
824 or terminate with SIGALRM in 5 seconds otherwise.
825 No command-line options will be recognized.
826 config BUSYBOX_CONFIG_PSCAN
827 bool "pscan (6 kb)"
828 default BUSYBOX_DEFAULT_PSCAN
829 help
830 Simple network port scanner.
831 config BUSYBOX_CONFIG_ROUTE
832 bool "route (8.7 kb)"
833 default BUSYBOX_DEFAULT_ROUTE
834 help
835 Route displays or manipulates the kernel's IP routing tables.
836 config BUSYBOX_CONFIG_SLATTACH
837 bool "slattach (6.2 kb)"
838 default BUSYBOX_DEFAULT_SLATTACH
839 help
840 slattach configures serial line as SLIP network interface.
841 config BUSYBOX_CONFIG_SSL_CLIENT
842 bool "ssl_client (25 kb)"
843 default BUSYBOX_DEFAULT_SSL_CLIENT
844 select BUSYBOX_CONFIG_TLS
845 help
846 This tool pipes data to/from a socket, TLS-encrypting it.
847 config BUSYBOX_CONFIG_TC
848 bool "tc (8.3 kb)"
849 default BUSYBOX_DEFAULT_TC
850 help
851 Show / manipulate traffic control settings
852
853 config BUSYBOX_CONFIG_FEATURE_TC_INGRESS
854 bool "Enable ingress"
855 default BUSYBOX_DEFAULT_FEATURE_TC_INGRESS
856 depends on BUSYBOX_CONFIG_TC
857 config BUSYBOX_CONFIG_TCPSVD
858 bool "tcpsvd (14 kb)"
859 default BUSYBOX_DEFAULT_TCPSVD
860 help
861 tcpsvd listens on a TCP port and runs a program for each new
862 connection.
863
864 config BUSYBOX_CONFIG_UDPSVD
865 bool "udpsvd (13 kb)"
866 default BUSYBOX_DEFAULT_UDPSVD
867 help
868 udpsvd listens on an UDP port and runs a program for each new
869 connection.
870 config BUSYBOX_CONFIG_TELNET
871 bool "telnet (8.8 kb)"
872 default BUSYBOX_DEFAULT_TELNET
873 help
874 Telnet is an interface to the TELNET protocol, but is also commonly
875 used to test other simple protocols.
876
877 config BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE
878 bool "Pass TERM type to remote host"
879 default BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE
880 depends on BUSYBOX_CONFIG_TELNET
881 help
882 Setting this option will forward the TERM environment variable to the
883 remote host you are connecting to. This is useful to make sure that
884 things like ANSI colors and other control sequences behave.
885
886 config BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN
887 bool "Pass USER type to remote host"
888 default BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN
889 depends on BUSYBOX_CONFIG_TELNET
890 help
891 Setting this option will forward the USER environment variable to the
892 remote host you are connecting to. This is useful when you need to
893 log into a machine without telling the username (autologin). This
894 option enables '-a' and '-l USER' options.
895
896 config BUSYBOX_CONFIG_FEATURE_TELNET_WIDTH
897 bool "Enable window size autodetection"
898 default BUSYBOX_DEFAULT_FEATURE_TELNET_WIDTH
899 depends on BUSYBOX_CONFIG_TELNET
900 config BUSYBOX_CONFIG_TELNETD
901 bool "telnetd (12 kb)"
902 default BUSYBOX_DEFAULT_TELNETD
903 select BUSYBOX_CONFIG_FEATURE_SYSLOG
904 help
905 A daemon for the TELNET protocol, allowing you to log onto the host
906 running the daemon. Please keep in mind that the TELNET protocol
907 sends passwords in plain text. If you can't afford the space for an
908 SSH daemon and you trust your network, you may say 'y' here. As a
909 more secure alternative, you should seriously consider installing the
910 very small Dropbear SSH daemon instead:
911 http://matt.ucc.asn.au/dropbear/dropbear.html
912
913 Note that for busybox telnetd to work you need several things:
914 First of all, your kernel needs:
915 CONFIG_UNIX98_PTYS=y
916
917 Next, you need a /dev/pts directory on your root filesystem:
918
919 $ ls -ld /dev/pts
920 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
921
922 Next you need the pseudo terminal master multiplexer /dev/ptmx:
923
924 $ ls -la /dev/ptmx
925 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
926
927 Any /dev/ttyp[0-9]* files you may have can be removed.
928 Next, you need to mount the devpts filesystem on /dev/pts using:
929
930 mount -t devpts devpts /dev/pts
931
932 You need to be sure that busybox has LOGIN and
933 FEATURE_SUID enabled. And finally, you should make
934 certain that busybox has been installed setuid root:
935
936 chown root.root /bin/busybox
937 chmod 4755 /bin/busybox
938
939 with all that done, telnetd _should_ work....
940
941 config BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE
942 bool "Support standalone telnetd (not inetd only)"
943 default BUSYBOX_DEFAULT_FEATURE_TELNETD_STANDALONE
944 depends on BUSYBOX_CONFIG_TELNETD
945 help
946 Selecting this will make telnetd able to run standalone.
947
948 config BUSYBOX_CONFIG_FEATURE_TELNETD_INETD_WAIT
949 bool "Support -w SEC option (inetd wait mode)"
950 default BUSYBOX_DEFAULT_FEATURE_TELNETD_INETD_WAIT
951 depends on BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE
952 help
953 This option allows you to run telnetd in "inet wait" mode.
954 Example inetd.conf line (note "wait", not usual "nowait"):
955
956 telnet stream tcp wait root /bin/telnetd telnetd -w10
957
958 In this example, inetd passes _listening_ socket_ as fd 0
959 to telnetd when connection appears.
960 telnetd will wait for connections until all existing
961 connections are closed, and no new connections
962 appear during 10 seconds. Then it exits, and inetd continues
963 to listen for new connections.
964
965 This option is rarely used. "tcp nowait" is much more usual
966 way of running tcp services, including telnetd.
967 You most probably want to say N here.
968 config BUSYBOX_CONFIG_TFTP
969 bool "tftp (11 kb)"
970 default BUSYBOX_DEFAULT_TFTP
971 help
972 Trivial File Transfer Protocol client. TFTP is usually used
973 for simple, small transfers such as a root image
974 for a network-enabled bootloader.
975
976 config BUSYBOX_CONFIG_FEATURE_TFTP_PROGRESS_BAR
977 bool "Enable progress bar"
978 default BUSYBOX_DEFAULT_FEATURE_TFTP_PROGRESS_BAR
979 depends on BUSYBOX_CONFIG_TFTP
980
981 config BUSYBOX_CONFIG_FEATURE_TFTP_HPA_COMPAT
982 bool "tftp-hpa compat (support -c get/put FILE)"
983 default BUSYBOX_DEFAULT_FEATURE_TFTP_HPA_COMPAT
984 depends on BUSYBOX_CONFIG_TFTP
985
986 config BUSYBOX_CONFIG_TFTPD
987 bool "tftpd (10 kb)"
988 default BUSYBOX_DEFAULT_TFTPD
989 help
990 Trivial File Transfer Protocol server.
991 It expects that stdin is a datagram socket and a packet
992 is already pending on it. It will exit after one transfer.
993 In other words: it should be run from inetd in nowait mode,
994 or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
995
996 config BUSYBOX_CONFIG_FEATURE_TFTP_GET
997 bool "Enable 'tftp get' and/or tftpd upload code"
998 default BUSYBOX_DEFAULT_FEATURE_TFTP_GET
999 depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
1000 help
1001 Add support for the GET command within the TFTP client. This allows
1002 a client to retrieve a file from a TFTP server.
1003 Also enable upload support in tftpd, if tftpd is selected.
1004
1005 Note: this option does _not_ make tftpd capable of download
1006 (the usual operation people need from it)!
1007
1008 config BUSYBOX_CONFIG_FEATURE_TFTP_PUT
1009 bool "Enable 'tftp put' and/or tftpd download code"
1010 default BUSYBOX_DEFAULT_FEATURE_TFTP_PUT
1011 depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
1012 help
1013 Add support for the PUT command within the TFTP client. This allows
1014 a client to transfer a file to a TFTP server.
1015 Also enable download support in tftpd, if tftpd is selected.
1016
1017 config BUSYBOX_CONFIG_FEATURE_TFTP_BLOCKSIZE
1018 bool "Enable 'blksize' and 'tsize' protocol options"
1019 default BUSYBOX_DEFAULT_FEATURE_TFTP_BLOCKSIZE
1020 depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
1021 help
1022 Allow tftp to specify block size, and tftpd to understand
1023 "blksize" and "tsize" options.
1024
1025 config BUSYBOX_CONFIG_TFTP_DEBUG
1026 bool "Enable debug"
1027 default BUSYBOX_DEFAULT_TFTP_DEBUG
1028 depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
1029 help
1030 Make tftp[d] print debugging messages on stderr.
1031 This is useful if you are diagnosing a bug in tftp[d].
1032 config BUSYBOX_CONFIG_TLS
1033 bool #No description makes it a hidden option
1034 default BUSYBOX_DEFAULT_TLS
1035 config BUSYBOX_CONFIG_TRACEROUTE
1036 bool "traceroute (11 kb)"
1037 default BUSYBOX_DEFAULT_TRACEROUTE
1038 help
1039 Utility to trace the route of IP packets.
1040
1041 config BUSYBOX_CONFIG_TRACEROUTE6
1042 bool "traceroute6 (13 kb)"
1043 default BUSYBOX_DEFAULT_TRACEROUTE6
1044 depends on BUSYBOX_CONFIG_FEATURE_IPV6
1045 help
1046 Utility to trace the route of IPv6 packets.
1047
1048 config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE
1049 bool "Enable verbose output"
1050 default BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_VERBOSE
1051 depends on BUSYBOX_CONFIG_TRACEROUTE || BUSYBOX_CONFIG_TRACEROUTE6
1052 help
1053 Add some verbosity to traceroute. This includes among other things
1054 hostnames and ICMP response types.
1055
1056 config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP
1057 bool "Enable -I option (use ICMP instead of UDP)"
1058 default BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP
1059 depends on BUSYBOX_CONFIG_TRACEROUTE || BUSYBOX_CONFIG_TRACEROUTE6
1060 config BUSYBOX_CONFIG_TUNCTL
1061 bool "tunctl (6.2 kb)"
1062 default BUSYBOX_DEFAULT_TUNCTL
1063 help
1064 tunctl creates or deletes tun devices.
1065
1066 config BUSYBOX_CONFIG_FEATURE_TUNCTL_UG
1067 bool "Support owner:group assignment"
1068 default BUSYBOX_DEFAULT_FEATURE_TUNCTL_UG
1069 depends on BUSYBOX_CONFIG_TUNCTL
1070 help
1071 Allow to specify owner and group of newly created interface.
1072 340 bytes of pure bloat. Say no here.
1073 config BUSYBOX_CONFIG_VCONFIG
1074 bool "vconfig (2.3 kb)"
1075 default BUSYBOX_DEFAULT_VCONFIG
1076 help
1077 Creates, removes, and configures VLAN interfaces
1078 config BUSYBOX_CONFIG_WGET
1079 bool "wget (38 kb)"
1080 default BUSYBOX_DEFAULT_WGET
1081 help
1082 wget is a utility for non-interactive download of files from HTTP
1083 and FTP servers.
1084
1085 config BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS
1086 bool "Enable long options"
1087 default BUSYBOX_DEFAULT_FEATURE_WGET_LONG_OPTIONS
1088 depends on BUSYBOX_CONFIG_WGET && BUSYBOX_CONFIG_LONG_OPTS
1089
1090 config BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR
1091 bool "Enable progress bar (+2k)"
1092 default BUSYBOX_DEFAULT_FEATURE_WGET_STATUSBAR
1093 depends on BUSYBOX_CONFIG_WGET
1094
1095 config BUSYBOX_CONFIG_FEATURE_WGET_FTP
1096 bool "Enable FTP protocol (+1k)"
1097 default BUSYBOX_DEFAULT_FEATURE_WGET_FTP
1098 depends on BUSYBOX_CONFIG_WGET
1099 help
1100 To support FTPS, enable FEATURE_WGET_HTTPS as well.
1101
1102 config BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION
1103 bool "Enable HTTP authentication"
1104 default BUSYBOX_DEFAULT_FEATURE_WGET_AUTHENTICATION
1105 depends on BUSYBOX_CONFIG_WGET
1106 help
1107 Support authenticated HTTP transfers.
1108
1109 config BUSYBOX_CONFIG_FEATURE_WGET_TIMEOUT
1110 bool "Enable timeout option -T SEC"
1111 default BUSYBOX_DEFAULT_FEATURE_WGET_TIMEOUT
1112 depends on BUSYBOX_CONFIG_WGET
1113 help
1114 Supports network read and connect timeouts for wget,
1115 so that wget will give up and timeout, through the -T
1116 command line option.
1117
1118 Currently only connect and network data read timeout are
1119 supported (i.e., timeout is not applied to the DNS query). When
1120 FEATURE_WGET_LONG_OPTIONS is also enabled, the --timeout option
1121 will work in addition to -T.
1122
1123 config BUSYBOX_CONFIG_FEATURE_WGET_HTTPS
1124 bool "Support HTTPS using internal TLS code"
1125 default BUSYBOX_DEFAULT_FEATURE_WGET_HTTPS
1126 depends on BUSYBOX_CONFIG_WGET
1127 select BUSYBOX_CONFIG_TLS
1128 help
1129 wget will use internal TLS code to connect to https:// URLs.
1130 It also enables FTPS support, but it's not well tested yet.
1131 Note:
1132 On NOMMU machines, ssl_helper applet should be available
1133 in the $PATH for this to work. Make sure to select that applet.
1134
1135 Note: currently, TLS code only makes TLS I/O work, it
1136 does *not* check that the peer is who it claims to be, etc.
1137 IOW: it uses peer-supplied public keys to establish encryption
1138 and signing keys, then encrypts and signs outgoing data and
1139 decrypts incoming data.
1140 It does not check signature hashes on the incoming data:
1141 this means that attackers manipulating TCP packets can
1142 send altered data and we unknowingly receive garbage.
1143 (This check might be relatively easy to add).
1144 It does not check public key's certificate:
1145 this means that the peer may be an attacker impersonating
1146 the server we think we are talking to.
1147
1148 If you think this is unacceptable, consider this. As more and more
1149 servers switch to HTTPS-only operation, without such "crippled"
1150 TLS code it is *impossible* to simply download a kernel source
1151 from kernel.org. Which can in real world translate into
1152 "my small automatic tooling to build cross-compilers from sources
1153 no longer works, I need to additionally keep a local copy
1154 of ~4 megabyte source tarball of a SSL library and ~2 megabyte
1155 source of wget, need to compile and built both before I can
1156 download anything. All this despite the fact that the build
1157 is done in a QEMU sandbox on a machine with absolutely nothing
1158 worth stealing, so I don't care if someone would go to a lot
1159 of trouble to intercept my HTTPS download to send me an altered
1160 kernel tarball".
1161
1162 If you still think this is unacceptable, send patches.
1163
1164 If you still think this is unacceptable, do not want to send
1165 patches, but do want to waste bandwidth expaining how wrong
1166 it is, you will be ignored.
1167
1168 FEATURE_WGET_OPENSSL does implement TLS verification
1169 using the certificates available to OpenSSL.
1170
1171 config BUSYBOX_CONFIG_FEATURE_WGET_OPENSSL
1172 bool "Try to connect to HTTPS using openssl"
1173 default BUSYBOX_DEFAULT_FEATURE_WGET_OPENSSL
1174 depends on BUSYBOX_CONFIG_WGET
1175 help
1176 Try to use openssl to handle HTTPS.
1177
1178 OpenSSL has a simple SSL client for debug purposes.
1179 If you select this option, wget will effectively run:
1180 "openssl s_client -quiet -connect hostname:443
1181 -servername hostname 2>/dev/null" and pipe its data
1182 through it. -servername is not used if hostname is numeric.
1183 Note inconvenient API: host resolution is done twice,
1184 and there is no guarantee openssl's idea of IPv6 address
1185 format is the same as ours.
1186 Another problem is that s_client prints debug information
1187 to stderr, and it needs to be suppressed. This means
1188 all error messages get suppressed too.
1189 openssl is also a big binary, often dynamically linked
1190 against ~15 libraries.
1191
1192 If openssl can't be executed, internal TLS code will be used
1193 (if you enabled it); if openssl can be executed but fails later,
1194 wget can't detect this, and download will fail.
1195
1196 By default TLS verification is performed, unless
1197 --no-check-certificate option is passed.
1198 config BUSYBOX_CONFIG_WHOIS
1199 bool "whois (6.3 kb)"
1200 default BUSYBOX_DEFAULT_WHOIS
1201 help
1202 whois is a client for the whois directory service
1203 config BUSYBOX_CONFIG_ZCIP
1204 bool "zcip (8.4 kb)"
1205 default BUSYBOX_DEFAULT_ZCIP
1206 select BUSYBOX_CONFIG_FEATURE_SYSLOG
1207 help
1208 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
1209 It's a daemon that allocates and defends a dynamically assigned
1210 address on the 169.254/16 network, requiring no system administrator.
1211
1212 See http://www.zeroconf.org for further details, and "zcip.script"
1213 in the busybox examples.
1214
1215 source "udhcp/Config.in"
1216
1217 config BUSYBOX_CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS
1218 string "ifup udhcpc command line options"
1219 default BUSYBOX_DEFAULT_IFUPDOWN_UDHCPC_CMD_OPTIONS
1220 depends on BUSYBOX_CONFIG_IFUP || BUSYBOX_CONFIG_IFDOWN
1221 help
1222 Command line options to pass to udhcpc from ifup.
1223 Intended to alter options not available in /etc/network/interfaces.
1224 (IE: --syslog --background etc...)
1225
1226 endmenu