blob: bd6c6ef7a18a46aec40a399d0576d0219f60d5be [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 Vlasenkof4310172007-09-21 22:35:18 +000086config FEATURE_HTTPD_RANGES
87 bool "Support 'Ranges:' header"
88 default n
89 depends on HTTPD
90 help
91 Makes httpd emit "Accept-Ranges: bytes" header and understand
92 "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
93 downloads, seeking in multimedia players etc.
94
Denis Vlasenko1b9064d2007-08-12 21:05:49 +000095config FEATURE_HTTPD_USE_SENDFILE
96 bool "Use sendfile system call"
97 default n
98 depends on HTTPD
99 help
100 When enabled, httpd will use the kernel sendfile() function
101 instead of read/write loop.
102
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000103config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000104 bool "Support reloading the global config file using hup signal"
105 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000106 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000107 help
108 This option enables processing of SIGHUP to reload cached
109 configuration settings.
110
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000111config FEATURE_HTTPD_SETUID
Denis Vlasenkodb506472006-12-17 20:18:05 +0000112 bool "Enable -u <user> option"
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000113 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000114 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000115 help
116 This option allows the server to run as a specific user
117 rather than defaulting to the user that starts the server.
118 Use of this option requires special privileges to change to a
119 different user.
120
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000121config FEATURE_HTTPD_BASIC_AUTH
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000122 bool "Enable Basic http Authentication"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000123 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000124 depends on HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000125 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000126 Utilizes password settings from /etc/httpd.conf for basic
127 authentication on a per url basis.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000128
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000129config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000130 bool "Support MD5 crypted passwords for http Authentication"
Eric Andersen35e643b2003-07-28 07:40:39 +0000131 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000132 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000133 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000134 Enables basic per URL authentication from /etc/httpd.conf
Eric Andersenf3a02bb2003-07-28 08:31:56 +0000135 using md5 passwords.
Eric Andersen35e643b2003-07-28 07:40:39 +0000136
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000137config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000138 bool "Support loading additional MIME types at run-time"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000139 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000140 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000141 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000142 This option enables support for additional MIME types at
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000143 run-time to be specified in the configuration file.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000144
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000145config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000146 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000147 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000148 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000149 help
150 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000151 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000152
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000153config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000154 bool "Enable support for running scripts through an interpreter"
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000155 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000156 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000157 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000158 This option enables support for running scripts through an
159 interpreter. Turn this on if you want PHP scripts to work
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000160 properly. You need to supply an additional line in your httpd
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000161 config file:
162 *.php:/path/to/your/php
163
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000164config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000165 bool "Support the REMOTE_PORT environment variable for CGI"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000166 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000167 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000168 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000169 Use of this option can assist scripts in generating
170 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000171
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000172config FEATURE_HTTPD_ENCODE_URL_STR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000173 bool "Enable the -e option for shell script CGI simplification."
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000174 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000175 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000176 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000177 This option allows html encoding arbitrary
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000178 strings for display of the browser. Output goes to stdout.
179 For example, httpd -e "<Hello World>" as
180 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000181
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000182config FEATURE_HTTPD_ERROR_PAGES
183 bool "Enable support for custom error pages"
184 default n
185 depends on HTTPD
186 help
187 This option allows you to define custom error pages in
188 the configuration file instead of the default HTTP status
189 error pages. For instance, if you add the line:
190 E404:/path/e404.html
191 in the config file, the server will respond the specified
192 '/path/e404.html' file instead of the terse '404 NOT FOUND'
193 message.
194
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000195config FEATURE_HTTPD_PROXY
196 bool "Enable support for reverse proxy"
197 default n
198 depends on HTTPD
199 help
200 This option allows you to define URLs that will be forwarded
201 to another HTTP server. To setup add the following line to the
202 configuration file
203 P:/url/:http://hostname[:port]/new/path/
204 Then a request to /url/myfile will be forwarded to
205 http://hostname[:port]/new/path/myfile.
206
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000207config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000208 bool "ifconfig"
209 default n
210 help
Eric Andersene5642112003-07-14 19:37:08 +0000211 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000212
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000213config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000214 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000215 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000216 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000217 help
Eric Andersene5642112003-07-14 19:37:08 +0000218 If ifconfig is called with no arguments it will display the status
219 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000220
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000221config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000222 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000223 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000224 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000225 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000226 Allow "keepalive" and "outfill" support for SLIP. If you're not
227 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000228
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000229config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000230 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000231 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000232 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000233 help
Eric Andersene5642112003-07-14 19:37:08 +0000234 Allow the start address for shared memory, start address for I/O,
235 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000236
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000237config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000238 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000239 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000240 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000241 help
Eric Andersene5642112003-07-14 19:37:08 +0000242 Set the hardware address of this interface, if the device driver
243 supports this operation. Currently, we only support the 'ether'
244 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000245
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000246config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000247 bool "Set the broadcast automatically"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000248 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000249 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000250 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000251 Setting this will make ifconfig attempt to find the broadcast
252 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000253
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000254config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000255 bool "ifupdown"
256 default n
257 help
Eric Andersen342aea92003-07-26 09:27:02 +0000258 Activate or deactivate the specified interfaces. This applet makes
259 use of either "ifconfig" and "route" or the "ip" command to actually
260 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000261 to enable either IFCONFIG and ROUTE, or enable
262 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000263 course you could use non-busybox versions of these programs, so
264 against my better judgement (since this will surely result in plenty
265 of support questions on the mailing list), I do not force you to
266 enable these additional options. It is up to you to supply either
Bernhard Reutner-Fischer6111a8f2007-03-19 20:28:03 +0000267 "ifconfig", "route" and "run-parts" or the "ip" command, either
Bernhard Reutner-Fischer0864f4d2007-03-28 16:46:03 +0000268 via busybox or via standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000269
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000270config IFUPDOWN_IFSTATE_PATH
271 string "Absolute path to ifstate file"
272 default "/var/run/ifstate"
Bernhard Reutner-Fischerfc202422007-09-02 22:12:07 +0000273 depends on IFUPDOWN
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000274 help
275 ifupdown keeps state information in a file called ifstate.
276 Typically it is located in /var/run/ifstate, however
277 some distributions tend to put it in other places
278 (debian, for example, uses /etc/network/run/ifstate).
279 This config option defines location of ifstate.
280
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000281config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000282 bool "Use ip applet"
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000283 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000284 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000285 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000286 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
287 than the default of using the older 'ifconfig' and 'route' utilities.
288
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000289config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000290 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000291 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000292 depends on FEATURE_IFUPDOWN_IP
293 select IP
294 select FEATURE_IP_ADDRESS
295 select FEATURE_IP_LINK
296 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000297 help
298 Use the busybox iproute "ip" applet to implement "ifupdown".
299
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000300 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000301 utility or the "ifup" and "ifdown" applets will not work.
302
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000303config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000304 bool "Use busybox ifconfig and route applets"
Eric Andersenc601ff12003-08-08 23:12:12 +0000305 default y
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000306 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000307 select IFCONFIG
308 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000309 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000310 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000311 implement the "ifup" and "ifdown" utilities.
312
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000313 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000314 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000315 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000316
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000317config FEATURE_IFUPDOWN_IPV4
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000318 bool "Enable support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000319 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000320 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000321 help
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000322 If you want ifup/ifdown to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000323
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000324config FEATURE_IFUPDOWN_IPV6
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000325 bool "Enable support for IPv6"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000326 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000327 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000328 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000329 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000330
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000331### UNUSED
332### config FEATURE_IFUPDOWN_IPX
333### bool "Enable support for IPX"
334### default n
335### depends on IFUPDOWN
336### help
337### If this option is selected you can use busybox to work with IPX
338### networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000339
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000340config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000341 bool "Enable mapping support"
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000342 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000343 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000344 help
345 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000346 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000347
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000348config FEATURE_IFUPDOWN_EXTERNAL_DHCP
349 bool "Enable support for external dhcp clients"
350 default n
351 depends on IFUPDOWN
352 help
353 This enables support for the external dhcp clients. Clients are
354 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
355 Otherwise, if udhcpc applet is enabled, it is used.
356 Otherwise, ifup/ifdown will have no support for DHCP.
357
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000358config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000359 bool "inetd"
360 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000361 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000362 help
363 Internet superserver daemon
364
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000365config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000366 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000367 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000368 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000369 help
370 Echo received data internal inetd service
371
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000372config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000373 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000374 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000375 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000376 help
377 Internet /dev/null internal inetd service
378
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000379config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000380 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000381 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000382 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000383 help
384 Return 32 bit time since 1900 internal inetd service
385
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000386config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000387 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000388 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000389 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000390 help
391 Return human-readable time internal inetd service
392
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000393config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000394 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000395 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000396 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000397 help
398 Familiar character generator internal inetd service
399
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000400config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000401 bool "Support RPC services"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000402 default n
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000403 depends on INETD
404 select FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000405 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000406 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000407
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000408config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000409 bool "ip"
410 default n
411 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000412 The "ip" applet is a TCP/IP interface configuration and routing
413 utility. You generally don't need "ip" to use busybox with
414 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000415
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000416config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000417 bool "ip address"
418 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000419 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000420 help
421 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000422
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000423config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000424 bool "ip link"
425 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000426 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000427 help
428 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000429
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000430config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000431 bool "ip route"
432 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000433 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000434 help
435 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000436
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000437config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000438 bool "ip tunnel"
439 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000440 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000441 help
442 Add support for tunneling commands to "ip".
443
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000444config FEATURE_IP_RULE
445 bool "ip rule"
446 default n
447 depends on IP
448 help
449 Add support for rule commands to "ip".
450
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000451config FEATURE_IP_SHORT_FORMS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000452 bool "Support short forms of ip commands."
453 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000454 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000455 help
456 Also support short-form of ip <OBJECT> commands:
457 ip addr -> ipaddr
458 ip link -> iplink
459 ip route -> iproute
460 ip tunnel -> iptunnel
Bernhard Reutner-Fischer7a7e54a2007-02-02 16:06:02 +0000461 ip rule -> iprule
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000462
463 Say N unless you desparately need the short form of the ip
464 object commands.
465
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000466config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000467 bool
468 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000469 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000470
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000471config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000472 bool
473 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000474 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000475
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000476config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000477 bool
478 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000479 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000480
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000481config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000482 bool
483 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000484 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000485
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000486config IPRULE
487 bool
488 default y
489 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
490
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000491config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000492 bool "ipcalc"
493 default n
494 help
Eric Andersene5642112003-07-14 19:37:08 +0000495 ipcalc takes an IP address and netmask and calculates the
496 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000497
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000498config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000499 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000500 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000501 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000502 help
Glenn L McGrath530ea422003-09-02 06:59:57 +0000503 Adds the options hostname, prefix and silent to the output of "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000504
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000505config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000506 bool "Enable long options"
507 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000508 depends on IPCALC && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000509 help
510 Support long options for the ipcalc applet.
511
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000512config NAMEIF
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000513 bool "nameif"
514 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000515 select FEATURE_SYSLOG
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000516 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000517 nameif is used to rename network interface by its MAC address.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000518 Renamed interfaces MUST be in the down state.
Eric Andersen88c916b2003-10-22 09:58:56 +0000519 It is possible to use a file (default: /etc/mactab)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000520 with list of new interface names and MACs.
521 Maximum interface name length: IF_NAMESIZE = 16
Eric Andersen88c916b2003-10-22 09:58:56 +0000522 File fields are separated by space or tab.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000523 File format:
524 # Comment
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000525 new_interface_name XX:XX:XX:XX:XX:XX
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000526
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000527config NC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000528 bool "nc"
529 default n
530 help
Eric Andersene5642112003-07-14 19:37:08 +0000531 A simple Unix utility which reads and writes data across network
532 connections.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000533
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000534config NC_SERVER
Denis Vlasenko29fe7262007-04-05 20:26:28 +0000535 bool "Netcat server options (-l)"
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000536 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000537 depends on NC
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000538 help
Rob Landley1cca9482006-07-10 19:45:20 +0000539 Allow netcat to act as a server.
540
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000541config NC_EXTRA
Rob Landley1cca9482006-07-10 19:45:20 +0000542 bool "Netcat extensions (-eiw and filename)"
543 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000544 depends on NC
Rob Landley1cca9482006-07-10 19:45:20 +0000545 help
546 Add -e (support for executing the rest of the command line after
547 making or receiving a successful connection), -i (delay interval for
548 lines sent), -w (timeout for initial connection).
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000549
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000550config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000551 bool "netstat"
552 default n
553 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000554 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000555
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000556config FEATURE_NETSTAT_WIDE
557 bool " Enable wide netstat output"
558 default n
559 depends on NETSTAT
560 help
561 Add support for wide columns. Useful when displaying IPv6 addresses
562 (-W option).
563
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000564config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000565 bool "nslookup"
566 default n
567 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000568 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000569
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000570config PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000571 bool "ping"
572 default n
573 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000574 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
Eric Andersene5642112003-07-14 19:37:08 +0000575 elicit an ICMP ECHO_RESPONSE from a host or gateway.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000576
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000577config PING6
578 bool "ping6"
579 default n
580 depends on FEATURE_IPV6 && PING
581 help
582 This will give you a ping that can talk IPv6.
583
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000584config PSCAN
585 bool "pscan"
586 default n
587 help
588 Simple network port scanner.
589
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000590config FEATURE_FANCY_PING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000591 bool "Enable fancy ping output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000592 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000593 depends on PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000594 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000595 Make the output from the ping applet include statistics, and at the
596 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000597
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000598config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000599 bool "route"
600 default n
601 help
Eric Andersene5642112003-07-14 19:37:08 +0000602 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000603
Denis Vlasenko14923db2007-06-20 15:23:03 +0000604config SLATTACH
605 bool "slattach"
606 default n
607 help
608 slattach is a small utility to attach network interfaces to serial lines.
609
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000610config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000611 bool "telnet"
612 default n
613 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000614 Telnet is an interface to the TELNET protocol, but is also commonly
615 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000616
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000617config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000618 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000619 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000620 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000621 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000622 Setting this option will forward the TERM environment variable to the
623 remote host you are connecting to. This is useful to make sure that
624 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000625
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000626config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000627 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000628 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000629 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000630 help
631 Setting this option will forward the USER environment variable to the
632 remote host you are connecting to. This is useful when you need to
633 log into a machine without telling the username (autologin). This
634 option enables `-a' and `-l USER' arguments.
635
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000636config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000637 bool "telnetd"
638 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000639 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000640 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000641 A daemon for the TELNET protocol, allowing you to log onto the host
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000642 running the daemon. Please keep in mind that the TELNET protocol
Eric Andersen31ec93e2004-09-23 20:08:46 +0000643 sends passwords in plain text. If you can't afford the space for an
644 SSH daemon and you trust your network, you may say 'y' here. As a
645 more secure alternative, you should seriously consider installing the
646 very small Dropbear SSH daemon instead:
647 http://matt.ucc.asn.au/dropbear/dropbear.html
648
649 Note that for busybox telnetd to work you need several things:
650 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000651 UNIX98_PTYS=y
652 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000653
654 Next, you need a /dev/pts directory on your root filesystem:
655
656 $ ls -ld /dev/pts
657 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
658
659 Next you need the pseudo terminal master multiplexer /dev/ptmx:
660
661 $ ls -la /dev/ptmx
662 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
663
664 Any /dev/ttyp[0-9]* files you may have can be removed.
665 Next, you need to mount the devpts filesystem on /dev/pts using:
666
667 mount -t devpts devpts /dev/pts
668
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000669 You need to be sure that Busybox has LOGIN and
670 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000671 certain that Busybox has been installed setuid root:
672
673 chown root.root /bin/busybox
674 chmod 4755 /bin/busybox
675
676 with all that done, telnetd _should_ work....
677
Eric Andersenc9f20d92002-12-05 08:41:41 +0000678
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000679config FEATURE_TELNETD_STANDALONE
680 bool "Support standalone telnetd (not inetd only)"
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000681 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000682 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000683 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000684 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000685
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000686config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000687 bool "tftp"
688 default n
689 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000690 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000691 is usually used for simple, small transfers such as a root image
692 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000693
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000694config FEATURE_TFTP_GET
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000695 bool "Enable \"get\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000696 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000697 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000698 help
Eric Andersene5642112003-07-14 19:37:08 +0000699 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000700 a client to retrieve a file from a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000701
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000702config FEATURE_TFTP_PUT
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000703 bool "Enable \"put\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000704 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000705 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000706 help
Eric Andersene5642112003-07-14 19:37:08 +0000707 Add support for the PUT command within the TFTP client. This allows
708 a client to transfer a file to a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000709
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000710config FEATURE_TFTP_BLOCKSIZE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000711 bool "Enable \"blocksize\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000712 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000713 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000714 help
Eric Andersene5642112003-07-14 19:37:08 +0000715 Allow the client to specify the desired block size for transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000716
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000717config DEBUG_TFTP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000718 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000719 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000720 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000721 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000722 Enable debug settings for tftp. This is useful if you're running
723 into problems with tftp as the protocol doesn't help you much when
724 you run into problems.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000725
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000726config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000727 bool "traceroute"
728 default n
729 help
Eric Andersene5642112003-07-14 19:37:08 +0000730 Utility to trace the route of IP packets
Eric Andersenc9f20d92002-12-05 08:41:41 +0000731
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000732config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000733 bool "Enable verbose output"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000734 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000735 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000736 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000737 Add some verbosity to traceroute. This includes amongst other things
738 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000739
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000740config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000741 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000742 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000743 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000744 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000745 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000746 (8 maximum).
747
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000748config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000749 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000750 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000751 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000752 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000753 Add feature to allow for ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000754
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000755source networking/udhcp/Config.in
756
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000757config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000758 bool "vconfig"
759 default n
760 help
761 Creates, removes, and configures VLAN interfaces
762
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000763config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000764 bool "wget"
765 default n
766 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000767 wget is a utility for non-interactive download of files from HTTP,
Eric Andersene5642112003-07-14 19:37:08 +0000768 HTTPS, and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000769
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000770config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000771 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000772 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000773 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000774 help
Eric Andersene5642112003-07-14 19:37:08 +0000775 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000776
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000777config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000778 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000779 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000780 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000781 help
Eric Andersene5642112003-07-14 19:37:08 +0000782 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000783
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000784config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000785 bool "Enable long options"
786 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000787 depends on WGET && GETOPT_LONG
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000788 help
789 Support long options for the wget applet.
790
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000791config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +0000792 bool "zcip"
793 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000794 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +0000795 help
796 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
797 It's a daemon that allocates and defends a dynamically assigned
798 address on the 169.254/16 network, requiring no system administrator.
799
800 See http://www.zeroconf.org for further details, and "zcip.script"
801 in the busybox examples.
802
Eric Andersenc9f20d92002-12-05 08:41:41 +0000803endmenu