blob: 5275adc5fde2ec14d0e0328ca32d960d4619124f [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Networking Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "Enable IPv6 support"
10 default n
11 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000012 Enable IPv6 support in busybox.
13 This adds IPv6 support in the networking applets.
Eric Andersenc9f20d92002-12-05 08:41:41 +000014
Denis Vlasenko5de9e9c2007-01-22 22:46:04 +000015config VERBOSE_RESOLUTION_ERRORS
16 bool "Verbose resolution errors"
17 default n
18 help
19 Enable if you are not satisfied with simplistic
20 "can't resolve 'hostname.com'" and want to know more.
21 This may increase size of your executable a bit.
22
Denis Vlasenkofa85b862007-01-07 01:24:12 +000023config ARP
24 bool "arp"
25 default n
26 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000027 Manipulate the system ARP cache.
Denis Vlasenkofa85b862007-01-07 01:24:12 +000028
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000029config ARPING
Glenn L McGrath9e598412003-01-09 10:06:01 +000030 bool "arping"
31 default n
32 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000033 Ping hosts by ARP packets.
Glenn L McGrath9e598412003-01-09 10:06:01 +000034
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000035config DNSD
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000036 bool "dnsd"
37 default n
38 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000039 Small and static DNS server daemon.
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000040
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000041config ETHER_WAKE
Mike Frysingerb662f0d2005-05-11 03:59:53 +000042 bool "ether-wake"
43 default n
44 help
45 Send a magic packet to wake up sleeping machines.
46
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000047config FAKEIDENTD
Mike Frysingerfa69f112005-04-17 07:24:19 +000048 bool "fakeidentd"
49 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000050 select FEATURE_SYSLOG
Mike Frysingerfa69f112005-04-17 07:24:19 +000051 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000052 fakeidentd listens on the ident port and returns a predefined
53 fake value on any query.
Mike Frysingerfa69f112005-04-17 07:24:19 +000054
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000055config FTPGET
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000056 bool "ftpget"
57 default n
58 help
59 Retrieve a remote file via FTP.
60
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000061config FTPPUT
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000062 bool "ftpput"
63 default n
64 help
65 Store a remote file via FTP.
66
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000067config FEATURE_FTPGETPUT_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000068 bool "Enable long options in ftpget/ftpput"
69 default n
Denis Vlasenko9d4533e2006-11-02 22:09:37 +000070 depends on GETOPT_LONG && (FTPGET || FTPPUT)
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000071 help
72 Support long options for the ftpget/ftpput applet.
73
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000074config HOSTNAME
Eric Andersenc9f20d92002-12-05 08:41:41 +000075 bool "hostname"
76 default n
77 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000078 Show or set the system's host name.
Eric Andersenc9f20d92002-12-05 08:41:41 +000079
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000080config HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +000081 bool "httpd"
82 default n
83 help
84 Serve web pages via an HTTP server.
85
Denis Vlasenko1b9064d2007-08-12 21:05:49 +000086config FEATURE_HTTPD_USE_SENDFILE
87 bool "Use sendfile system call"
88 default n
89 depends on HTTPD
90 help
91 When enabled, httpd will use the kernel sendfile() function
92 instead of read/write loop.
93
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000094config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +000095 bool "Support reloading the global config file using hup signal"
96 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +000097 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +000098 help
99 This option enables processing of SIGHUP to reload cached
100 configuration settings.
101
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000102config FEATURE_HTTPD_SETUID
Denis Vlasenkodb506472006-12-17 20:18:05 +0000103 bool "Enable -u <user> option"
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000104 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000105 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000106 help
107 This option allows the server to run as a specific user
108 rather than defaulting to the user that starts the server.
109 Use of this option requires special privileges to change to a
110 different user.
111
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000112config FEATURE_HTTPD_BASIC_AUTH
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000113 bool "Enable Basic http Authentication"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000114 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000115 depends on HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000116 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000117 Utilizes password settings from /etc/httpd.conf for basic
118 authentication on a per url basis.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000119
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000120config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000121 bool "Support MD5 crypted passwords for http Authentication"
Eric Andersen35e643b2003-07-28 07:40:39 +0000122 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000123 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000124 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000125 Enables basic per URL authentication from /etc/httpd.conf
Eric Andersenf3a02bb2003-07-28 08:31:56 +0000126 using md5 passwords.
Eric Andersen35e643b2003-07-28 07:40:39 +0000127
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000128config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000129 bool "Support loading additional MIME types at run-time"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000130 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000131 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000132 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000133 This option enables support for additional MIME types at
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000134 run-time to be specified in the configuration file.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000135
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000136config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000137 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000138 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000139 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000140 help
141 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000142 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000143
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000144config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000145 bool "Enable support for running scripts through an interpreter"
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000146 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000147 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000148 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000149 This option enables support for running scripts through an
150 interpreter. Turn this on if you want PHP scripts to work
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000151 properly. You need to supply an additional line in your httpd
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000152 config file:
153 *.php:/path/to/your/php
154
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000155config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000156 bool "Support the REMOTE_PORT environment variable for CGI"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000157 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000158 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000159 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000160 Use of this option can assist scripts in generating
161 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000162
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000163config FEATURE_HTTPD_ENCODE_URL_STR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000164 bool "Enable the -e option for shell script CGI simplification."
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000165 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000166 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000167 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000168 This option allows html encoding arbitrary
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000169 strings for display of the browser. Output goes to stdout.
170 For example, httpd -e "<Hello World>" as
171 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000172
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000173config FEATURE_HTTPD_ERROR_PAGES
174 bool "Enable support for custom error pages"
175 default n
176 depends on HTTPD
177 help
178 This option allows you to define custom error pages in
179 the configuration file instead of the default HTTP status
180 error pages. For instance, if you add the line:
181 E404:/path/e404.html
182 in the config file, the server will respond the specified
183 '/path/e404.html' file instead of the terse '404 NOT FOUND'
184 message.
185
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000186config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000187 bool "ifconfig"
188 default n
189 help
Eric Andersene5642112003-07-14 19:37:08 +0000190 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000191
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000192config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000193 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000194 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000195 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000196 help
Eric Andersene5642112003-07-14 19:37:08 +0000197 If ifconfig is called with no arguments it will display the status
198 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000199
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000200config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000201 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000202 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000203 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000204 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000205 Allow "keepalive" and "outfill" support for SLIP. If you're not
206 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000207
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000208config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000209 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000210 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000211 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000212 help
Eric Andersene5642112003-07-14 19:37:08 +0000213 Allow the start address for shared memory, start address for I/O,
214 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000215
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000216config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000217 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000218 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000219 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000220 help
Eric Andersene5642112003-07-14 19:37:08 +0000221 Set the hardware address of this interface, if the device driver
222 supports this operation. Currently, we only support the 'ether'
223 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000224
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000225config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000226 bool "Set the broadcast automatically"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000227 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000228 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000229 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000230 Setting this will make ifconfig attempt to find the broadcast
231 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000232
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000233config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000234 bool "ifupdown"
235 default n
236 help
Eric Andersen342aea92003-07-26 09:27:02 +0000237 Activate or deactivate the specified interfaces. This applet makes
238 use of either "ifconfig" and "route" or the "ip" command to actually
239 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000240 to enable either IFCONFIG and ROUTE, or enable
241 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000242 course you could use non-busybox versions of these programs, so
243 against my better judgement (since this will surely result in plenty
244 of support questions on the mailing list), I do not force you to
245 enable these additional options. It is up to you to supply either
Bernhard Reutner-Fischer6111a8f2007-03-19 20:28:03 +0000246 "ifconfig", "route" and "run-parts" or the "ip" command, either
Bernhard Reutner-Fischer0864f4d2007-03-28 16:46:03 +0000247 via busybox or via standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000248
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000249config IFUPDOWN_IFSTATE_PATH
250 string "Absolute path to ifstate file"
251 default "/var/run/ifstate"
252 help
253 ifupdown keeps state information in a file called ifstate.
254 Typically it is located in /var/run/ifstate, however
255 some distributions tend to put it in other places
256 (debian, for example, uses /etc/network/run/ifstate).
257 This config option defines location of ifstate.
258
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000259config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000260 bool "Use ip applet"
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000261 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000262 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000263 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000264 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
265 than the default of using the older 'ifconfig' and 'route' utilities.
266
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000267config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000268 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000269 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000270 depends on FEATURE_IFUPDOWN_IP
271 select IP
272 select FEATURE_IP_ADDRESS
273 select FEATURE_IP_LINK
274 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000275 help
276 Use the busybox iproute "ip" applet to implement "ifupdown".
277
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000278 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000279 utility or the "ifup" and "ifdown" applets will not work.
280
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000281config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000282 bool "Use busybox ifconfig and route applets"
Eric Andersenc601ff12003-08-08 23:12:12 +0000283 default y
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000284 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000285 select IFCONFIG
286 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000287 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000288 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000289 implement the "ifup" and "ifdown" utilities.
290
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000291 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000292 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000293 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000294
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000295config FEATURE_IFUPDOWN_IPV4
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000296 bool "Enable support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000297 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000298 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000299 help
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000300 If you want ifup/ifdown to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000301
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000302config FEATURE_IFUPDOWN_IPV6
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000303 bool "Enable support for IPv6"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000304 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000305 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000306 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000307 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000308
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000309### UNUSED
310### config FEATURE_IFUPDOWN_IPX
311### bool "Enable support for IPX"
312### default n
313### depends on IFUPDOWN
314### help
315### If this option is selected you can use busybox to work with IPX
316### networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000317
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000318config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000319 bool "Enable mapping support"
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000320 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000321 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000322 help
323 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000324 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000325
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000326config FEATURE_IFUPDOWN_EXTERNAL_DHCP
327 bool "Enable support for external dhcp clients"
328 default n
329 depends on IFUPDOWN
330 help
331 This enables support for the external dhcp clients. Clients are
332 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
333 Otherwise, if udhcpc applet is enabled, it is used.
334 Otherwise, ifup/ifdown will have no support for DHCP.
335
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000336config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000337 bool "inetd"
338 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000339 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000340 help
341 Internet superserver daemon
342
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000343config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000344 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000345 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000346 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000347 help
348 Echo received data internal inetd service
349
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000350config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000351 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000352 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000353 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000354 help
355 Internet /dev/null internal inetd service
356
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000357config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000358 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000359 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000360 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000361 help
362 Return 32 bit time since 1900 internal inetd service
363
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000364config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000365 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000366 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000367 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000368 help
369 Return human-readable time internal inetd service
370
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000371config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000372 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000373 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000374 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000375 help
376 Familiar character generator internal inetd service
377
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000378config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000379 bool "Support RPC services"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000380 default n
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000381 depends on INETD
382 select FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000383 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000384 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000385
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000386config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000387 bool "ip"
388 default n
389 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000390 The "ip" applet is a TCP/IP interface configuration and routing
391 utility. You generally don't need "ip" to use busybox with
392 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000393
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000394config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000395 bool "ip address"
396 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000397 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000398 help
399 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000400
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000401config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000402 bool "ip link"
403 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000404 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000405 help
406 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000407
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000408config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000409 bool "ip route"
410 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000411 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000412 help
413 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000414
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000415config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000416 bool "ip tunnel"
417 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000418 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000419 help
420 Add support for tunneling commands to "ip".
421
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000422config FEATURE_IP_RULE
423 bool "ip rule"
424 default n
425 depends on IP
426 help
427 Add support for rule commands to "ip".
428
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000429config FEATURE_IP_SHORT_FORMS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000430 bool "Support short forms of ip commands."
431 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000432 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000433 help
434 Also support short-form of ip <OBJECT> commands:
435 ip addr -> ipaddr
436 ip link -> iplink
437 ip route -> iproute
438 ip tunnel -> iptunnel
Bernhard Reutner-Fischer7a7e54a2007-02-02 16:06:02 +0000439 ip rule -> iprule
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000440
441 Say N unless you desparately need the short form of the ip
442 object commands.
443
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000444config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000445 bool
446 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000447 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000448
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000449config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000450 bool
451 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000452 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000453
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000454config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000455 bool
456 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000457 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000458
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000459config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000460 bool
461 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000462 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000463
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000464config IPRULE
465 bool
466 default y
467 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
468
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000469config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000470 bool "ipcalc"
471 default n
472 help
Eric Andersene5642112003-07-14 19:37:08 +0000473 ipcalc takes an IP address and netmask and calculates the
474 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000475
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000476config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000477 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000478 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000479 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000480 help
Glenn L McGrath530ea422003-09-02 06:59:57 +0000481 Adds the options hostname, prefix and silent to the output of "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000482
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000483config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000484 bool "Enable long options"
485 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000486 depends on IPCALC && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000487 help
488 Support long options for the ipcalc applet.
489
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000490config NAMEIF
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000491 bool "nameif"
492 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000493 select FEATURE_SYSLOG
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000494 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000495 nameif is used to rename network interface by its MAC address.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000496 Renamed interfaces MUST be in the down state.
Eric Andersen88c916b2003-10-22 09:58:56 +0000497 It is possible to use a file (default: /etc/mactab)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000498 with list of new interface names and MACs.
499 Maximum interface name length: IF_NAMESIZE = 16
Eric Andersen88c916b2003-10-22 09:58:56 +0000500 File fields are separated by space or tab.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000501 File format:
502 # Comment
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000503 new_interface_name XX:XX:XX:XX:XX:XX
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000504
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000505config NC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000506 bool "nc"
507 default n
508 help
Eric Andersene5642112003-07-14 19:37:08 +0000509 A simple Unix utility which reads and writes data across network
510 connections.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000511
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000512config NC_SERVER
Denis Vlasenko29fe7262007-04-05 20:26:28 +0000513 bool "Netcat server options (-l)"
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000514 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000515 depends on NC
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000516 help
Rob Landley1cca9482006-07-10 19:45:20 +0000517 Allow netcat to act as a server.
518
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000519config NC_EXTRA
Rob Landley1cca9482006-07-10 19:45:20 +0000520 bool "Netcat extensions (-eiw and filename)"
521 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000522 depends on NC
Rob Landley1cca9482006-07-10 19:45:20 +0000523 help
524 Add -e (support for executing the rest of the command line after
525 making or receiving a successful connection), -i (delay interval for
526 lines sent), -w (timeout for initial connection).
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000527
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000528config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000529 bool "netstat"
530 default n
531 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000532 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000533
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000534config FEATURE_NETSTAT_WIDE
535 bool " Enable wide netstat output"
536 default n
537 depends on NETSTAT
538 help
539 Add support for wide columns. Useful when displaying IPv6 addresses
540 (-W option).
541
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000542config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000543 bool "nslookup"
544 default n
545 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000546 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000547
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000548config PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000549 bool "ping"
550 default n
551 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000552 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
Eric Andersene5642112003-07-14 19:37:08 +0000553 elicit an ICMP ECHO_RESPONSE from a host or gateway.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000554
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000555config PING6
556 bool "ping6"
557 default n
558 depends on FEATURE_IPV6 && PING
559 help
560 This will give you a ping that can talk IPv6.
561
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000562config PSCAN
563 bool "pscan"
564 default n
565 help
566 Simple network port scanner.
567
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000568config FEATURE_FANCY_PING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000569 bool "Enable fancy ping output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000570 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000571 depends on PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000572 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000573 Make the output from the ping applet include statistics, and at the
574 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000575
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000576config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000577 bool "route"
578 default n
579 help
Eric Andersene5642112003-07-14 19:37:08 +0000580 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000581
Denis Vlasenko14923db2007-06-20 15:23:03 +0000582config SLATTACH
583 bool "slattach"
584 default n
585 help
586 slattach is a small utility to attach network interfaces to serial lines.
587
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000588config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000589 bool "telnet"
590 default n
591 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000592 Telnet is an interface to the TELNET protocol, but is also commonly
593 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000594
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000595config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000596 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000597 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000598 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000599 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000600 Setting this option will forward the TERM environment variable to the
601 remote host you are connecting to. This is useful to make sure that
602 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000603
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000604config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000605 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000606 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000607 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000608 help
609 Setting this option will forward the USER environment variable to the
610 remote host you are connecting to. This is useful when you need to
611 log into a machine without telling the username (autologin). This
612 option enables `-a' and `-l USER' arguments.
613
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000614config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000615 bool "telnetd"
616 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000617 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000618 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000619 A daemon for the TELNET protocol, allowing you to log onto the host
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000620 running the daemon. Please keep in mind that the TELNET protocol
Eric Andersen31ec93e2004-09-23 20:08:46 +0000621 sends passwords in plain text. If you can't afford the space for an
622 SSH daemon and you trust your network, you may say 'y' here. As a
623 more secure alternative, you should seriously consider installing the
624 very small Dropbear SSH daemon instead:
625 http://matt.ucc.asn.au/dropbear/dropbear.html
626
627 Note that for busybox telnetd to work you need several things:
628 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000629 UNIX98_PTYS=y
630 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000631
632 Next, you need a /dev/pts directory on your root filesystem:
633
634 $ ls -ld /dev/pts
635 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
636
637 Next you need the pseudo terminal master multiplexer /dev/ptmx:
638
639 $ ls -la /dev/ptmx
640 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
641
642 Any /dev/ttyp[0-9]* files you may have can be removed.
643 Next, you need to mount the devpts filesystem on /dev/pts using:
644
645 mount -t devpts devpts /dev/pts
646
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000647 You need to be sure that Busybox has LOGIN and
648 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000649 certain that Busybox has been installed setuid root:
650
651 chown root.root /bin/busybox
652 chmod 4755 /bin/busybox
653
654 with all that done, telnetd _should_ work....
655
Eric Andersenc9f20d92002-12-05 08:41:41 +0000656
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000657config FEATURE_TELNETD_STANDALONE
658 bool "Support standalone telnetd (not inetd only)"
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000659 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000660 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000661 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000662 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000663
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000664config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000665 bool "tftp"
666 default n
667 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000668 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000669 is usually used for simple, small transfers such as a root image
670 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000671
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000672config FEATURE_TFTP_GET
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000673 bool "Enable \"get\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000674 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000675 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000676 help
Eric Andersene5642112003-07-14 19:37:08 +0000677 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000678 a client to retrieve a file from a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000679
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000680config FEATURE_TFTP_PUT
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000681 bool "Enable \"put\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000682 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000683 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000684 help
Eric Andersene5642112003-07-14 19:37:08 +0000685 Add support for the PUT command within the TFTP client. This allows
686 a client to transfer a file to a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000687
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000688config FEATURE_TFTP_BLOCKSIZE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000689 bool "Enable \"blocksize\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000690 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000691 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000692 help
Eric Andersene5642112003-07-14 19:37:08 +0000693 Allow the client to specify the desired block size for transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000694
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000695config DEBUG_TFTP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000696 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000697 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000698 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000699 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000700 Enable debug settings for tftp. This is useful if you're running
701 into problems with tftp as the protocol doesn't help you much when
702 you run into problems.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000703
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000704config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000705 bool "traceroute"
706 default n
707 help
Eric Andersene5642112003-07-14 19:37:08 +0000708 Utility to trace the route of IP packets
Eric Andersenc9f20d92002-12-05 08:41:41 +0000709
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000710config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000711 bool "Enable verbose output"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000712 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000713 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000714 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000715 Add some verbosity to traceroute. This includes amongst other things
716 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000717
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000718config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000719 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000720 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000721 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000722 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000723 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000724 (8 maximum).
725
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000726config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000727 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000728 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000729 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000730 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000731 Add feature to allow for ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000732
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000733source networking/udhcp/Config.in
734
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000735config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000736 bool "vconfig"
737 default n
738 help
739 Creates, removes, and configures VLAN interfaces
740
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000741config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000742 bool "wget"
743 default n
744 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000745 wget is a utility for non-interactive download of files from HTTP,
Eric Andersene5642112003-07-14 19:37:08 +0000746 HTTPS, and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000747
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000748config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000749 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000750 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000751 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000752 help
Eric Andersene5642112003-07-14 19:37:08 +0000753 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000754
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000755config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000756 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000757 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000758 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000759 help
Eric Andersene5642112003-07-14 19:37:08 +0000760 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000761
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000762config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000763 bool "Enable long options"
764 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000765 depends on WGET && GETOPT_LONG
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000766 help
767 Support long options for the wget applet.
768
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000769config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +0000770 bool "zcip"
771 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000772 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +0000773 help
774 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
775 It's a daemon that allocates and defends a dynamically assigned
776 address on the 169.254/16 network, requiring no system administrator.
777
778 See http://www.zeroconf.org for further details, and "zcip.script"
779 in the busybox examples.
780
Eric Andersenc9f20d92002-12-05 08:41:41 +0000781endmenu