blob: fbad7ecb202cefc3f4ad185387746eb1b5a1327e [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
Denys Vlasenkod70e0e92010-06-08 12:15:11 +02008INSERT
9
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000010config FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +000011 bool "Enable IPv6 support"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020012 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +000013 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000014 Enable IPv6 support in busybox.
15 This adds IPv6 support in the networking applets.
Eric Andersenc9f20d92002-12-05 08:41:41 +000016
Denis Vlasenkof6b46852009-04-25 13:16:53 +000017config FEATURE_UNIX_LOCAL
Denys Vlasenko47aaa2b2009-05-01 03:00:04 +020018 bool "Enable Unix domain socket support (usually not needed)"
Denis Vlasenkof6b46852009-04-25 13:16:53 +000019 default n
20 help
21 Enable Unix domain socket support in all busybox networking
Denys Vlasenkobcbd37d2009-06-18 13:23:58 +020022 applets. Address of the form local:/path/to/unix/socket
23 will be recognized.
24
25 This extension is almost never used in real world usage.
26 You most likely want to say N.
Denis Vlasenkof6b46852009-04-25 13:16:53 +000027
Denis Vlasenko9d6c4692007-11-14 10:18:33 +000028config FEATURE_PREFER_IPV4_ADDRESS
Bernhard Reutner-Fischer97b954d2009-02-14 13:17:48 +000029 bool "Prefer IPv4 addresses from DNS queries"
Denis Vlasenko9d6c4692007-11-14 10:18:33 +000030 default y
31 depends on FEATURE_IPV6
32 help
33 Use IPv4 address of network host if it has one.
34
35 If this option is off, the first returned address will be used.
36 This may cause problems when your DNS server is IPv6-capable and
37 is returning IPv6 host addresses too. If IPv6 address
38 precedes IPv4 one in DNS reply, busybox network applets
39 (e.g. wget) will use IPv6 address. On an IPv6-incapable host
40 or network applets will fail to connect to the host
41 using IPv6 address.
42
Denis Vlasenko5de9e9c2007-01-22 22:46:04 +000043config VERBOSE_RESOLUTION_ERRORS
44 bool "Verbose resolution errors"
45 default n
46 help
47 Enable if you are not satisfied with simplistic
48 "can't resolve 'hostname.com'" and want to know more.
49 This may increase size of your executable a bit.
50
Denis Vlasenkofa85b862007-01-07 01:24:12 +000051config ARP
52 bool "arp"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020053 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010054 select PLATFORM_LINUX
Denis Vlasenkofa85b862007-01-07 01:24:12 +000055 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000056 Manipulate the system ARP cache.
Denis Vlasenkofa85b862007-01-07 01:24:12 +000057
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000058config ARPING
Glenn L McGrath9e598412003-01-09 10:06:01 +000059 bool "arping"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020060 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010061 select PLATFORM_LINUX
Glenn L McGrath9e598412003-01-09 10:06:01 +000062 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000063 Ping hosts by ARP packets.
Glenn L McGrath9e598412003-01-09 10:06:01 +000064
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000065config BRCTL
66 bool "brctl"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020067 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010068 select PLATFORM_LINUX
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000069 help
70 Manage ethernet bridges.
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000071 Supports addbr/delbr and addif/delif.
72
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000073config FEATURE_BRCTL_FANCY
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +000074 bool "Fancy options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020075 default y
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000076 depends on BRCTL
77 help
78 Add support for extended option like:
79 setageing, setfd, sethello, setmaxage,
80 setpathcost, setportprio, setbridgeprio,
81 stp
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000082 This adds about 600 bytes.
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000083
Denis Vlasenko278a1c22008-04-06 07:17:02 +000084config FEATURE_BRCTL_SHOW
Nicolas Thillf47ce072012-09-25 14:06:01 +020085 bool "Support show"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020086 default y
Denis Vlasenko278a1c22008-04-06 07:17:02 +000087 depends on BRCTL && FEATURE_BRCTL_FANCY
88 help
89 Add support for option which prints the current config:
Nicolas Thillf47ce072012-09-25 14:06:01 +020090 show
Denis Vlasenko278a1c22008-04-06 07:17:02 +000091
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000092config DNSD
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000093 bool "dnsd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020094 default y
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000095 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000096 Small and static DNS server daemon.
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000097
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000098config ETHER_WAKE
Mike Frysingerb662f0d2005-05-11 03:59:53 +000099 bool "ether-wake"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200100 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100101 select PLATFORM_LINUX
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000102 help
103 Send a magic packet to wake up sleeping machines.
104
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000105config FAKEIDENTD
Mike Frysingerfa69f112005-04-17 07:24:19 +0000106 bool "fakeidentd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200107 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000108 select FEATURE_SYSLOG
Mike Frysingerfa69f112005-04-17 07:24:19 +0000109 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000110 fakeidentd listens on the ident port and returns a predefined
111 fake value on any query.
Mike Frysingerfa69f112005-04-17 07:24:19 +0000112
Denis Vlasenko16b4a2d2009-03-08 09:30:56 +0000113config FTPD
114 bool "ftpd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200115 default y
Denis Vlasenko16b4a2d2009-03-08 09:30:56 +0000116 help
117 simple FTP daemon. You have to run it via inetd.
118
119config FEATURE_FTP_WRITE
Denis Vlasenko5e4fda02009-03-08 23:46:48 +0000120 bool "Enable upload commands"
Denis Vlasenko16b4a2d2009-03-08 09:30:56 +0000121 default y
122 depends on FTPD
123 help
Denis Vlasenko5e4fda02009-03-08 23:46:48 +0000124 Enable all kinds of FTP upload commands (-w option)
Denis Vlasenko16b4a2d2009-03-08 09:30:56 +0000125
Stefan Seyfriedf3fc9ac2010-01-18 02:08:30 +0100126config FEATURE_FTPD_ACCEPT_BROKEN_LIST
127 bool "Enable workaround for RFC-violating clients"
128 default y
129 depends on FTPD
130 help
Denys Vlasenko238c83b2010-04-21 18:05:10 -0400131 Some ftp clients (among them KDE's Konqueror) issue illegal
132 "LIST -l" requests. This option works around such problems.
Stefan Seyfriedf3fc9ac2010-01-18 02:08:30 +0100133 It might prevent you from listing files starting with "-" and
134 it increases the code size by ~40 bytes.
135 Most other ftp servers seem to behave similar to this.
136
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000137config FTPGET
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000138 bool "ftpget"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200139 default y
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000140 help
141 Retrieve a remote file via FTP.
142
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000143config FTPPUT
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000144 bool "ftpput"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200145 default y
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000146 help
147 Store a remote file via FTP.
148
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000149config FEATURE_FTPGETPUT_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000150 bool "Enable long options in ftpget/ftpput"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200151 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200152 depends on LONG_OPTS && (FTPGET || FTPPUT)
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000153 help
154 Support long options for the ftpget/ftpput applet.
155
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000156config HOSTNAME
Eric Andersenc9f20d92002-12-05 08:41:41 +0000157 bool "hostname"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200158 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000159 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000160 Show or set the system's host name.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000161
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000162config HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000163 bool "httpd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200164 default y
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000165 help
166 Serve web pages via an HTTP server.
167
Denis Vlasenkof4310172007-09-21 22:35:18 +0000168config FEATURE_HTTPD_RANGES
169 bool "Support 'Ranges:' header"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200170 default y
Denis Vlasenkof4310172007-09-21 22:35:18 +0000171 depends on HTTPD
172 help
173 Makes httpd emit "Accept-Ranges: bytes" header and understand
174 "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
175 downloads, seeking in multimedia players etc.
176
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000177config FEATURE_HTTPD_USE_SENDFILE
178 bool "Use sendfile system call"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200179 default y
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000180 depends on HTTPD
181 help
182 When enabled, httpd will use the kernel sendfile() function
183 instead of read/write loop.
184
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000185config FEATURE_HTTPD_SETUID
Denis Vlasenkodb506472006-12-17 20:18:05 +0000186 bool "Enable -u <user> option"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200187 default y
Denis Vlasenkodb506472006-12-17 20:18:05 +0000188 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000189 help
190 This option allows the server to run as a specific user
191 rather than defaulting to the user that starts the server.
192 Use of this option requires special privileges to change to a
193 different user.
194
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000195config FEATURE_HTTPD_BASIC_AUTH
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000196 bool "Enable Basic http Authentication"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000197 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000198 depends on HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000199 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000200 Utilizes password settings from /etc/httpd.conf for basic
201 authentication on a per url basis.
Denys Vlasenko35def512012-02-01 02:42:54 +0100202 Example for httpd.conf file:
203 /adm:toor:PaSsWd
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000204
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000205config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000206 bool "Support MD5 crypted passwords for http Authentication"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200207 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000208 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000209 help
Denys Vlasenko35def512012-02-01 02:42:54 +0100210 Enables encrypted passwords, and wildcard user/passwords
211 in httpd.conf file.
212 User '*' means 'any system user name is ok',
213 password of '*' means 'use system password for this user'
214 Examples:
215 /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
216 /adm:root:*
217 /wiki:*:*
Eric Andersen35e643b2003-07-28 07:40:39 +0000218
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000219config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000220 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000221 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000222 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000223 help
224 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000225 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000226
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000227config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000228 bool "Support for running scripts through an interpreter"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200229 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000230 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000231 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000232 This option enables support for running scripts through an
233 interpreter. Turn this on if you want PHP scripts to work
Denys Vlasenko35def512012-02-01 02:42:54 +0100234 properly. You need to supply an additional line in your
235 httpd.conf file:
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000236 *.php:/path/to/your/php
237
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000238config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000239 bool "Set REMOTE_PORT environment variable for CGI"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200240 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000241 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000242 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000243 Use of this option can assist scripts in generating
244 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000245
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000246config FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000247 bool "Enable -e option (useful for CGIs written as shell scripts)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000248 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000249 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000250 help
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000251 This option allows html encoding of arbitrary strings for display
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000252 by the browser. Output goes to stdout.
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000253 For example, httpd -e "<Hello World>" produces
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000254 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000255
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000256config FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000257 bool "Support for custom error pages"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200258 default y
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000259 depends on HTTPD
260 help
261 This option allows you to define custom error pages in
262 the configuration file instead of the default HTTP status
263 error pages. For instance, if you add the line:
264 E404:/path/e404.html
265 in the config file, the server will respond the specified
266 '/path/e404.html' file instead of the terse '404 NOT FOUND'
267 message.
268
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000269config FEATURE_HTTPD_PROXY
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000270 bool "Support for reverse proxy"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200271 default y
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000272 depends on HTTPD
273 help
274 This option allows you to define URLs that will be forwarded
275 to another HTTP server. To setup add the following line to the
276 configuration file
277 P:/url/:http://hostname[:port]/new/path/
278 Then a request to /url/myfile will be forwarded to
279 http://hostname[:port]/new/path/myfile.
280
Peter Korsgaard7a2ba322010-07-25 03:20:53 +0200281config FEATURE_HTTPD_GZIP
282 bool "Support for GZIP content encoding"
283 default y
284 depends on HTTPD
285 help
286 Makes httpd send files using GZIP content encoding if the
287 client supports it and a pre-compressed <file>.gz exists.
288
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000289config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000290 bool "ifconfig"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200291 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100292 select PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000293 help
Eric Andersene5642112003-07-14 19:37:08 +0000294 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000295
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000296config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000297 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000298 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000299 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000300 help
Eric Andersene5642112003-07-14 19:37:08 +0000301 If ifconfig is called with no arguments it will display the status
302 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000303
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000304config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000305 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200306 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000307 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000308 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000309 Allow "keepalive" and "outfill" support for SLIP. If you're not
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000310 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000311
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000312config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000313 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200314 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000315 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000316 help
Eric Andersene5642112003-07-14 19:37:08 +0000317 Allow the start address for shared memory, start address for I/O,
318 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000319
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000320config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000321 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000322 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000323 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000324 help
Eric Andersene5642112003-07-14 19:37:08 +0000325 Set the hardware address of this interface, if the device driver
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000326 supports this operation. Currently, we only support the 'ether'
Eric Andersene5642112003-07-14 19:37:08 +0000327 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000328
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000329config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000330 bool "Set the broadcast automatically"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200331 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000332 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000333 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000334 Setting this will make ifconfig attempt to find the broadcast
335 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000336
Denis Vlasenko06aed432008-02-26 18:25:24 +0000337config IFENSLAVE
338 bool "ifenslave"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200339 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100340 select PLATFORM_LINUX
Denis Vlasenko06aed432008-02-26 18:25:24 +0000341 help
342 Userspace application to bind several interfaces
343 to a logical interface (use with kernel bonding driver).
344
Denis Vlasenko71c16572009-04-26 01:08:51 +0000345config IFPLUGD
346 bool "ifplugd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200347 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100348 select PLATFORM_LINUX
Denis Vlasenko71c16572009-04-26 01:08:51 +0000349 help
350 Network interface plug detection daemon.
351
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000352config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000353 bool "ifupdown"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200354 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000355 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000356 Activate or deactivate the specified interfaces. This applet makes
Eric Andersen342aea92003-07-26 09:27:02 +0000357 use of either "ifconfig" and "route" or the "ip" command to actually
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000358 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000359 to enable either IFCONFIG and ROUTE, or enable
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000360 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000361 course you could use non-busybox versions of these programs, so
362 against my better judgement (since this will surely result in plenty
363 of support questions on the mailing list), I do not force you to
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000364 enable these additional options. It is up to you to supply either
Bernhard Reutner-Fischer6111a8f2007-03-19 20:28:03 +0000365 "ifconfig", "route" and "run-parts" or the "ip" command, either
Bernhard Reutner-Fischer0864f4d2007-03-28 16:46:03 +0000366 via busybox or via standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000367
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000368config IFUPDOWN_IFSTATE_PATH
369 string "Absolute path to ifstate file"
370 default "/var/run/ifstate"
Bernhard Reutner-Fischerfc202422007-09-02 22:12:07 +0000371 depends on IFUPDOWN
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000372 help
373 ifupdown keeps state information in a file called ifstate.
374 Typically it is located in /var/run/ifstate, however
375 some distributions tend to put it in other places
376 (debian, for example, uses /etc/network/run/ifstate).
377 This config option defines location of ifstate.
378
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000379config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000380 bool "Use ip applet"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200381 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000382 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000383 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000384 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
385 than the default of using the older 'ifconfig' and 'route' utilities.
386
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000387config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000388 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000389 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100390 depends on FEATURE_IFUPDOWN_IP
391 select PLATFORM_LINUX
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000392 select IP
393 select FEATURE_IP_ADDRESS
394 select FEATURE_IP_LINK
395 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000396 help
397 Use the busybox iproute "ip" applet to implement "ifupdown".
398
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000399 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000400 utility or the "ifup" and "ifdown" applets will not work.
401
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000402config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000403 bool "Use busybox ifconfig and route applets"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200404 default n
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000405 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000406 select IFCONFIG
407 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000408 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000409 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000410 implement the "ifup" and "ifdown" utilities.
411
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000412 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000413 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000414 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000415
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000416config FEATURE_IFUPDOWN_IPV4
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000417 bool "Support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000418 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000419 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000420 help
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000421 If you want ifup/ifdown to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000422
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000423config FEATURE_IFUPDOWN_IPV6
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000424 bool "Support for IPv6"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200425 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000426 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000427 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000428 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000429
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000430### UNUSED
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000431###config FEATURE_IFUPDOWN_IPX
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000432### bool "Support for IPX"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200433### default y
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000434### depends on IFUPDOWN
435### help
436### If this option is selected you can use busybox to work with IPX
437### networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000438
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000439config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000440 bool "Enable mapping support"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200441 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000442 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000443 help
444 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000445 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000446
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000447config FEATURE_IFUPDOWN_EXTERNAL_DHCP
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000448 bool "Support for external dhcp clients"
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000449 default n
450 depends on IFUPDOWN
451 help
452 This enables support for the external dhcp clients. Clients are
453 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
454 Otherwise, if udhcpc applet is enabled, it is used.
455 Otherwise, ifup/ifdown will have no support for DHCP.
456
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000457config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000458 bool "inetd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200459 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000460 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000461 help
462 Internet superserver daemon
463
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000464config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000465 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000466 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000467 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000468 help
469 Echo received data internal inetd service
470
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000471config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000472 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000473 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000474 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000475 help
476 Internet /dev/null internal inetd service
477
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000478config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000479 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000480 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000481 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000482 help
483 Return 32 bit time since 1900 internal inetd service
484
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000485config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000486 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000487 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000488 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000489 help
490 Return human-readable time internal inetd service
491
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000492config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000493 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000494 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000495 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000496 help
497 Familiar character generator internal inetd service
498
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000499config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000500 bool "Support RPC services"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200501 default y
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000502 depends on INETD
503 select FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000504 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000505 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000506
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000507config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000508 bool "ip"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200509 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100510 select PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000511 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000512 The "ip" applet is a TCP/IP interface configuration and routing
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000513 utility. You generally don't need "ip" to use busybox with
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000514 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000515
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000516config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000517 bool "ip address"
518 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000519 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000520 help
521 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000522
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000523config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000524 bool "ip link"
525 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000526 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000527 help
528 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000529
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000530config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000531 bool "ip route"
532 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000533 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000534 help
535 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000536
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000537config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000538 bool "ip tunnel"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200539 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000540 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000541 help
542 Add support for tunneling commands to "ip".
543
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000544config FEATURE_IP_RULE
545 bool "ip rule"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200546 default y
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000547 depends on IP
548 help
549 Add support for rule commands to "ip".
550
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000551config FEATURE_IP_SHORT_FORMS
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000552 bool "Support short forms of ip commands"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200553 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000554 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000555 help
556 Also support short-form of ip <OBJECT> commands:
557 ip addr -> ipaddr
558 ip link -> iplink
559 ip route -> iproute
560 ip tunnel -> iptunnel
Bernhard Reutner-Fischer7a7e54a2007-02-02 16:06:02 +0000561 ip rule -> iprule
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000562
563 Say N unless you desparately need the short form of the ip
564 object commands.
565
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000566config FEATURE_IP_RARE_PROTOCOLS
Bernhard Reutner-Fischer1641d612007-10-29 21:21:27 +0000567 bool "Support displaying rarely used link types"
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000568 default n
569 depends on IP
570 help
571 If you are not going to use links of type "frad", "econet",
572 "bif" etc, you probably don't need to enable this.
573 Ethernet, wireless, infrared, ppp/slip, ip tunnelling
574 link types are supported without this option selected.
575
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000576config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000577 bool
578 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000579 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000580
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000581config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000582 bool
583 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000584 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000585
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000586config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000587 bool
588 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000589 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000590
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000591config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000592 bool
593 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000594 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000595
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000596config IPRULE
597 bool
598 default y
599 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
600
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000601config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000602 bool "ipcalc"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200603 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000604 help
Eric Andersene5642112003-07-14 19:37:08 +0000605 ipcalc takes an IP address and netmask and calculates the
606 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000607
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000608config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000609 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000610 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000611 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000612 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000613 Adds the options hostname, prefix and silent to the output of
614 "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000615
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000616config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000617 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200618 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200619 depends on IPCALC && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000620 help
621 Support long options for the ipcalc applet.
622
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000623config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000624 bool "netstat"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200625 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100626 select PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000627 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000628 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000629
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000630config FEATURE_NETSTAT_WIDE
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000631 bool "Enable wide netstat output"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200632 default y
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000633 depends on NETSTAT
634 help
635 Add support for wide columns. Useful when displaying IPv6 addresses
636 (-W option).
637
Denis Vlasenko6e69e422008-07-27 12:10:07 +0000638config FEATURE_NETSTAT_PRG
639 bool "Enable PID/Program name output"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200640 default y
Denis Vlasenko6e69e422008-07-27 12:10:07 +0000641 depends on NETSTAT
642 help
643 Add support for -p flag to print out PID and program name.
644 +700 bytes of code.
645
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000646config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000647 bool "nslookup"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200648 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000649 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000650 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000651
Adam Tkacb1585062009-11-22 03:43:55 +0100652config NTPD
653 bool "ntpd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200654 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100655 select PLATFORM_LINUX
Adam Tkacb1585062009-11-22 03:43:55 +0100656 help
657 The NTP client/server daemon.
658
659config FEATURE_NTPD_SERVER
Denys Vlasenko345e0932010-03-31 16:03:56 +0200660 bool "Make ntpd usable as a NTP server"
661 default y
662 depends on NTPD
663 help
Denys Vlasenko60b95242010-01-14 01:11:54 +0100664 Make ntpd usable as a NTP server. If you disable this option
Adam Tkacb1585062009-11-22 03:43:55 +0100665 ntpd will be usable only as a NTP client.
666
Denys Vlasenko504fe452014-03-23 15:06:38 +0100667config FEATURE_NTPD_CONF
668 bool "Make ntpd understand /etc/ntp.conf"
669 default y
670 depends on NTPD
671 help
672 Make ntpd look in /etc/ntp.conf for peers. Only "server address"
673 is supported.
674
Paul Fox0b2b5842008-02-01 23:25:32 +0000675config PSCAN
676 bool "pscan"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200677 default y
Paul Fox0b2b5842008-02-01 23:25:32 +0000678 help
679 Simple network port scanner.
680
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000681config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000682 bool "route"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200683 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100684 select PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000685 help
Eric Andersene5642112003-07-14 19:37:08 +0000686 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000687
Denis Vlasenko14923db2007-06-20 15:23:03 +0000688config SLATTACH
689 bool "slattach"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200690 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100691 select PLATFORM_LINUX
Denis Vlasenko14923db2007-06-20 15:23:03 +0000692 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000693 slattach is a small utility to attach network interfaces to serial
694 lines.
Denis Vlasenko14923db2007-06-20 15:23:03 +0000695
Bernhard Reutner-Fischer0901c512008-09-04 13:22:58 +0000696#config TC
697# bool "tc"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200698# default y
Bernhard Reutner-Fischer0901c512008-09-04 13:22:58 +0000699# help
700# show / manipulate traffic control settings
701#
702#config FEATURE_TC_INGRESS
703# def_bool n
704# depends on TC
705
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100706config TCPSVD
707 bool "tcpsvd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200708 default y
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100709 help
710 tcpsvd listens on a TCP port and runs a program for each new
711 connection.
712
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000713config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000714 bool "telnet"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200715 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000716 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000717 Telnet is an interface to the TELNET protocol, but is also commonly
718 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000719
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000720config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000721 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000722 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000723 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000724 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000725 Setting this option will forward the TERM environment variable to the
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000726 remote host you are connecting to. This is useful to make sure that
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000727 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000728
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000729config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000730 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000731 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000732 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000733 help
734 Setting this option will forward the USER environment variable to the
735 remote host you are connecting to. This is useful when you need to
736 log into a machine without telling the username (autologin). This
737 option enables `-a' and `-l USER' arguments.
738
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000739config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000740 bool "telnetd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200741 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000742 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000743 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000744 A daemon for the TELNET protocol, allowing you to log onto the host
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000745 running the daemon. Please keep in mind that the TELNET protocol
746 sends passwords in plain text. If you can't afford the space for an
747 SSH daemon and you trust your network, you may say 'y' here. As a
Eric Andersen31ec93e2004-09-23 20:08:46 +0000748 more secure alternative, you should seriously consider installing the
749 very small Dropbear SSH daemon instead:
750 http://matt.ucc.asn.au/dropbear/dropbear.html
751
752 Note that for busybox telnetd to work you need several things:
753 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000754 UNIX98_PTYS=y
755 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000756
757 Next, you need a /dev/pts directory on your root filesystem:
758
759 $ ls -ld /dev/pts
760 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
761
762 Next you need the pseudo terminal master multiplexer /dev/ptmx:
763
764 $ ls -la /dev/ptmx
765 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
766
767 Any /dev/ttyp[0-9]* files you may have can be removed.
768 Next, you need to mount the devpts filesystem on /dev/pts using:
769
770 mount -t devpts devpts /dev/pts
771
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200772 You need to be sure that busybox has LOGIN and
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000773 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000774 certain that Busybox has been installed setuid root:
775
776 chown root.root /bin/busybox
777 chmod 4755 /bin/busybox
778
779 with all that done, telnetd _should_ work....
780
Eric Andersenc9f20d92002-12-05 08:41:41 +0000781
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000782config FEATURE_TELNETD_STANDALONE
783 bool "Support standalone telnetd (not inetd only)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200784 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000785 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000786 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000787 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000788
Denys Vlasenkoed1667e2009-09-04 02:21:13 +0200789config FEATURE_TELNETD_INETD_WAIT
790 bool "Support -w SEC option (inetd wait mode)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200791 default y
Denys Vlasenkoed1667e2009-09-04 02:21:13 +0200792 depends on FEATURE_TELNETD_STANDALONE
793 help
794 This option allows you to run telnetd in "inet wait" mode.
795 Example inetd.conf line (note "wait", not usual "nowait"):
796
797 telnet stream tcp wait root /bin/telnetd telnetd -w10
798
799 In this example, inetd passes _listening_ socket_ as fd 0
800 to telnetd when connection appears.
801 telnetd will wait for connections until all existing
802 connections are closed, and no new connections
803 appear during 10 seconds. Then it exits, and inetd continues
804 to listen for new connections.
805
806 This option is rarely used. "tcp nowait" is much more usual
807 way of running tcp services, including telnetd.
808 You most probably want to say N here.
809
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000810config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000811 bool "tftp"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200812 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000813 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000814 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000815 is usually used for simple, small transfers such as a root image
816 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000817
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000818config TFTPD
819 bool "tftpd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200820 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000821 help
822 This enables the Trivial File Transfer Protocol server program.
823 It expects that stdin is a datagram socket and a packet
824 is already pending on it. It will exit after one transfer.
825 In other words: it should be run from inetd in nowait mode,
826 or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
827
Denys Vlasenko0cc25942010-06-17 23:48:59 +0200828comment "Common options for tftp/tftpd"
829 depends on TFTP || TFTPD
830
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000831config FEATURE_TFTP_GET
Denys Vlasenkocbcc1232010-03-05 23:38:54 +0100832 bool "Enable 'tftp get' and/or tftpd upload code"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000833 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000834 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000835 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000836 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000837 a client to retrieve a file from a TFTP server.
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000838 Also enable upload support in tftpd, if tftpd is selected.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000839
Denys Vlasenkocbcc1232010-03-05 23:38:54 +0100840 Note: this option does _not_ make tftpd capable of download
841 (the usual operation people need from it)!
842
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000843config FEATURE_TFTP_PUT
Denys Vlasenkocbcc1232010-03-05 23:38:54 +0100844 bool "Enable 'tftp put' and/or tftpd download code"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000845 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000846 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000847 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000848 Add support for the PUT command within the TFTP client. This allows
Eric Andersene5642112003-07-14 19:37:08 +0000849 a client to transfer a file to a TFTP server.
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000850 Also enable download support in tftpd, if tftpd is selected.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000851
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000852config FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100853 bool "Enable 'blksize' and 'tsize' protocol options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200854 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000855 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000856 help
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000857 Allow tftp to specify block size, and tftpd to understand
Magnus Damm8bd0af92009-11-08 18:03:09 +0100858 "blksize" and "tsize" options.
859
860config FEATURE_TFTP_PROGRESS_BAR
861 bool "Enable tftp progress meter"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200862 default y
Magnus Damm8bd0af92009-11-08 18:03:09 +0100863 depends on TFTP && FEATURE_TFTP_BLOCKSIZE
864 help
865 Show progress bar.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000866
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000867config TFTP_DEBUG
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000868 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000869 default n
Denis Vlasenkoae6e1352008-11-22 18:41:41 +0000870 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000871 help
Denys Vlasenkobcbd37d2009-06-18 13:23:58 +0200872 Make tftp[d] print debugging messages on stderr.
873 This is useful if you are diagnosing a bug in tftp[d].
Eric Andersenc9f20d92002-12-05 08:41:41 +0000874
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000875config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000876 bool "traceroute"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200877 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100878 select PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000879 help
Denys Vlasenkobcbd37d2009-06-18 13:23:58 +0200880 Utility to trace the route of IP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000881
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100882config TRACEROUTE6
883 bool "traceroute6"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200884 default y
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100885 depends on FEATURE_IPV6 && TRACEROUTE
886 help
887 Utility to trace the route of IPv6 packets.
888
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000889config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000890 bool "Enable verbose output"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200891 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000892 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000893 help
Bernhard Reutner-Fischer12aca792009-02-24 10:03:22 +0000894 Add some verbosity to traceroute. This includes among other things
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000895 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000896
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000897config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000898 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000899 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000900 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000901 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000902 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000903 (8 maximum).
904
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000905config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000906 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000907 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000908 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000909 help
Bernhard Reutner-Fischer30e3df32009-02-24 10:05:15 +0000910 Add option -I to use ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000911
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100912config TUNCTL
913 bool "tunctl"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200914 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100915 select PLATFORM_LINUX
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100916 help
917 tunctl creates or deletes tun devices.
918
919config FEATURE_TUNCTL_UG
920 bool "Support owner:group assignment"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200921 default y
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100922 depends on TUNCTL
923 help
924 Allow to specify owner and group of newly created interface.
925 340 bytes of pure bloat. Say no here.
926
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000927source networking/udhcp/Config.in
928
Wade Berrier142c5cb2008-11-14 21:18:45 +0000929config IFUPDOWN_UDHCPC_CMD_OPTIONS
930 string "ifup udhcpc command line options"
931 default "-R -n"
Denys Vlasenko4662de02009-12-11 02:21:10 +0100932 depends on IFUPDOWN && UDHCPC
Wade Berrier142c5cb2008-11-14 21:18:45 +0000933 help
934 Command line options to pass to udhcpc from ifup.
935 Intended to alter options not available in /etc/network/interfaces.
936 (IE: --syslog --background etc...)
937
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100938config UDPSVD
939 bool "udpsvd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200940 default y
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100941 help
942 udpsvd listens on an UDP port and runs a program for each new
943 connection.
944
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000945config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000946 bool "vconfig"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200947 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100948 select PLATFORM_LINUX
Eric Andersen853c4942003-01-23 05:59:32 +0000949 help
950 Creates, removes, and configures VLAN interfaces
951
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000952config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000953 bool "wget"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200954 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000955 help
Pierre Carriere0a60042012-06-17 19:59:53 +0200956 wget is a utility for non-interactive download of files from HTTP
957 and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000958
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000959config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000960 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000961 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000962 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000963 help
Eric Andersene5642112003-07-14 19:37:08 +0000964 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000965
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000966config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000967 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000968 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000969 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000970 help
Eric Andersene5642112003-07-14 19:37:08 +0000971 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000972
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000973config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000974 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200975 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200976 depends on WGET && LONG_OPTS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000977 help
978 Support long options for the wget applet.
979
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200980config FEATURE_WGET_TIMEOUT
Lauri Kasanend074b412013-10-12 21:47:07 +0200981 bool "Enable timeout option -T SEC"
Denys Vlasenko64f2ba22010-08-08 02:59:06 +0200982 default y
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200983 depends on WGET
984 help
Lauri Kasanend074b412013-10-12 21:47:07 +0200985 Supports network read and connect timeouts for wget,
986 so that wget will give up and timeout, through the -T
987 command line option.
988
989 Currently only connect and network data read timeout are
990 supported (i.e., timeout is not applied to the DNS query). When
991 FEATURE_WGET_LONG_OPTIONS is also enabled, the --timeout option
992 will work in addition to -T.
Bradley M. Kuhnc97131c2010-08-08 02:51:20 +0200993
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000994config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +0000995 bool "zcip"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200996 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100997 select PLATFORM_LINUX
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000998 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +0000999 help
1000 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
1001 It's a daemon that allocates and defends a dynamically assigned
1002 address on the 169.254/16 network, requiring no system administrator.
1003
1004 See http://www.zeroconf.org for further details, and "zcip.script"
1005 in the busybox examples.
1006
Eric Andersenc9f20d92002-12-05 08:41:41 +00001007endmenu