blob: b50aacf9f9d41ae62914cf8d4000b825e316b00e [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 Vlasenko9d6c4692007-11-14 10:18:33 +000015config FEATURE_PREFER_IPV4_ADDRESS
16 bool "Preferentially use IPv4 addresses from DNS queries"
17 default y
18 depends on FEATURE_IPV6
19 help
20 Use IPv4 address of network host if it has one.
21
22 If this option is off, the first returned address will be used.
23 This may cause problems when your DNS server is IPv6-capable and
24 is returning IPv6 host addresses too. If IPv6 address
25 precedes IPv4 one in DNS reply, busybox network applets
26 (e.g. wget) will use IPv6 address. On an IPv6-incapable host
27 or network applets will fail to connect to the host
28 using IPv6 address.
29
Denis Vlasenko5de9e9c2007-01-22 22:46:04 +000030config VERBOSE_RESOLUTION_ERRORS
31 bool "Verbose resolution errors"
32 default n
33 help
34 Enable if you are not satisfied with simplistic
35 "can't resolve 'hostname.com'" and want to know more.
36 This may increase size of your executable a bit.
37
Denis Vlasenkofa85b862007-01-07 01:24:12 +000038config ARP
39 bool "arp"
40 default n
41 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000042 Manipulate the system ARP cache.
Denis Vlasenkofa85b862007-01-07 01:24:12 +000043
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000044config ARPING
Glenn L McGrath9e598412003-01-09 10:06:01 +000045 bool "arping"
46 default n
47 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000048 Ping hosts by ARP packets.
Glenn L McGrath9e598412003-01-09 10:06:01 +000049
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000050config DNSD
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000051 bool "dnsd"
52 default n
53 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000054 Small and static DNS server daemon.
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000055
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000056config ETHER_WAKE
Mike Frysingerb662f0d2005-05-11 03:59:53 +000057 bool "ether-wake"
58 default n
59 help
60 Send a magic packet to wake up sleeping machines.
61
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000062config FAKEIDENTD
Mike Frysingerfa69f112005-04-17 07:24:19 +000063 bool "fakeidentd"
64 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000065 select FEATURE_SYSLOG
Mike Frysingerfa69f112005-04-17 07:24:19 +000066 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000067 fakeidentd listens on the ident port and returns a predefined
68 fake value on any query.
Mike Frysingerfa69f112005-04-17 07:24:19 +000069
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000070config FTPGET
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000071 bool "ftpget"
72 default n
73 help
74 Retrieve a remote file via FTP.
75
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000076config FTPPUT
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000077 bool "ftpput"
78 default n
79 help
80 Store a remote file via FTP.
81
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000082config FEATURE_FTPGETPUT_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000083 bool "Enable long options in ftpget/ftpput"
84 default n
Denis Vlasenko9d4533e2006-11-02 22:09:37 +000085 depends on GETOPT_LONG && (FTPGET || FTPPUT)
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000086 help
87 Support long options for the ftpget/ftpput applet.
88
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000089config HOSTNAME
Eric Andersenc9f20d92002-12-05 08:41:41 +000090 bool "hostname"
91 default n
92 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000093 Show or set the system's host name.
Eric Andersenc9f20d92002-12-05 08:41:41 +000094
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000095config HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +000096 bool "httpd"
97 default n
98 help
99 Serve web pages via an HTTP server.
100
Denis Vlasenkof4310172007-09-21 22:35:18 +0000101config FEATURE_HTTPD_RANGES
102 bool "Support 'Ranges:' header"
103 default n
104 depends on HTTPD
105 help
106 Makes httpd emit "Accept-Ranges: bytes" header and understand
107 "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
108 downloads, seeking in multimedia players etc.
109
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000110config FEATURE_HTTPD_USE_SENDFILE
111 bool "Use sendfile system call"
112 default n
113 depends on HTTPD
114 help
115 When enabled, httpd will use the kernel sendfile() function
116 instead of read/write loop.
117
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000118config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000119 bool "Support reloading the global config file using hup signal"
120 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000121 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000122 help
123 This option enables processing of SIGHUP to reload cached
124 configuration settings.
125
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000126config FEATURE_HTTPD_SETUID
Denis Vlasenkodb506472006-12-17 20:18:05 +0000127 bool "Enable -u <user> option"
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000128 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000129 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000130 help
131 This option allows the server to run as a specific user
132 rather than defaulting to the user that starts the server.
133 Use of this option requires special privileges to change to a
134 different user.
135
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000136config FEATURE_HTTPD_BASIC_AUTH
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000137 bool "Enable Basic http Authentication"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000138 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000139 depends on HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000140 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000141 Utilizes password settings from /etc/httpd.conf for basic
142 authentication on a per url basis.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000143
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000144config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000145 bool "Support MD5 crypted passwords for http Authentication"
Eric Andersen35e643b2003-07-28 07:40:39 +0000146 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000147 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000148 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000149 Enables basic per URL authentication from /etc/httpd.conf
Eric Andersenf3a02bb2003-07-28 08:31:56 +0000150 using md5 passwords.
Eric Andersen35e643b2003-07-28 07:40:39 +0000151
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000152config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000153 bool "Support loading additional MIME types at run-time"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000154 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000155 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000156 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000157 This option enables support for additional MIME types at
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000158 run-time to be specified in the configuration file.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000159
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000160config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000161 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000162 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000163 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000164 help
165 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000166 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000167
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000168config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000169 bool "Enable support for running scripts through an interpreter"
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000170 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000171 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000172 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000173 This option enables support for running scripts through an
174 interpreter. Turn this on if you want PHP scripts to work
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000175 properly. You need to supply an additional line in your httpd
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000176 config file:
177 *.php:/path/to/your/php
178
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000179config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000180 bool "Support the REMOTE_PORT environment variable for CGI"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000181 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000182 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000183 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000184 Use of this option can assist scripts in generating
185 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000186
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000187config FEATURE_HTTPD_ENCODE_URL_STR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000188 bool "Enable the -e option for shell script CGI simplification."
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000189 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000190 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000191 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000192 This option allows html encoding arbitrary
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000193 strings for display of the browser. Output goes to stdout.
194 For example, httpd -e "<Hello World>" as
195 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000196
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000197config FEATURE_HTTPD_ERROR_PAGES
198 bool "Enable support for custom error pages"
199 default n
200 depends on HTTPD
201 help
202 This option allows you to define custom error pages in
203 the configuration file instead of the default HTTP status
204 error pages. For instance, if you add the line:
205 E404:/path/e404.html
206 in the config file, the server will respond the specified
207 '/path/e404.html' file instead of the terse '404 NOT FOUND'
208 message.
209
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000210config FEATURE_HTTPD_PROXY
211 bool "Enable support for reverse proxy"
212 default n
213 depends on HTTPD
214 help
215 This option allows you to define URLs that will be forwarded
216 to another HTTP server. To setup add the following line to the
217 configuration file
218 P:/url/:http://hostname[:port]/new/path/
219 Then a request to /url/myfile will be forwarded to
220 http://hostname[:port]/new/path/myfile.
221
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000222config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000223 bool "ifconfig"
224 default n
225 help
Eric Andersene5642112003-07-14 19:37:08 +0000226 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000227
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000228config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000229 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000230 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000231 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000232 help
Eric Andersene5642112003-07-14 19:37:08 +0000233 If ifconfig is called with no arguments it will display the status
234 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000235
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000236config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000237 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000238 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000239 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000240 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000241 Allow "keepalive" and "outfill" support for SLIP. If you're not
242 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000243
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000244config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000245 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000246 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000247 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000248 help
Eric Andersene5642112003-07-14 19:37:08 +0000249 Allow the start address for shared memory, start address for I/O,
250 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000251
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000252config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000253 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000254 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000255 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000256 help
Eric Andersene5642112003-07-14 19:37:08 +0000257 Set the hardware address of this interface, if the device driver
258 supports this operation. Currently, we only support the 'ether'
259 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000260
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000261config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000262 bool "Set the broadcast automatically"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000263 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000264 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000265 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000266 Setting this will make ifconfig attempt to find the broadcast
267 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000268
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000269config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000270 bool "ifupdown"
271 default n
272 help
Eric Andersen342aea92003-07-26 09:27:02 +0000273 Activate or deactivate the specified interfaces. This applet makes
274 use of either "ifconfig" and "route" or the "ip" command to actually
275 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000276 to enable either IFCONFIG and ROUTE, or enable
277 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000278 course you could use non-busybox versions of these programs, so
279 against my better judgement (since this will surely result in plenty
280 of support questions on the mailing list), I do not force you to
281 enable these additional options. It is up to you to supply either
Bernhard Reutner-Fischer6111a8f2007-03-19 20:28:03 +0000282 "ifconfig", "route" and "run-parts" or the "ip" command, either
Bernhard Reutner-Fischer0864f4d2007-03-28 16:46:03 +0000283 via busybox or via standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000284
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000285config IFUPDOWN_IFSTATE_PATH
286 string "Absolute path to ifstate file"
287 default "/var/run/ifstate"
Bernhard Reutner-Fischerfc202422007-09-02 22:12:07 +0000288 depends on IFUPDOWN
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000289 help
290 ifupdown keeps state information in a file called ifstate.
291 Typically it is located in /var/run/ifstate, however
292 some distributions tend to put it in other places
293 (debian, for example, uses /etc/network/run/ifstate).
294 This config option defines location of ifstate.
295
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000296config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000297 bool "Use ip applet"
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000298 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000299 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000300 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000301 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
302 than the default of using the older 'ifconfig' and 'route' utilities.
303
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000304config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000305 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000306 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000307 depends on FEATURE_IFUPDOWN_IP
308 select IP
309 select FEATURE_IP_ADDRESS
310 select FEATURE_IP_LINK
311 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000312 help
313 Use the busybox iproute "ip" applet to implement "ifupdown".
314
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000315 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000316 utility or the "ifup" and "ifdown" applets will not work.
317
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000318config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000319 bool "Use busybox ifconfig and route applets"
Eric Andersenc601ff12003-08-08 23:12:12 +0000320 default y
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000321 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000322 select IFCONFIG
323 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000324 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000325 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000326 implement the "ifup" and "ifdown" utilities.
327
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000328 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000329 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000330 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000331
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000332config FEATURE_IFUPDOWN_IPV4
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000333 bool "Enable support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000334 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000335 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000336 help
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000337 If you want ifup/ifdown to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000338
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000339config FEATURE_IFUPDOWN_IPV6
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000340 bool "Enable support for IPv6"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000341 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000342 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000343 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000344 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000345
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000346### UNUSED
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000347###config FEATURE_IFUPDOWN_IPX
348### bool "Enable support for IPX"
349### default n
350### depends on IFUPDOWN
351### help
352### If this option is selected you can use busybox to work with IPX
353### networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000354
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000355config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000356 bool "Enable mapping support"
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000357 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000358 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000359 help
360 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000361 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000362
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000363config FEATURE_IFUPDOWN_EXTERNAL_DHCP
364 bool "Enable support for external dhcp clients"
365 default n
366 depends on IFUPDOWN
367 help
368 This enables support for the external dhcp clients. Clients are
369 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
370 Otherwise, if udhcpc applet is enabled, it is used.
371 Otherwise, ifup/ifdown will have no support for DHCP.
372
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000373config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000374 bool "inetd"
375 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000376 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000377 help
378 Internet superserver daemon
379
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000380config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000381 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000382 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000383 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000384 help
385 Echo received data internal inetd service
386
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000387config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000388 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000389 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000390 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000391 help
392 Internet /dev/null internal inetd service
393
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000394config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000395 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000396 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000397 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000398 help
399 Return 32 bit time since 1900 internal inetd service
400
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000401config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000402 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000403 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000404 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000405 help
406 Return human-readable time internal inetd service
407
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000408config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000409 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000410 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000411 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000412 help
413 Familiar character generator internal inetd service
414
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000415config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000416 bool "Support RPC services"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000417 default n
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000418 depends on INETD
419 select FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000420 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000421 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000422
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000423config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000424 bool "ip"
425 default n
426 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000427 The "ip" applet is a TCP/IP interface configuration and routing
428 utility. You generally don't need "ip" to use busybox with
429 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000430
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000431config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000432 bool "ip address"
433 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000434 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000435 help
436 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000437
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000438config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000439 bool "ip link"
440 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000441 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000442 help
443 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000444
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000445config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000446 bool "ip route"
447 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000449 help
450 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000451
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000452config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000453 bool "ip tunnel"
454 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000455 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000456 help
457 Add support for tunneling commands to "ip".
458
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000459config FEATURE_IP_RULE
460 bool "ip rule"
461 default n
462 depends on IP
463 help
464 Add support for rule commands to "ip".
465
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000466config FEATURE_IP_SHORT_FORMS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000467 bool "Support short forms of ip commands."
468 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000469 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000470 help
471 Also support short-form of ip <OBJECT> commands:
472 ip addr -> ipaddr
473 ip link -> iplink
474 ip route -> iproute
475 ip tunnel -> iptunnel
Bernhard Reutner-Fischer7a7e54a2007-02-02 16:06:02 +0000476 ip rule -> iprule
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000477
478 Say N unless you desparately need the short form of the ip
479 object commands.
480
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000481config FEATURE_IP_RARE_PROTOCOLS
Bernhard Reutner-Fischer1641d612007-10-29 21:21:27 +0000482 bool "Support displaying rarely used link types"
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000483 default n
484 depends on IP
485 help
486 If you are not going to use links of type "frad", "econet",
487 "bif" etc, you probably don't need to enable this.
488 Ethernet, wireless, infrared, ppp/slip, ip tunnelling
489 link types are supported without this option selected.
490
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000491config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000492 bool
493 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000494 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000495
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000496config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000497 bool
498 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000499 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000500
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000501config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000502 bool
503 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000504 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000505
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000506config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000507 bool
508 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000509 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000510
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000511config IPRULE
512 bool
513 default y
514 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
515
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000516config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000517 bool "ipcalc"
518 default n
519 help
Eric Andersene5642112003-07-14 19:37:08 +0000520 ipcalc takes an IP address and netmask and calculates the
521 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000522
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000523config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000524 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000525 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000526 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000527 help
Glenn L McGrath530ea422003-09-02 06:59:57 +0000528 Adds the options hostname, prefix and silent to the output of "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000529
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000530config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000531 bool "Enable long options"
532 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000533 depends on IPCALC && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000534 help
535 Support long options for the ipcalc applet.
536
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000537config NAMEIF
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000538 bool "nameif"
539 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000540 select FEATURE_SYSLOG
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000541 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000542 nameif is used to rename network interface by its MAC address.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000543 Renamed interfaces MUST be in the down state.
Eric Andersen88c916b2003-10-22 09:58:56 +0000544 It is possible to use a file (default: /etc/mactab)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000545 with list of new interface names and MACs.
546 Maximum interface name length: IF_NAMESIZE = 16
Eric Andersen88c916b2003-10-22 09:58:56 +0000547 File fields are separated by space or tab.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000548 File format:
549 # Comment
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000550 new_interface_name XX:XX:XX:XX:XX:XX
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000551
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000552config NC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000553 bool "nc"
554 default n
555 help
Eric Andersene5642112003-07-14 19:37:08 +0000556 A simple Unix utility which reads and writes data across network
557 connections.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000558
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000559config NC_SERVER
Denis Vlasenko29fe7262007-04-05 20:26:28 +0000560 bool "Netcat server options (-l)"
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000561 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000562 depends on NC
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000563 help
Rob Landley1cca9482006-07-10 19:45:20 +0000564 Allow netcat to act as a server.
565
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000566config NC_EXTRA
Rob Landley1cca9482006-07-10 19:45:20 +0000567 bool "Netcat extensions (-eiw and filename)"
568 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000569 depends on NC
Rob Landley1cca9482006-07-10 19:45:20 +0000570 help
571 Add -e (support for executing the rest of the command line after
572 making or receiving a successful connection), -i (delay interval for
573 lines sent), -w (timeout for initial connection).
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000574
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000575config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000576 bool "netstat"
577 default n
578 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000579 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000580
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000581config FEATURE_NETSTAT_WIDE
582 bool " Enable wide netstat output"
583 default n
584 depends on NETSTAT
585 help
586 Add support for wide columns. Useful when displaying IPv6 addresses
587 (-W option).
588
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000589config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000590 bool "nslookup"
591 default n
592 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000593 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000594
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000595config PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000596 bool "ping"
597 default n
598 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000599 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
Eric Andersene5642112003-07-14 19:37:08 +0000600 elicit an ICMP ECHO_RESPONSE from a host or gateway.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000601
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000602config PING6
603 bool "ping6"
604 default n
605 depends on FEATURE_IPV6 && PING
606 help
607 This will give you a ping that can talk IPv6.
608
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000609config PSCAN
610 bool "pscan"
611 default n
612 help
613 Simple network port scanner.
614
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000615config FEATURE_FANCY_PING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000616 bool "Enable fancy ping output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000617 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000618 depends on PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000619 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000620 Make the output from the ping applet include statistics, and at the
621 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000622
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000623config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000624 bool "route"
625 default n
626 help
Eric Andersene5642112003-07-14 19:37:08 +0000627 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000628
Denis Vlasenko14923db2007-06-20 15:23:03 +0000629config SLATTACH
630 bool "slattach"
631 default n
632 help
633 slattach is a small utility to attach network interfaces to serial lines.
634
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000635config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000636 bool "telnet"
637 default n
638 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000639 Telnet is an interface to the TELNET protocol, but is also commonly
640 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000641
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000642config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000643 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000644 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000645 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000646 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000647 Setting this option will forward the TERM environment variable to the
648 remote host you are connecting to. This is useful to make sure that
649 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000650
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000651config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000652 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000653 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000654 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000655 help
656 Setting this option will forward the USER environment variable to the
657 remote host you are connecting to. This is useful when you need to
658 log into a machine without telling the username (autologin). This
659 option enables `-a' and `-l USER' arguments.
660
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000661config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000662 bool "telnetd"
663 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000664 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000665 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000666 A daemon for the TELNET protocol, allowing you to log onto the host
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000667 running the daemon. Please keep in mind that the TELNET protocol
Eric Andersen31ec93e2004-09-23 20:08:46 +0000668 sends passwords in plain text. If you can't afford the space for an
669 SSH daemon and you trust your network, you may say 'y' here. As a
670 more secure alternative, you should seriously consider installing the
671 very small Dropbear SSH daemon instead:
672 http://matt.ucc.asn.au/dropbear/dropbear.html
673
674 Note that for busybox telnetd to work you need several things:
675 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000676 UNIX98_PTYS=y
677 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000678
679 Next, you need a /dev/pts directory on your root filesystem:
680
681 $ ls -ld /dev/pts
682 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
683
684 Next you need the pseudo terminal master multiplexer /dev/ptmx:
685
686 $ ls -la /dev/ptmx
687 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
688
689 Any /dev/ttyp[0-9]* files you may have can be removed.
690 Next, you need to mount the devpts filesystem on /dev/pts using:
691
692 mount -t devpts devpts /dev/pts
693
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000694 You need to be sure that Busybox has LOGIN and
695 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000696 certain that Busybox has been installed setuid root:
697
698 chown root.root /bin/busybox
699 chmod 4755 /bin/busybox
700
701 with all that done, telnetd _should_ work....
702
Eric Andersenc9f20d92002-12-05 08:41:41 +0000703
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000704config FEATURE_TELNETD_STANDALONE
705 bool "Support standalone telnetd (not inetd only)"
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000706 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000707 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000708 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000709 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000710
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000711config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000712 bool "tftp"
713 default n
714 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000715 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000716 is usually used for simple, small transfers such as a root image
717 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000718
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000719config FEATURE_TFTP_GET
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000720 bool "Enable \"get\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000721 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000722 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000723 help
Eric Andersene5642112003-07-14 19:37:08 +0000724 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000725 a client to retrieve a file from a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000726
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000727config FEATURE_TFTP_PUT
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000728 bool "Enable \"put\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000729 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000730 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000731 help
Eric Andersene5642112003-07-14 19:37:08 +0000732 Add support for the PUT command within the TFTP client. This allows
733 a client to transfer a file to a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000734
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000735config FEATURE_TFTP_BLOCKSIZE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000736 bool "Enable \"blocksize\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000737 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000738 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000739 help
Eric Andersene5642112003-07-14 19:37:08 +0000740 Allow the client to specify the desired block size for transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000741
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000742config DEBUG_TFTP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000743 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000744 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000745 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000746 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000747 Enable debug settings for tftp. This is useful if you're running
748 into problems with tftp as the protocol doesn't help you much when
749 you run into problems.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000750
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000751config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000752 bool "traceroute"
753 default n
754 help
Eric Andersene5642112003-07-14 19:37:08 +0000755 Utility to trace the route of IP packets
Eric Andersenc9f20d92002-12-05 08:41:41 +0000756
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000757config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000758 bool "Enable verbose output"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000759 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000760 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000761 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000762 Add some verbosity to traceroute. This includes amongst other things
763 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000764
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000765config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000766 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000767 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000768 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000769 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000770 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000771 (8 maximum).
772
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000773config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000774 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000775 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000776 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000777 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000778 Add feature to allow for ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000779
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000780source networking/udhcp/Config.in
781
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000782config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000783 bool "vconfig"
784 default n
785 help
786 Creates, removes, and configures VLAN interfaces
787
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000788config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000789 bool "wget"
790 default n
791 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000792 wget is a utility for non-interactive download of files from HTTP,
Eric Andersene5642112003-07-14 19:37:08 +0000793 HTTPS, and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000794
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000795config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000796 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000797 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000798 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000799 help
Eric Andersene5642112003-07-14 19:37:08 +0000800 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000801
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000802config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000803 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000804 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000805 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000806 help
Eric Andersene5642112003-07-14 19:37:08 +0000807 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000808
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000809config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000810 bool "Enable long options"
811 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000812 depends on WGET && GETOPT_LONG
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000813 help
814 Support long options for the wget applet.
815
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000816config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +0000817 bool "zcip"
818 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000819 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +0000820 help
821 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
822 It's a daemon that allocates and defends a dynamically assigned
823 address on the 169.254/16 network, requiring no system administrator.
824
825 See http://www.zeroconf.org for further details, and "zcip.script"
826 in the busybox examples.
827
Eric Andersenc9f20d92002-12-05 08:41:41 +0000828endmenu