enable httpd sighup config reload by default
[openwrt.git] / package / busybox / config / networking / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Networking Utilities"
7
8 config BUSYBOX_CONFIG_FEATURE_IPV6
9         bool "Enable IPv6 support"
10         default y
11         help
12           Enable IPv6 support in busybox.
13           This adds IPv6 support in the networking applets.
14
15 config BUSYBOX_CONFIG_ARP
16         bool "arp"
17         default n
18         help
19           Manipulate the system ARP cache
20
21 config BUSYBOX_CONFIG_ARPING
22         bool "arping"
23         default y
24         help
25           Ping hosts by ARP packets
26
27 config BUSYBOX_CONFIG_DNSD
28         bool "dnsd"
29         default n
30         help
31           Small and static DNS server daemon.
32
33 config BUSYBOX_CONFIG_ETHER_WAKE
34         bool "ether-wake"
35         default n
36         help
37           Send a magic packet to wake up sleeping machines.
38
39 config BUSYBOX_CONFIG_FAKEIDENTD
40         bool "fakeidentd"
41         default n
42         select BUSYBOX_CONFIG_FEATURE_SYSLOG
43         help
44           fakeidentd listens on the ident port and returns a predefined
45           fake value on any query.
46
47 config BUSYBOX_CONFIG_FTPGET
48         bool "ftpget"
49         default n
50         help
51           Retrieve a remote file via FTP.
52
53 config BUSYBOX_CONFIG_FTPPUT
54         bool "ftpput"
55         default n
56         help
57           Store a remote file via FTP.
58
59 config BUSYBOX_CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS
60         bool "Enable long options in ftpget/ftpput"
61         default n
62         depends on BUSYBOX_CONFIG_GETOPT_LONG && (BUSYBOX_CONFIG_FTPGET || BUSYBOX_CONFIG_FTPPUT)
63         help
64           Support long options for the ftpget/ftpput applet.
65
66 config BUSYBOX_CONFIG_HOSTNAME
67         bool "hostname"
68         default n
69         help
70           Show or set the system's host name
71
72 config BUSYBOX_CONFIG_HTTPD
73         bool "httpd"
74         default y
75         help
76           Serve web pages via an HTTP server.
77
78 config BUSYBOX_CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
79         bool "Support reloading the global config file using hup signal"
80         default y
81         depends on BUSYBOX_CONFIG_HTTPD
82         help
83           This option enables processing of SIGHUP to reload cached
84           configuration settings.
85
86 config BUSYBOX_CONFIG_FEATURE_HTTPD_SETUID
87         bool "Enable -u <user> option"
88         default n
89         depends on BUSYBOX_CONFIG_HTTPD
90         help
91           This option allows the server to run as a specific user
92           rather than defaulting to the user that starts the server.
93           Use of this option requires special privileges to change to a
94           different user.
95
96 config BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
97         bool "Enable Basic http Authentication"
98         default y
99         depends on BUSYBOX_CONFIG_HTTPD
100         help
101           Utilizes password settings from /etc/httpd.conf for basic
102           authentication on a per url basis.
103
104 config BUSYBOX_CONFIG_FEATURE_HTTPD_AUTH_MD5
105         bool "Support MD5 crypted passwords for http Authentication"
106         default y
107         depends on BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
108         help
109           Enables basic per URL authentication from /etc/httpd.conf
110           using md5 passwords.
111
112 config BUSYBOX_CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
113         bool "Support loading additional MIME types at run-time"
114         default y
115         depends on BUSYBOX_CONFIG_HTTPD
116         help
117           This option enables support for additional MIME types at
118           run-time to be specified in the configuration file.
119
120 config BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
121         bool "Support Common Gateway Interface (CGI)"
122         default y
123         depends on BUSYBOX_CONFIG_HTTPD
124         help
125           This option allows scripts and executables to be invoked
126           when specific URLs are requested.
127
128 config BUSYBOX_CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
129         bool "Enable support for running scripts through an interpreter"
130         default n
131         depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
132         help
133           This option enables support for running scripts through an
134           interpreter. Turn this on if you want PHP scripts to work
135           properly. You need to supply an addition line in your httpd
136           config file:
137           *.php:/path/to/your/php
138
139 config BUSYBOX_CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
140         bool "Support the REMOTE_PORT environment variable for CGI"
141         default y
142         depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
143         help
144           Use of this option can assist scripts in generating
145           references that contain a unique port number.
146
147 config BUSYBOX_CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
148         bool "Enable the -e option for shell script CGI simplification."
149         default y
150         depends on BUSYBOX_CONFIG_HTTPD
151         help
152           This option allows html encoding arbitrary
153           strings for display of the browser.  Output goes to stdout.
154           For example, httpd -e "<Hello World>" as
155           "&#60Hello&#32World&#62".
156
157 config BUSYBOX_CONFIG_IFCONFIG
158         bool "ifconfig"
159         default y
160         help
161           Ifconfig is used to configure the kernel-resident network interfaces.
162
163 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS
164         bool "Enable status reporting output (+7k)"
165         default y
166         depends on BUSYBOX_CONFIG_IFCONFIG
167         help
168           If ifconfig is called with no arguments it will display the status
169           of the currently active interfaces.
170
171 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP
172         bool "Enable slip-specific options \"keepalive\" and \"outfill\""
173         default n
174         depends on BUSYBOX_CONFIG_IFCONFIG
175         help
176           Allow "keepalive" and "outfill" support for SLIP.  If you're not
177           planning on using serial lines, leave this unchecked.
178
179 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
180         bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
181         default n
182         depends on BUSYBOX_CONFIG_IFCONFIG
183         help
184           Allow the start address for shared memory, start address for I/O,
185           and/or the interrupt line used by the specified device.
186
187 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW
188         bool "Enable option \"hw\" (ether only)"
189         default y
190         depends on BUSYBOX_CONFIG_IFCONFIG
191         help
192           Set the hardware address of this interface, if the device driver
193           supports  this  operation.  Currently, we only support the 'ether'
194           class.
195
196 config BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
197         bool "Set the broadcast automatically"
198         default y
199         depends on BUSYBOX_CONFIG_IFCONFIG
200         help
201           Setting this will make ifconfig attempt to find the broadcast
202           automatically if the value '+' is used.
203
204 config BUSYBOX_CONFIG_IFUPDOWN
205         bool "ifupdown"
206         default n
207         select BUSYBOX_CONFIG_RUN_PARTS
208         help
209           Activate or deactivate the specified interfaces.  This applet makes
210           use of either "ifconfig" and "route" or the "ip" command to actually
211           configure network interfaces.  Therefore, you will probably also want
212           to enable either IFCONFIG and ROUTE, or enable
213           FEATURE_IFUPDOWN_IP and the various IP options.  Of
214           course you could use non-busybox versions of these programs, so
215           against my better judgement (since this will surely result in plenty
216           of support questions on the mailing list), I do not force you to
217           enable these additional options.  It is up to you to supply either
218           "ifconfig" and "route" or the "ip" command, either via busybox or via
219           standalone utilities.
220
221 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
222         bool "Use ip applet"
223         default n
224         depends on BUSYBOX_CONFIG_IFUPDOWN
225         help
226           Use the iproute "ip" command to implement "ifup" and "ifdown", rather
227           than the default of using the older 'ifconfig' and 'route' utilities.
228
229 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN
230         bool "Use busybox ip applet"
231         default n
232         depends on BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
233         select BUSYBOX_CONFIG_IP
234         select BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
235         select BUSYBOX_CONFIG_FEATURE_IP_LINK
236         select BUSYBOX_CONFIG_FEATURE_IP_ROUTE
237         help
238           Use the busybox iproute "ip" applet to implement "ifupdown".
239
240           If left disabled, you must install the full-blown iproute2
241           utility or the  "ifup" and "ifdown" applets will not work.
242
243 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
244         bool "Use busybox ifconfig and route applets"
245         default n
246         depends on BUSYBOX_CONFIG_IFUPDOWN && !BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
247         select BUSYBOX_CONFIG_IFCONFIG
248         select BUSYBOX_CONFIG_ROUTE
249         help
250           Use the busybox iproute "ifconfig" and "route" applets to
251           implement the "ifup" and "ifdown" utilities.
252
253           If left disabled, you must install the full-blown ifconfig
254           and route utilities, or the  "ifup" and "ifdown" applets will not
255           work.
256
257 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV4
258         bool "Enable support for IPv4"
259         default n
260         depends on BUSYBOX_CONFIG_IFUPDOWN
261         help
262           If you want busybox to talk IPv4, leave this on.
263
264 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV6
265         bool "Enable support for IPv6"
266         default n
267         depends on BUSYBOX_CONFIG_IFUPDOWN && BUSYBOX_CONFIG_FEATURE_IPV6
268         help
269           If you need support for IPv6, turn this option on.
270
271 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPX
272         bool "Enable support for IPX"
273         default n
274         depends on BUSYBOX_CONFIG_IFUPDOWN
275         help
276           If this option is selected you can use busybox to work with IPX
277           networks.
278
279 config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_MAPPING
280         bool "Enable mapping support"
281         default n
282         depends on BUSYBOX_CONFIG_IFUPDOWN
283         help
284           This enables support for the "mapping" stanza, unless you have
285           a weird network setup you don't need it.
286
287 config BUSYBOX_CONFIG_INETD
288         bool "inetd"
289         default n
290         select BUSYBOX_CONFIG_FEATURE_SYSLOG
291         help
292           Internet superserver daemon
293
294 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
295         bool "Support echo service"
296         default n
297         depends on BUSYBOX_CONFIG_INETD
298         help
299           Echo received data internal inetd service
300
301 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
302         bool "Support discard service"
303         default n
304         depends on BUSYBOX_CONFIG_INETD
305         help
306           Internet /dev/null internal inetd service
307
308 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME
309         bool "Support time service"
310         default n
311         depends on BUSYBOX_CONFIG_INETD
312         help
313           Return 32 bit time since 1900 internal inetd service
314
315 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
316         bool "Support daytime service"
317         default n
318         depends on BUSYBOX_CONFIG_INETD
319         help
320           Return human-readable time internal inetd service
321
322 config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
323         bool "Support chargen service"
324         default n
325         depends on BUSYBOX_CONFIG_INETD
326         help
327           Familiar character generator internal inetd service
328
329 config BUSYBOX_CONFIG_FEATURE_INETD_RPC
330         bool "Support RPC services"
331         default n
332         depends on BUSYBOX_CONFIG_INETD
333         depends on BUSYBOX_CONFIG_FEATURE_HAVE_RPC
334         help
335           Support Sun-RPC based services
336
337 config BUSYBOX_CONFIG_IP
338         bool "ip"
339         default n
340         help
341           The "ip" applet is a TCP/IP interface configuration and routing
342           utility.  You generally don't need "ip" to use busybox with
343           TCP/IP.
344
345 config BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
346         bool "ip address"
347         default n
348         depends on BUSYBOX_CONFIG_IP
349         help
350           Address manipulation support for the "ip" applet.
351
352 config BUSYBOX_CONFIG_FEATURE_IP_LINK
353         bool "ip link"
354         default n
355         depends on BUSYBOX_CONFIG_IP
356         help
357           Configure network devices with "ip".
358
359 config BUSYBOX_CONFIG_FEATURE_IP_ROUTE
360         bool "ip route"
361         default n
362         depends on BUSYBOX_CONFIG_IP
363         help
364           Add support for routing table management to "ip".
365
366 config BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
367         bool "ip tunnel"
368         default n
369         depends on BUSYBOX_CONFIG_IP
370         help
371           Add support for tunneling commands to "ip".
372
373 config BUSYBOX_CONFIG_FEATURE_IP_RULE
374         bool "ip rule"
375         default n
376         depends on BUSYBOX_CONFIG_IP
377         help
378           Add support for rule commands to "ip".
379
380 config BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS
381         bool "Support short forms of ip commands."
382         default n
383         depends on BUSYBOX_CONFIG_IP
384         help
385           Also support short-form of ip <OBJECT> commands:
386           ip addr   -> ipaddr
387           ip link   -> iplink
388           ip route  -> iproute
389           ip tunnel -> iptunnel
390
391           Say N unless you desparately need the short form of the ip
392           object commands.
393
394 config BUSYBOX_CONFIG_IPADDR
395         bool
396         default n
397         depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
398
399 config BUSYBOX_CONFIG_IPLINK
400         bool
401         default n
402         depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_LINK
403
404 config BUSYBOX_CONFIG_IPROUTE
405         bool
406         default n
407         depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_ROUTE
408
409 config BUSYBOX_CONFIG_IPTUNNEL
410         bool
411         default n
412         depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
413
414 config BUSYBOX_CONFIG_IPRULE
415         bool
416         default n
417         depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_RULE
418
419 config BUSYBOX_CONFIG_IPCALC
420         bool "ipcalc"
421         default n
422         help
423           ipcalc takes an IP address and netmask and calculates the
424           resulting broadcast, network, and host range.
425
426 config BUSYBOX_CONFIG_FEATURE_IPCALC_FANCY
427         bool "Fancy IPCALC, more options, adds 1 kbyte"
428         default n
429         depends on BUSYBOX_CONFIG_IPCALC
430         help
431           Adds the options hostname, prefix and silent to the output of "ipcalc".
432
433 config BUSYBOX_CONFIG_FEATURE_IPCALC_LONG_OPTIONS
434         bool "Enable long options"
435         default n
436         depends on BUSYBOX_CONFIG_IPCALC && BUSYBOX_CONFIG_GETOPT_LONG
437         help
438           Support long options for the ipcalc applet.
439
440 config BUSYBOX_CONFIG_NAMEIF
441         bool "nameif"
442         default n
443         select BUSYBOX_CONFIG_FEATURE_SYSLOG
444         help
445           nameif is used to rename network interface by its MAC address.
446           Renamed interfaces MUST be in the down state.
447           It is possible to use a file (default: /etc/mactab)
448           with list of new interface names and MACs.
449           Maximum interface name length: IF_NAMESIZE = 16
450           File fields are separated by space or tab.
451           File format:
452           # Comment
453           new_interface_name    XX:XX:XX:XX:XX:XX
454
455 config BUSYBOX_CONFIG_NC
456         bool "nc"
457         default y
458         help
459           A simple Unix utility which reads and writes data across network
460           connections.
461           
462 config BUSYBOX_CONFIG_NETMSG
463         bool "netmsg"
464         default y
465         help
466           simple program for sending udp broadcast messages
467
468 config BUSYBOX_CONFIG_NC_SERVER
469         bool "Netcat server options (-lp)"
470         default n
471         depends on BUSYBOX_CONFIG_NC
472         help
473           Allow netcat to act as a server.
474
475 config BUSYBOX_CONFIG_NC_EXTRA
476         bool "Netcat extensions (-eiw and filename)"
477         default n
478         depends on BUSYBOX_CONFIG_NC
479         help
480           Add -e (support for executing the rest of the command line after
481           making or receiving a successful connection), -i (delay interval for
482           lines sent), -w (timeout for initial connection).
483
484 config BUSYBOX_CONFIG_NETSTAT
485         bool "netstat"
486         default y
487         help
488           netstat prints information about the Linux networking subsystem.
489
490 config BUSYBOX_CONFIG_NSLOOKUP
491         bool "nslookup"
492         default y
493         help
494           nslookup is a tool to query Internet name servers.
495
496 config BUSYBOX_CONFIG_PING
497         bool "ping"
498         default y
499         help
500           ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
501           elicit an ICMP ECHO_RESPONSE from a host or gateway.
502
503 config BUSYBOX_CONFIG_FEATURE_FANCY_PING
504         bool "Enable fancy ping output"
505         default y
506         depends on BUSYBOX_CONFIG_PING
507         help
508           Make the output from the ping applet include statistics, and at the
509           same time provide full support for ICMP packets.
510
511 config BUSYBOX_CONFIG_PING6
512         bool "ping6"
513         default y
514         depends on BUSYBOX_CONFIG_FEATURE_IPV6
515         help
516           This will give you a ping that can talk IPv6.
517
518 config BUSYBOX_CONFIG_FEATURE_FANCY_PING6
519         bool "Enable fancy ping6 output"
520         default y
521         depends on BUSYBOX_CONFIG_PING6
522         help
523           Make the output from the ping6 applet include statistics, and at the
524           same time provide full support for ICMP packets.
525
526 config BUSYBOX_CONFIG_ROUTE
527         bool "route"
528         default y
529         help
530           Route displays or manipulates the kernel's IP routing tables.
531
532 config BUSYBOX_CONFIG_TELNET
533         bool "telnet"
534         default y
535         help
536           Telnet is an interface to the TELNET protocol, but is also commonly
537           used to test other simple protocols.
538
539 config BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE
540         bool "Pass TERM type to remote host"
541         default y
542         depends on BUSYBOX_CONFIG_TELNET
543         help
544           Setting this option will forward the TERM environment variable to the
545           remote host you are connecting to.  This is useful to make sure that
546           things like ANSI colors and other control sequences behave.
547
548 config BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN
549         bool "Pass USER type to remote host"
550         default n
551         depends on BUSYBOX_CONFIG_TELNET
552         help
553           Setting this option will forward the USER environment variable to the
554           remote host you are connecting to. This is useful when you need to
555           log into a machine without telling the username (autologin). This
556           option enables `-a' and `-l USER' arguments.
557
558 config BUSYBOX_CONFIG_TELNETD
559         bool "telnetd"
560         default y
561         select BUSYBOX_CONFIG_FEATURE_SYSLOG
562         help
563           A daemon for the TELNET protocol, allowing you to log onto the host
564           running the daemon.  Please keep in mind that the TELNET protocol
565           sends passwords in plain text.  If you can't afford the space for an
566           SSH daemon and you trust your network, you may say 'y' here.  As a
567           more secure alternative, you should seriously consider installing the
568           very small Dropbear SSH daemon instead:
569                 http://matt.ucc.asn.au/dropbear/dropbear.html
570
571           Note that for busybox telnetd to work you need several things:
572           First of all, your kernel needs:
573                   UNIX98_PTYS=y
574                   DEVPTS_FS=y
575
576           Next, you need a /dev/pts directory on your root filesystem:
577
578                   $ ls -ld /dev/pts
579                   drwxr-xr-x  2 root root 0 Sep 23 13:21 /dev/pts/
580
581           Next you need the pseudo terminal master multiplexer /dev/ptmx:
582
583                   $ ls -la /dev/ptmx
584                   crw-rw-rw-  1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
585
586           Any /dev/ttyp[0-9]* files you may have can be removed.
587           Next, you need to mount the devpts filesystem on /dev/pts using:
588
589                   mount -t devpts devpts /dev/pts
590
591           You need to be sure that Busybox has LOGIN and
592           FEATURE_SUID enabled.  And finally, you should make
593           certain that Busybox has been installed setuid root:
594
595                 chown root.root /bin/busybox
596                 chmod 4755 /bin/busybox
597
598           with all that done, telnetd _should_ work....
599
600
601 config BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE
602         bool "Support standalone telnetd (not inetd only)"
603         default y
604         depends on BUSYBOX_CONFIG_TELNETD
605         help
606           Selecting this will make telnetd able to run standalone.
607
608 config BUSYBOX_CONFIG_TFTP
609         bool "tftp"
610         default n
611         help
612           This enables the Trivial File Transfer Protocol client program.  TFTP
613           is usually used for simple, small transfers such as a root image
614           for a network-enabled bootloader.
615
616 config BUSYBOX_CONFIG_FEATURE_TFTP_GET
617         bool "Enable \"get\" command"
618         default n
619         depends on BUSYBOX_CONFIG_TFTP
620         help
621           Add support for the GET command within the TFTP client.  This allows
622           a client to retrieve a file from a TFTP server.
623
624 config BUSYBOX_CONFIG_FEATURE_TFTP_PUT
625         bool "Enable \"put\" command"
626         default n
627         depends on BUSYBOX_CONFIG_TFTP
628         help
629           Add support for the PUT command within the TFTP client.  This allows
630           a client to transfer a file to a TFTP server.
631
632 config BUSYBOX_CONFIG_FEATURE_TFTP_BLOCKSIZE
633         bool "Enable \"blocksize\" command"
634         default n
635         depends on BUSYBOX_CONFIG_TFTP
636         help
637           Allow the client to specify the desired block size for transfers.
638
639 config BUSYBOX_CONFIG_DEBUG_TFTP
640         bool "Enable debug"
641         default n
642         depends on BUSYBOX_CONFIG_TFTP
643         help
644           Enable debug settings for tftp.  This is useful if you're running
645           into problems with tftp as the protocol doesn't help you much when
646           you run into problems.
647
648 config BUSYBOX_CONFIG_TRACEROUTE
649         bool "traceroute"
650         default y
651         help
652           Utility to trace the route of IP packets
653
654 config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE
655         bool "Enable verbose output"
656         default y
657         depends on BUSYBOX_CONFIG_TRACEROUTE
658         help
659           Add some verbosity to traceroute.  This includes amongst other things
660           hostnames and ICMP response types.
661
662 config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
663         bool "Enable loose source route"
664         default n
665         depends on BUSYBOX_CONFIG_TRACEROUTE
666         help
667           Add option to specify a loose source route gateway
668           (8 maximum).
669
670 config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP
671         bool "Use ICMP instead of UDP"
672         default n
673         depends on BUSYBOX_CONFIG_TRACEROUTE
674         help
675           Add feature to allow for ICMP ECHO instead of UDP datagrams.
676
677 source package/busybox/config/networking/udhcp/Config.in
678
679 config BUSYBOX_CONFIG_VCONFIG
680         bool "vconfig"
681         default y
682         help
683           Creates, removes, and configures VLAN interfaces
684
685 config BUSYBOX_CONFIG_WGET
686         bool "wget"
687         default y
688         help
689           wget is a utility for non-interactive download of files from HTTP,
690           HTTPS, and FTP servers.
691
692 config BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR
693         bool "Enable a nifty process meter (+2k)"
694         default y
695         depends on BUSYBOX_CONFIG_WGET
696         help
697           Enable the transfer progress bar for wget transfers.
698
699 config BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION
700         bool "Enable HTTP authentication"
701         default y
702         depends on BUSYBOX_CONFIG_WGET
703         help
704           Support authenticated HTTP transfers.
705
706 config BUSYBOX_CONFIG_FEATURE_WGET_IP6_LITERAL
707         bool "Enable IPv6 literal addresses"
708         default y
709         depends on BUSYBOX_CONFIG_WGET && BUSYBOX_CONFIG_FEATURE_IPV6
710         help
711           Support IPv6 address literal notation in URLs.
712
713 config BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS
714         bool "Enable long options"
715         default y
716         depends on BUSYBOX_CONFIG_WGET && BUSYBOX_CONFIG_GETOPT_LONG
717         help
718           Support long options for the wget applet.
719
720 config BUSYBOX_CONFIG_ZCIP
721         bool "zcip"
722         default n
723         select BUSYBOX_CONFIG_FEATURE_SYSLOG
724         help
725           ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
726           It's a daemon that allocates and defends a dynamically assigned
727           address on the 169.254/16 network, requiring no system administrator.
728
729           See http://www.zeroconf.org for further details, and "zcip.script"
730           in the busybox examples.
731
732 endmenu