blob: 8604c53e9ba2a31d0a8ec69787614a1fadefcd56 [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
Jeremie Koenig1d7266d2010-07-19 00:44:56 +020054 depends on 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
Jeremie Koenig1d7266d2010-07-19 00:44:56 +020061 depends on 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
Jeremie Koenig1d7266d2010-07-19 00:44:56 +020068 depends on 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
85 bool "Support show, showmac and showstp"
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:
90 showmacs, showstp, show
91
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
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200101 depends on 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.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000202
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000203config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000204 bool "Support MD5 crypted passwords for http Authentication"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200205 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000206 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000207 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000208 Enables basic per URL authentication from /etc/httpd.conf
Eric Andersenf3a02bb2003-07-28 08:31:56 +0000209 using md5 passwords.
Eric Andersen35e643b2003-07-28 07:40:39 +0000210
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000211config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000212 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000213 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000214 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000215 help
216 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000217 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000218
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000219config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000220 bool "Support for running scripts through an interpreter"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200221 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000222 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000223 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000224 This option enables support for running scripts through an
225 interpreter. Turn this on if you want PHP scripts to work
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000226 properly. You need to supply an additional line in your httpd
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000227 config file:
228 *.php:/path/to/your/php
229
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000230config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000231 bool "Set REMOTE_PORT environment variable for CGI"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200232 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000233 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000234 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000235 Use of this option can assist scripts in generating
236 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000237
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000238config FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000239 bool "Enable -e option (useful for CGIs written as shell scripts)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000240 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000241 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000242 help
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000243 This option allows html encoding of arbitrary strings for display
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000244 by the browser. Output goes to stdout.
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000245 For example, httpd -e "<Hello World>" produces
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000246 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000247
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000248config FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000249 bool "Support for custom error pages"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200250 default y
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000251 depends on HTTPD
252 help
253 This option allows you to define custom error pages in
254 the configuration file instead of the default HTTP status
255 error pages. For instance, if you add the line:
256 E404:/path/e404.html
257 in the config file, the server will respond the specified
258 '/path/e404.html' file instead of the terse '404 NOT FOUND'
259 message.
260
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000261config FEATURE_HTTPD_PROXY
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000262 bool "Support for reverse proxy"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200263 default y
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000264 depends on HTTPD
265 help
266 This option allows you to define URLs that will be forwarded
267 to another HTTP server. To setup add the following line to the
268 configuration file
269 P:/url/:http://hostname[:port]/new/path/
270 Then a request to /url/myfile will be forwarded to
271 http://hostname[:port]/new/path/myfile.
272
Peter Korsgaard7a2ba322010-07-25 03:20:53 +0200273config FEATURE_HTTPD_GZIP
274 bool "Support for GZIP content encoding"
275 default y
276 depends on HTTPD
277 help
278 Makes httpd send files using GZIP content encoding if the
279 client supports it and a pre-compressed <file>.gz exists.
280
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000281config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000282 bool "ifconfig"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200283 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200284 depends on PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000285 help
Eric Andersene5642112003-07-14 19:37:08 +0000286 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000287
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000288config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000289 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000290 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000291 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000292 help
Eric Andersene5642112003-07-14 19:37:08 +0000293 If ifconfig is called with no arguments it will display the status
294 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000295
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000296config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000297 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200298 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000299 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000300 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000301 Allow "keepalive" and "outfill" support for SLIP. If you're not
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000302 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000303
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000304config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000305 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
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
Eric Andersene5642112003-07-14 19:37:08 +0000309 Allow the start address for shared memory, start address for I/O,
310 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000311
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000312config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000313 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000314 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 Set the hardware address of this interface, if the device driver
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000318 supports this operation. Currently, we only support the 'ether'
Eric Andersene5642112003-07-14 19:37:08 +0000319 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000320
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000321config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000322 bool "Set the broadcast automatically"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200323 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000324 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000325 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000326 Setting this will make ifconfig attempt to find the broadcast
327 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000328
Denis Vlasenko06aed432008-02-26 18:25:24 +0000329config IFENSLAVE
330 bool "ifenslave"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200331 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200332 depends on PLATFORM_LINUX
Denis Vlasenko06aed432008-02-26 18:25:24 +0000333 help
334 Userspace application to bind several interfaces
335 to a logical interface (use with kernel bonding driver).
336
Denis Vlasenko71c16572009-04-26 01:08:51 +0000337config IFPLUGD
338 bool "ifplugd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200339 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200340 depends on PLATFORM_LINUX
Denis Vlasenko71c16572009-04-26 01:08:51 +0000341 help
342 Network interface plug detection daemon.
343
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000344config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000345 bool "ifupdown"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200346 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000347 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000348 Activate or deactivate the specified interfaces. This applet makes
Eric Andersen342aea92003-07-26 09:27:02 +0000349 use of either "ifconfig" and "route" or the "ip" command to actually
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000350 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000351 to enable either IFCONFIG and ROUTE, or enable
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000352 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000353 course you could use non-busybox versions of these programs, so
354 against my better judgement (since this will surely result in plenty
355 of support questions on the mailing list), I do not force you to
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000356 enable these additional options. It is up to you to supply either
Bernhard Reutner-Fischer6111a8f2007-03-19 20:28:03 +0000357 "ifconfig", "route" and "run-parts" or the "ip" command, either
Bernhard Reutner-Fischer0864f4d2007-03-28 16:46:03 +0000358 via busybox or via standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000359
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000360config IFUPDOWN_IFSTATE_PATH
361 string "Absolute path to ifstate file"
362 default "/var/run/ifstate"
Bernhard Reutner-Fischerfc202422007-09-02 22:12:07 +0000363 depends on IFUPDOWN
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000364 help
365 ifupdown keeps state information in a file called ifstate.
366 Typically it is located in /var/run/ifstate, however
367 some distributions tend to put it in other places
368 (debian, for example, uses /etc/network/run/ifstate).
369 This config option defines location of ifstate.
370
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000371config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000372 bool "Use ip applet"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200373 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000374 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000375 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000376 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
377 than the default of using the older 'ifconfig' and 'route' utilities.
378
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000379config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000380 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000381 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200382 depends on FEATURE_IFUPDOWN_IP && PLATFORM_LINUX
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000383 select IP
384 select FEATURE_IP_ADDRESS
385 select FEATURE_IP_LINK
386 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000387 help
388 Use the busybox iproute "ip" applet to implement "ifupdown".
389
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000390 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000391 utility or the "ifup" and "ifdown" applets will not work.
392
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000393config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000394 bool "Use busybox ifconfig and route applets"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200395 default n
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000396 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000397 select IFCONFIG
398 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000399 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000400 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000401 implement the "ifup" and "ifdown" utilities.
402
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000403 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000404 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000405 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000406
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000407config FEATURE_IFUPDOWN_IPV4
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000408 bool "Support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000409 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000410 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000411 help
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000412 If you want ifup/ifdown to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000413
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000414config FEATURE_IFUPDOWN_IPV6
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000415 bool "Support for IPv6"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200416 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000417 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000418 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000419 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000420
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000421### UNUSED
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000422###config FEATURE_IFUPDOWN_IPX
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000423### bool "Support for IPX"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200424### default y
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000425### depends on IFUPDOWN
426### help
427### If this option is selected you can use busybox to work with IPX
428### networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000429
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000430config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000431 bool "Enable mapping support"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200432 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000433 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000434 help
435 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000436 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000437
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000438config FEATURE_IFUPDOWN_EXTERNAL_DHCP
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000439 bool "Support for external dhcp clients"
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000440 default n
441 depends on IFUPDOWN
442 help
443 This enables support for the external dhcp clients. Clients are
444 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
445 Otherwise, if udhcpc applet is enabled, it is used.
446 Otherwise, ifup/ifdown will have no support for DHCP.
447
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000449 bool "inetd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200450 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000451 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000452 help
453 Internet superserver daemon
454
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000455config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000456 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000457 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000458 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000459 help
460 Echo received data internal inetd service
461
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000462config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000463 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000464 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000465 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000466 help
467 Internet /dev/null internal inetd service
468
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000469config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000470 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000471 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000472 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000473 help
474 Return 32 bit time since 1900 internal inetd service
475
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000476config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000477 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000478 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000479 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000480 help
481 Return human-readable time internal inetd service
482
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000483config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000484 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000485 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000486 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000487 help
488 Familiar character generator internal inetd service
489
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000490config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000491 bool "Support RPC services"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200492 default y
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000493 depends on INETD
494 select FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000495 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000496 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000497
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000498config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000499 bool "ip"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200500 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200501 depends on PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000502 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000503 The "ip" applet is a TCP/IP interface configuration and routing
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000504 utility. You generally don't need "ip" to use busybox with
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000505 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000506
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000507config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000508 bool "ip address"
509 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000510 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000511 help
512 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000513
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000514config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000515 bool "ip link"
516 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000517 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000518 help
519 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000520
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000521config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000522 bool "ip route"
523 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000524 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000525 help
526 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000527
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000528config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000529 bool "ip tunnel"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200530 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000531 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000532 help
533 Add support for tunneling commands to "ip".
534
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000535config FEATURE_IP_RULE
536 bool "ip rule"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200537 default y
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000538 depends on IP
539 help
540 Add support for rule commands to "ip".
541
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000542config FEATURE_IP_SHORT_FORMS
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000543 bool "Support short forms of ip commands"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200544 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000545 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000546 help
547 Also support short-form of ip <OBJECT> commands:
548 ip addr -> ipaddr
549 ip link -> iplink
550 ip route -> iproute
551 ip tunnel -> iptunnel
Bernhard Reutner-Fischer7a7e54a2007-02-02 16:06:02 +0000552 ip rule -> iprule
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000553
554 Say N unless you desparately need the short form of the ip
555 object commands.
556
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000557config FEATURE_IP_RARE_PROTOCOLS
Bernhard Reutner-Fischer1641d612007-10-29 21:21:27 +0000558 bool "Support displaying rarely used link types"
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000559 default n
560 depends on IP
561 help
562 If you are not going to use links of type "frad", "econet",
563 "bif" etc, you probably don't need to enable this.
564 Ethernet, wireless, infrared, ppp/slip, ip tunnelling
565 link types are supported without this option selected.
566
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000567config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000568 bool
569 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000570 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000571
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000572config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000573 bool
574 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000575 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000576
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000577config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000578 bool
579 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000580 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000581
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000582config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000583 bool
584 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000585 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000586
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000587config IPRULE
588 bool
589 default y
590 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
591
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000592config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000593 bool "ipcalc"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200594 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000595 help
Eric Andersene5642112003-07-14 19:37:08 +0000596 ipcalc takes an IP address and netmask and calculates the
597 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000598
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000599config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000600 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000601 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000602 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000603 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000604 Adds the options hostname, prefix and silent to the output of
605 "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000606
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000607config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000608 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200609 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200610 depends on IPCALC && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000611 help
612 Support long options for the ipcalc applet.
613
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000614config NAMEIF
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000615 bool "nameif"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200616 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200617 depends on PLATFORM_LINUX
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000618 select FEATURE_SYSLOG
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000619 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000620 nameif is used to rename network interface by its MAC address.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000621 Renamed interfaces MUST be in the down state.
Eric Andersen88c916b2003-10-22 09:58:56 +0000622 It is possible to use a file (default: /etc/mactab)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000623 with list of new interface names and MACs.
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000624 Maximum interface name length: IFNAMSIZ = 16
Eric Andersen88c916b2003-10-22 09:58:56 +0000625 File fields are separated by space or tab.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000626 File format:
627 # Comment
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000628 new_interface_name XX:XX:XX:XX:XX:XX
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000629
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000630config FEATURE_NAMEIF_EXTENDED
631 bool "Extended nameif"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200632 default y
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000633 depends on NAMEIF
634 help
635 This extends the nameif syntax to support the bus_info and driver
636 checks. The syntax is compatible to the normal nameif.
637 File format:
638 new_interface_name driver=asix bus=usb-0000:00:08.2-3
639 new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
640 new_interface_name mac=00:80:C8:38:91:B5
641 new_interface_name 00:80:C8:38:91:B5
642
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000643config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000644 bool "netstat"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200645 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200646 depends on PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000647 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000648 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000649
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000650config FEATURE_NETSTAT_WIDE
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000651 bool "Enable wide netstat output"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200652 default y
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000653 depends on NETSTAT
654 help
655 Add support for wide columns. Useful when displaying IPv6 addresses
656 (-W option).
657
Denis Vlasenko6e69e422008-07-27 12:10:07 +0000658config FEATURE_NETSTAT_PRG
659 bool "Enable PID/Program name output"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200660 default y
Denis Vlasenko6e69e422008-07-27 12:10:07 +0000661 depends on NETSTAT
662 help
663 Add support for -p flag to print out PID and program name.
664 +700 bytes of code.
665
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000666config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000667 bool "nslookup"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200668 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000669 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000670 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000671
Adam Tkacb1585062009-11-22 03:43:55 +0100672config NTPD
673 bool "ntpd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200674 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200675 depends on PLATFORM_LINUX
Adam Tkacb1585062009-11-22 03:43:55 +0100676 help
677 The NTP client/server daemon.
678
679config FEATURE_NTPD_SERVER
Denys Vlasenko345e0932010-03-31 16:03:56 +0200680 bool "Make ntpd usable as a NTP server"
681 default y
682 depends on NTPD
683 help
Denys Vlasenko60b95242010-01-14 01:11:54 +0100684 Make ntpd usable as a NTP server. If you disable this option
Adam Tkacb1585062009-11-22 03:43:55 +0100685 ntpd will be usable only as a NTP client.
686
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000687config PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000688 bool "ping"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200689 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200690 depends on PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000691 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000692 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
Eric Andersene5642112003-07-14 19:37:08 +0000693 elicit an ICMP ECHO_RESPONSE from a host or gateway.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000694
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000695config PING6
696 bool "ping6"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200697 default y
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000698 depends on FEATURE_IPV6 && PING
699 help
700 This will give you a ping that can talk IPv6.
701
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000702config FEATURE_FANCY_PING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000703 bool "Enable fancy ping output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000704 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000705 depends on PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000706 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000707 Make the output from the ping applet include statistics, and at the
708 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000709
Paul Fox0b2b5842008-02-01 23:25:32 +0000710config PSCAN
711 bool "pscan"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200712 default y
Paul Fox0b2b5842008-02-01 23:25:32 +0000713 help
714 Simple network port scanner.
715
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000716config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000717 bool "route"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200718 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200719 depends on PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000720 help
Eric Andersene5642112003-07-14 19:37:08 +0000721 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000722
Denis Vlasenko14923db2007-06-20 15:23:03 +0000723config SLATTACH
724 bool "slattach"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200725 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200726 depends on PLATFORM_LINUX
Denis Vlasenko14923db2007-06-20 15:23:03 +0000727 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000728 slattach is a small utility to attach network interfaces to serial
729 lines.
Denis Vlasenko14923db2007-06-20 15:23:03 +0000730
Bernhard Reutner-Fischer0901c512008-09-04 13:22:58 +0000731#config TC
732# bool "tc"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200733# default y
Bernhard Reutner-Fischer0901c512008-09-04 13:22:58 +0000734# help
735# show / manipulate traffic control settings
736#
737#config FEATURE_TC_INGRESS
738# def_bool n
739# depends on TC
740
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100741config TCPSVD
742 bool "tcpsvd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200743 default y
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100744 help
745 tcpsvd listens on a TCP port and runs a program for each new
746 connection.
747
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000748config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000749 bool "telnet"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200750 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000751 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000752 Telnet is an interface to the TELNET protocol, but is also commonly
753 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000754
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000755config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000756 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000757 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000758 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000759 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000760 Setting this option will forward the TERM environment variable to the
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000761 remote host you are connecting to. This is useful to make sure that
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000762 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000763
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000764config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000765 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000766 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000767 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000768 help
769 Setting this option will forward the USER environment variable to the
770 remote host you are connecting to. This is useful when you need to
771 log into a machine without telling the username (autologin). This
772 option enables `-a' and `-l USER' arguments.
773
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000774config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000775 bool "telnetd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200776 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000777 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000778 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000779 A daemon for the TELNET protocol, allowing you to log onto the host
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000780 running the daemon. Please keep in mind that the TELNET protocol
781 sends passwords in plain text. If you can't afford the space for an
782 SSH daemon and you trust your network, you may say 'y' here. As a
Eric Andersen31ec93e2004-09-23 20:08:46 +0000783 more secure alternative, you should seriously consider installing the
784 very small Dropbear SSH daemon instead:
785 http://matt.ucc.asn.au/dropbear/dropbear.html
786
787 Note that for busybox telnetd to work you need several things:
788 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000789 UNIX98_PTYS=y
790 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000791
792 Next, you need a /dev/pts directory on your root filesystem:
793
794 $ ls -ld /dev/pts
795 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
796
797 Next you need the pseudo terminal master multiplexer /dev/ptmx:
798
799 $ ls -la /dev/ptmx
800 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
801
802 Any /dev/ttyp[0-9]* files you may have can be removed.
803 Next, you need to mount the devpts filesystem on /dev/pts using:
804
805 mount -t devpts devpts /dev/pts
806
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000807 You need to be sure that Busybox has LOGIN and
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000808 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000809 certain that Busybox has been installed setuid root:
810
811 chown root.root /bin/busybox
812 chmod 4755 /bin/busybox
813
814 with all that done, telnetd _should_ work....
815
Eric Andersenc9f20d92002-12-05 08:41:41 +0000816
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000817config FEATURE_TELNETD_STANDALONE
818 bool "Support standalone telnetd (not inetd only)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200819 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000820 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000821 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000822 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000823
Denys Vlasenkoed1667e2009-09-04 02:21:13 +0200824config FEATURE_TELNETD_INETD_WAIT
825 bool "Support -w SEC option (inetd wait mode)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200826 default y
Denys Vlasenkoed1667e2009-09-04 02:21:13 +0200827 depends on FEATURE_TELNETD_STANDALONE
828 help
829 This option allows you to run telnetd in "inet wait" mode.
830 Example inetd.conf line (note "wait", not usual "nowait"):
831
832 telnet stream tcp wait root /bin/telnetd telnetd -w10
833
834 In this example, inetd passes _listening_ socket_ as fd 0
835 to telnetd when connection appears.
836 telnetd will wait for connections until all existing
837 connections are closed, and no new connections
838 appear during 10 seconds. Then it exits, and inetd continues
839 to listen for new connections.
840
841 This option is rarely used. "tcp nowait" is much more usual
842 way of running tcp services, including telnetd.
843 You most probably want to say N here.
844
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000845config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000846 bool "tftp"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200847 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000848 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000849 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000850 is usually used for simple, small transfers such as a root image
851 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000852
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000853config TFTPD
854 bool "tftpd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200855 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000856 help
857 This enables the Trivial File Transfer Protocol server program.
858 It expects that stdin is a datagram socket and a packet
859 is already pending on it. It will exit after one transfer.
860 In other words: it should be run from inetd in nowait mode,
861 or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
862
Denys Vlasenko0cc25942010-06-17 23:48:59 +0200863comment "Common options for tftp/tftpd"
864 depends on TFTP || TFTPD
865
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000866config FEATURE_TFTP_GET
Denys Vlasenkocbcc1232010-03-05 23:38:54 +0100867 bool "Enable 'tftp get' and/or tftpd upload code"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000868 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000869 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000870 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000871 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000872 a client to retrieve a file from a TFTP server.
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000873 Also enable upload support in tftpd, if tftpd is selected.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000874
Denys Vlasenkocbcc1232010-03-05 23:38:54 +0100875 Note: this option does _not_ make tftpd capable of download
876 (the usual operation people need from it)!
877
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000878config FEATURE_TFTP_PUT
Denys Vlasenkocbcc1232010-03-05 23:38:54 +0100879 bool "Enable 'tftp put' and/or tftpd download code"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000880 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000881 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000882 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000883 Add support for the PUT command within the TFTP client. This allows
Eric Andersene5642112003-07-14 19:37:08 +0000884 a client to transfer a file to a TFTP server.
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000885 Also enable download support in tftpd, if tftpd is selected.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000886
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000887config FEATURE_TFTP_BLOCKSIZE
Magnus Damm8bd0af92009-11-08 18:03:09 +0100888 bool "Enable 'blksize' and 'tsize' protocol options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200889 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000890 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000891 help
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000892 Allow tftp to specify block size, and tftpd to understand
Magnus Damm8bd0af92009-11-08 18:03:09 +0100893 "blksize" and "tsize" options.
894
895config FEATURE_TFTP_PROGRESS_BAR
896 bool "Enable tftp progress meter"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200897 default y
Magnus Damm8bd0af92009-11-08 18:03:09 +0100898 depends on TFTP && FEATURE_TFTP_BLOCKSIZE
899 help
900 Show progress bar.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000901
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000902config TFTP_DEBUG
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000903 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000904 default n
Denis Vlasenkoae6e1352008-11-22 18:41:41 +0000905 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000906 help
Denys Vlasenkobcbd37d2009-06-18 13:23:58 +0200907 Make tftp[d] print debugging messages on stderr.
908 This is useful if you are diagnosing a bug in tftp[d].
Eric Andersenc9f20d92002-12-05 08:41:41 +0000909
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000910config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000911 bool "traceroute"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200912 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200913 depends on PLATFORM_LINUX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000914 help
Denys Vlasenkobcbd37d2009-06-18 13:23:58 +0200915 Utility to trace the route of IP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000916
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100917config TRACEROUTE6
918 bool "traceroute6"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200919 default y
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100920 depends on FEATURE_IPV6 && TRACEROUTE
921 help
922 Utility to trace the route of IPv6 packets.
923
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000924config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000925 bool "Enable verbose output"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200926 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000927 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000928 help
Bernhard Reutner-Fischer12aca792009-02-24 10:03:22 +0000929 Add some verbosity to traceroute. This includes among other things
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000930 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000931
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000932config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000933 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000934 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000935 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000936 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000937 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000938 (8 maximum).
939
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000940config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000941 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000942 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000943 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000944 help
Bernhard Reutner-Fischer30e3df32009-02-24 10:05:15 +0000945 Add option -I to use ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000946
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100947config TUNCTL
948 bool "tunctl"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200949 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200950 depends on PLATFORM_LINUX
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100951 help
952 tunctl creates or deletes tun devices.
953
954config FEATURE_TUNCTL_UG
955 bool "Support owner:group assignment"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200956 default y
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100957 depends on TUNCTL
958 help
959 Allow to specify owner and group of newly created interface.
960 340 bytes of pure bloat. Say no here.
961
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000962source networking/udhcp/Config.in
963
Wade Berrier142c5cb2008-11-14 21:18:45 +0000964config IFUPDOWN_UDHCPC_CMD_OPTIONS
965 string "ifup udhcpc command line options"
966 default "-R -n"
Denys Vlasenko4662de02009-12-11 02:21:10 +0100967 depends on IFUPDOWN && UDHCPC
Wade Berrier142c5cb2008-11-14 21:18:45 +0000968 help
969 Command line options to pass to udhcpc from ifup.
970 Intended to alter options not available in /etc/network/interfaces.
971 (IE: --syslog --background etc...)
972
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100973config UDPSVD
974 bool "udpsvd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200975 default y
Bernhard Reutner-Fischer45cec1e2010-02-26 19:33:49 +0100976 help
977 udpsvd listens on an UDP port and runs a program for each new
978 connection.
979
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000980config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000981 bool "vconfig"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200982 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +0200983 depends on PLATFORM_LINUX
Eric Andersen853c4942003-01-23 05:59:32 +0000984 help
985 Creates, removes, and configures VLAN interfaces
986
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000987config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000988 bool "wget"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200989 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000990 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000991 wget is a utility for non-interactive download of files from HTTP,
Eric Andersene5642112003-07-14 19:37:08 +0000992 HTTPS, and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000993
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000994config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000995 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000996 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000997 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000998 help
Eric Andersene5642112003-07-14 19:37:08 +0000999 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +00001000
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001001config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +00001002 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +00001003 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001004 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +00001005 help
Eric Andersene5642112003-07-14 19:37:08 +00001006 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +00001007
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001008config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +00001009 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +02001010 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +02001011 depends on WGET && LONG_OPTS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +00001012 help
1013 Support long options for the wget applet.
1014
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001015config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +00001016 bool "zcip"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +02001017 default y
Jeremie Koenig1d7266d2010-07-19 00:44:56 +02001018 depends on PLATFORM_LINUX
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00001019 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +00001020 help
1021 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
1022 It's a daemon that allocates and defends a dynamically assigned
1023 address on the 169.254/16 network, requiring no system administrator.
1024
1025 See http://www.zeroconf.org for further details, and "zcip.script"
1026 in the busybox examples.
1027
Eric Andersenc9f20d92002-12-05 08:41:41 +00001028endmenu