blob: 00a07b4790b0571f30d1e4c727c312d973ffa751 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Networking Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "Enable IPv6 support"
10 default n
11 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000012 Enable IPv6 support in busybox.
13 This adds IPv6 support in the networking applets.
Eric Andersenc9f20d92002-12-05 08:41:41 +000014
Denis Vlasenko9d6c4692007-11-14 10:18:33 +000015config FEATURE_PREFER_IPV4_ADDRESS
16 bool "Preferentially use IPv4 addresses from DNS queries"
17 default y
18 depends on FEATURE_IPV6
19 help
20 Use IPv4 address of network host if it has one.
21
22 If this option is off, the first returned address will be used.
23 This may cause problems when your DNS server is IPv6-capable and
24 is returning IPv6 host addresses too. If IPv6 address
25 precedes IPv4 one in DNS reply, busybox network applets
26 (e.g. wget) will use IPv6 address. On an IPv6-incapable host
27 or network applets will fail to connect to the host
28 using IPv6 address.
29
Denis Vlasenko5de9e9c2007-01-22 22:46:04 +000030config VERBOSE_RESOLUTION_ERRORS
31 bool "Verbose resolution errors"
32 default n
33 help
34 Enable if you are not satisfied with simplistic
35 "can't resolve 'hostname.com'" and want to know more.
36 This may increase size of your executable a bit.
37
Denis Vlasenkofa85b862007-01-07 01:24:12 +000038config ARP
39 bool "arp"
40 default n
41 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000042 Manipulate the system ARP cache.
Denis Vlasenkofa85b862007-01-07 01:24:12 +000043
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000044config ARPING
Glenn L McGrath9e598412003-01-09 10:06:01 +000045 bool "arping"
46 default n
47 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +000048 Ping hosts by ARP packets.
Glenn L McGrath9e598412003-01-09 10:06:01 +000049
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000050config BRCTL
51 bool "brctl"
52 default n
53 help
54 Manage ethernet bridges.
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000055 Supports addbr/delbr and addif/delif.
56
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000057config FEATURE_BRCTL_FANCY
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +000058 bool "Fancy options"
Bernhard Reutner-Fischer1aac3ab2008-01-13 18:43:50 +000059 default n
60 depends on BRCTL
61 help
62 Add support for extended option like:
63 setageing, setfd, sethello, setmaxage,
64 setpathcost, setportprio, setbridgeprio,
65 stp
Bernhard Reutner-Fischer2b11fb42008-01-14 16:10:11 +000066 This adds about 600 bytes.
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000067
Denis Vlasenko278a1c22008-04-06 07:17:02 +000068config FEATURE_BRCTL_SHOW
69 bool "Support show, showmac and showstp"
70 default n
71 depends on BRCTL && FEATURE_BRCTL_FANCY
72 help
73 Add support for option which prints the current config:
74 showmacs, showstp, show
75
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000076config DNSD
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000077 bool "dnsd"
78 default n
79 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000080 Small and static DNS server daemon.
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000081
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000082config ETHER_WAKE
Mike Frysingerb662f0d2005-05-11 03:59:53 +000083 bool "ether-wake"
84 default n
85 help
86 Send a magic packet to wake up sleeping machines.
87
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000088config FAKEIDENTD
Mike Frysingerfa69f112005-04-17 07:24:19 +000089 bool "fakeidentd"
90 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000091 select FEATURE_SYSLOG
Mike Frysingerfa69f112005-04-17 07:24:19 +000092 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000093 fakeidentd listens on the ident port and returns a predefined
94 fake value on any query.
Mike Frysingerfa69f112005-04-17 07:24:19 +000095
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000096config FTPGET
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000097 bool "ftpget"
98 default n
99 help
100 Retrieve a remote file via FTP.
101
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000102config FTPPUT
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000103 bool "ftpput"
104 default n
105 help
106 Store a remote file via FTP.
107
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000108config FEATURE_FTPGETPUT_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000109 bool "Enable long options in ftpget/ftpput"
110 default n
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000111 depends on GETOPT_LONG && (FTPGET || FTPPUT)
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000112 help
113 Support long options for the ftpget/ftpput applet.
114
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000115config HOSTNAME
Eric Andersenc9f20d92002-12-05 08:41:41 +0000116 bool "hostname"
117 default n
118 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000119 Show or set the system's host name.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000120
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000121config HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000122 bool "httpd"
123 default n
124 help
125 Serve web pages via an HTTP server.
126
Denis Vlasenkof4310172007-09-21 22:35:18 +0000127config FEATURE_HTTPD_RANGES
128 bool "Support 'Ranges:' header"
129 default n
130 depends on HTTPD
131 help
132 Makes httpd emit "Accept-Ranges: bytes" header and understand
133 "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
134 downloads, seeking in multimedia players etc.
135
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000136config FEATURE_HTTPD_USE_SENDFILE
137 bool "Use sendfile system call"
138 default n
139 depends on HTTPD
140 help
141 When enabled, httpd will use the kernel sendfile() function
142 instead of read/write loop.
143
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000144config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000145 bool "Support reloading of global config file on HUP signal"
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000146 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000147 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000148 help
149 This option enables processing of SIGHUP to reload cached
150 configuration settings.
151
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000152config FEATURE_HTTPD_SETUID
Denis Vlasenkodb506472006-12-17 20:18:05 +0000153 bool "Enable -u <user> option"
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000154 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000155 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000156 help
157 This option allows the server to run as a specific user
158 rather than defaulting to the user that starts the server.
159 Use of this option requires special privileges to change to a
160 different user.
161
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000162config FEATURE_HTTPD_BASIC_AUTH
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000163 bool "Enable Basic http Authentication"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000164 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000165 depends on HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000166 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000167 Utilizes password settings from /etc/httpd.conf for basic
168 authentication on a per url basis.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000169
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000170config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000171 bool "Support MD5 crypted passwords for http Authentication"
Eric Andersen35e643b2003-07-28 07:40:39 +0000172 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000173 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000174 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000175 Enables basic per URL authentication from /etc/httpd.conf
Eric Andersenf3a02bb2003-07-28 08:31:56 +0000176 using md5 passwords.
Eric Andersen35e643b2003-07-28 07:40:39 +0000177
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000178config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000179 bool "Support loading additional MIME types at run-time"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000180 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000181 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000182 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000183 This option enables support for additional MIME types at
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000184 run-time to be specified in the configuration file.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000185
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000186config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000187 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000188 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000189 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000190 help
191 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000192 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000193
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000194config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000195 bool "Support for running scripts through an interpreter"
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000196 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000197 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000198 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000199 This option enables support for running scripts through an
200 interpreter. Turn this on if you want PHP scripts to work
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000201 properly. You need to supply an additional line in your httpd
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000202 config file:
203 *.php:/path/to/your/php
204
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000205config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000206 bool "Set REMOTE_PORT environment variable for CGI"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000207 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000208 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000209 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000210 Use of this option can assist scripts in generating
211 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000212
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000213config FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000214 bool "Enable -e option (useful for CGIs written as shell scripts)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000215 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000216 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000217 help
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000218 This option allows html encoding of arbitrary strings for display
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000219 by the browser. Output goes to stdout.
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000220 For example, httpd -e "<Hello World>" produces
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000221 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000222
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000223config FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000224 bool "Support for custom error pages"
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000225 default n
226 depends on HTTPD
227 help
228 This option allows you to define custom error pages in
229 the configuration file instead of the default HTTP status
230 error pages. For instance, if you add the line:
231 E404:/path/e404.html
232 in the config file, the server will respond the specified
233 '/path/e404.html' file instead of the terse '404 NOT FOUND'
234 message.
235
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000236config FEATURE_HTTPD_PROXY
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000237 bool "Support for reverse proxy"
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000238 default n
239 depends on HTTPD
240 help
241 This option allows you to define URLs that will be forwarded
242 to another HTTP server. To setup add the following line to the
243 configuration file
244 P:/url/:http://hostname[:port]/new/path/
245 Then a request to /url/myfile will be forwarded to
246 http://hostname[:port]/new/path/myfile.
247
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000248config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000249 bool "ifconfig"
250 default n
251 help
Eric Andersene5642112003-07-14 19:37:08 +0000252 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000253
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000254config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000255 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000256 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000257 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000258 help
Eric Andersene5642112003-07-14 19:37:08 +0000259 If ifconfig is called with no arguments it will display the status
260 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000261
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000262config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000263 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000264 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000265 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000266 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000267 Allow "keepalive" and "outfill" support for SLIP. If you're not
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000268 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000269
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000270config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000271 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000272 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000273 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000274 help
Eric Andersene5642112003-07-14 19:37:08 +0000275 Allow the start address for shared memory, start address for I/O,
276 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000277
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000278config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000279 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000280 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000281 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000282 help
Eric Andersene5642112003-07-14 19:37:08 +0000283 Set the hardware address of this interface, if the device driver
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000284 supports this operation. Currently, we only support the 'ether'
Eric Andersene5642112003-07-14 19:37:08 +0000285 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000286
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000287config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000288 bool "Set the broadcast automatically"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000289 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000290 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000291 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000292 Setting this will make ifconfig attempt to find the broadcast
293 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000294
Denis Vlasenko06aed432008-02-26 18:25:24 +0000295config IFENSLAVE
296 bool "ifenslave"
297 default n
298 help
299 Userspace application to bind several interfaces
300 to a logical interface (use with kernel bonding driver).
301
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000302config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000303 bool "ifupdown"
304 default n
305 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000306 Activate or deactivate the specified interfaces. This applet makes
Eric Andersen342aea92003-07-26 09:27:02 +0000307 use of either "ifconfig" and "route" or the "ip" command to actually
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000308 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000309 to enable either IFCONFIG and ROUTE, or enable
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000310 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000311 course you could use non-busybox versions of these programs, so
312 against my better judgement (since this will surely result in plenty
313 of support questions on the mailing list), I do not force you to
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000314 enable these additional options. It is up to you to supply either
Bernhard Reutner-Fischer6111a8f2007-03-19 20:28:03 +0000315 "ifconfig", "route" and "run-parts" or the "ip" command, either
Bernhard Reutner-Fischer0864f4d2007-03-28 16:46:03 +0000316 via busybox or via standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000317
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000318config IFUPDOWN_IFSTATE_PATH
319 string "Absolute path to ifstate file"
320 default "/var/run/ifstate"
Bernhard Reutner-Fischerfc202422007-09-02 22:12:07 +0000321 depends on IFUPDOWN
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000322 help
323 ifupdown keeps state information in a file called ifstate.
324 Typically it is located in /var/run/ifstate, however
325 some distributions tend to put it in other places
326 (debian, for example, uses /etc/network/run/ifstate).
327 This config option defines location of ifstate.
328
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000329config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000330 bool "Use ip applet"
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000331 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000332 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000333 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000334 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
335 than the default of using the older 'ifconfig' and 'route' utilities.
336
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000337config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000338 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000339 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000340 depends on FEATURE_IFUPDOWN_IP
341 select IP
342 select FEATURE_IP_ADDRESS
343 select FEATURE_IP_LINK
344 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000345 help
346 Use the busybox iproute "ip" applet to implement "ifupdown".
347
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000348 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000349 utility or the "ifup" and "ifdown" applets will not work.
350
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000351config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000352 bool "Use busybox ifconfig and route applets"
Eric Andersenc601ff12003-08-08 23:12:12 +0000353 default y
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000354 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000355 select IFCONFIG
356 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000357 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000358 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000359 implement the "ifup" and "ifdown" utilities.
360
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000361 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000362 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000363 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000364
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000365config FEATURE_IFUPDOWN_IPV4
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000366 bool "Support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000367 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000368 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000369 help
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000370 If you want ifup/ifdown to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000371
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000372config FEATURE_IFUPDOWN_IPV6
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000373 bool "Support for IPv6"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000374 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000375 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000376 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000377 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000378
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000379### UNUSED
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000380###config FEATURE_IFUPDOWN_IPX
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000381### bool "Support for IPX"
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000382### default n
383### depends on IFUPDOWN
384### help
385### If this option is selected you can use busybox to work with IPX
386### networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000387
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000388config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000389 bool "Enable mapping support"
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000390 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000391 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000392 help
393 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000394 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000395
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000396config FEATURE_IFUPDOWN_EXTERNAL_DHCP
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000397 bool "Support for external dhcp clients"
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000398 default n
399 depends on IFUPDOWN
400 help
401 This enables support for the external dhcp clients. Clients are
402 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
403 Otherwise, if udhcpc applet is enabled, it is used.
404 Otherwise, ifup/ifdown will have no support for DHCP.
405
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000406config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000407 bool "inetd"
408 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000409 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000410 help
411 Internet superserver daemon
412
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000413config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000414 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000415 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000416 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000417 help
418 Echo received data internal inetd service
419
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000420config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000421 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000422 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000423 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000424 help
425 Internet /dev/null internal inetd service
426
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000427config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000428 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000429 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000430 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000431 help
432 Return 32 bit time since 1900 internal inetd service
433
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000434config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000435 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000436 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000437 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000438 help
439 Return human-readable time internal inetd service
440
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000441config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000442 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000443 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000444 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000445 help
446 Familiar character generator internal inetd service
447
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000449 bool "Support RPC services"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000450 default n
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000451 depends on INETD
452 select FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000453 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000454 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000455
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000456config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000457 bool "ip"
458 default n
459 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000460 The "ip" applet is a TCP/IP interface configuration and routing
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000461 utility. You generally don't need "ip" to use busybox with
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000462 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000463
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000464config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000465 bool "ip address"
466 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000467 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000468 help
469 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000470
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000471config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000472 bool "ip link"
473 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000474 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000475 help
476 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000477
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000478config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000479 bool "ip route"
480 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000481 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000482 help
483 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000484
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000485config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000486 bool "ip tunnel"
487 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000488 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000489 help
490 Add support for tunneling commands to "ip".
491
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000492config FEATURE_IP_RULE
493 bool "ip rule"
494 default n
495 depends on IP
496 help
497 Add support for rule commands to "ip".
498
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000499config FEATURE_IP_SHORT_FORMS
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000500 bool "Support short forms of ip commands"
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000501 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000502 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000503 help
504 Also support short-form of ip <OBJECT> commands:
505 ip addr -> ipaddr
506 ip link -> iplink
507 ip route -> iproute
508 ip tunnel -> iptunnel
Bernhard Reutner-Fischer7a7e54a2007-02-02 16:06:02 +0000509 ip rule -> iprule
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000510
511 Say N unless you desparately need the short form of the ip
512 object commands.
513
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000514config FEATURE_IP_RARE_PROTOCOLS
Bernhard Reutner-Fischer1641d612007-10-29 21:21:27 +0000515 bool "Support displaying rarely used link types"
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000516 default n
517 depends on IP
518 help
519 If you are not going to use links of type "frad", "econet",
520 "bif" etc, you probably don't need to enable this.
521 Ethernet, wireless, infrared, ppp/slip, ip tunnelling
522 link types are supported without this option selected.
523
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000524config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000525 bool
526 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000527 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000528
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000529config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000530 bool
531 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000532 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000533
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000534config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000535 bool
536 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000537 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000538
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000539config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000540 bool
541 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000542 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000543
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000544config IPRULE
545 bool
546 default y
547 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
548
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000549config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000550 bool "ipcalc"
551 default n
552 help
Eric Andersene5642112003-07-14 19:37:08 +0000553 ipcalc takes an IP address and netmask and calculates the
554 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000555
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000556config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000557 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000558 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000559 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000560 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000561 Adds the options hostname, prefix and silent to the output of
562 "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000563
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000564config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000565 bool "Enable long options"
566 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000567 depends on IPCALC && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000568 help
569 Support long options for the ipcalc applet.
570
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000571config NAMEIF
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000572 bool "nameif"
573 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000574 select FEATURE_SYSLOG
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000575 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000576 nameif is used to rename network interface by its MAC address.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000577 Renamed interfaces MUST be in the down state.
Eric Andersen88c916b2003-10-22 09:58:56 +0000578 It is possible to use a file (default: /etc/mactab)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000579 with list of new interface names and MACs.
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000580 Maximum interface name length: IFNAMSIZ = 16
Eric Andersen88c916b2003-10-22 09:58:56 +0000581 File fields are separated by space or tab.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000582 File format:
583 # Comment
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000584 new_interface_name XX:XX:XX:XX:XX:XX
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000585
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000586config FEATURE_NAMEIF_EXTENDED
587 bool "Extended nameif"
588 default n
589 depends on NAMEIF
590 help
591 This extends the nameif syntax to support the bus_info and driver
592 checks. The syntax is compatible to the normal nameif.
593 File format:
594 new_interface_name driver=asix bus=usb-0000:00:08.2-3
595 new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
596 new_interface_name mac=00:80:C8:38:91:B5
597 new_interface_name 00:80:C8:38:91:B5
598
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000599config NC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000600 bool "nc"
601 default n
602 help
Eric Andersene5642112003-07-14 19:37:08 +0000603 A simple Unix utility which reads and writes data across network
604 connections.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000605
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000606config NC_SERVER
Denis Vlasenko29fe7262007-04-05 20:26:28 +0000607 bool "Netcat server options (-l)"
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000608 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000609 depends on NC
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000610 help
Rob Landley1cca9482006-07-10 19:45:20 +0000611 Allow netcat to act as a server.
612
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000613config NC_EXTRA
Rob Landley1cca9482006-07-10 19:45:20 +0000614 bool "Netcat extensions (-eiw and filename)"
615 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000616 depends on NC
Rob Landley1cca9482006-07-10 19:45:20 +0000617 help
618 Add -e (support for executing the rest of the command line after
619 making or receiving a successful connection), -i (delay interval for
620 lines sent), -w (timeout for initial connection).
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000621
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000622config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000623 bool "netstat"
624 default n
625 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000626 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000627
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000628config FEATURE_NETSTAT_WIDE
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000629 bool "Enable wide netstat output"
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000630 default n
631 depends on NETSTAT
632 help
633 Add support for wide columns. Useful when displaying IPv6 addresses
634 (-W option).
635
Denis Vlasenko6e69e422008-07-27 12:10:07 +0000636config FEATURE_NETSTAT_PRG
637 bool "Enable PID/Program name output"
638 default n
639 depends on NETSTAT
640 help
641 Add support for -p flag to print out PID and program name.
642 +700 bytes of code.
643
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000644config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000645 bool "nslookup"
646 default n
647 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000648 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000649
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000650config PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000651 bool "ping"
652 default n
653 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000654 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
Eric Andersene5642112003-07-14 19:37:08 +0000655 elicit an ICMP ECHO_RESPONSE from a host or gateway.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000656
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000657config PING6
658 bool "ping6"
659 default n
660 depends on FEATURE_IPV6 && PING
661 help
662 This will give you a ping that can talk IPv6.
663
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000664config FEATURE_FANCY_PING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000665 bool "Enable fancy ping output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000666 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000667 depends on PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000668 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000669 Make the output from the ping applet include statistics, and at the
670 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000671
Paul Fox0b2b5842008-02-01 23:25:32 +0000672config PSCAN
673 bool "pscan"
674 default n
675 help
676 Simple network port scanner.
677
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000678config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000679 bool "route"
680 default n
681 help
Eric Andersene5642112003-07-14 19:37:08 +0000682 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000683
Denis Vlasenko14923db2007-06-20 15:23:03 +0000684config SLATTACH
685 bool "slattach"
686 default n
687 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000688 slattach is a small utility to attach network interfaces to serial
689 lines.
Denis Vlasenko14923db2007-06-20 15:23:03 +0000690
Bernhard Reutner-Fischer0901c512008-09-04 13:22:58 +0000691#config TC
692# bool "tc"
693# default n
694# help
695# show / manipulate traffic control settings
696#
697#config FEATURE_TC_INGRESS
698# def_bool n
699# depends on TC
700
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000701config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000702 bool "telnet"
703 default n
704 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000705 Telnet is an interface to the TELNET protocol, but is also commonly
706 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000707
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000708config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000709 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000710 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000711 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000712 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000713 Setting this option will forward the TERM environment variable to the
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000714 remote host you are connecting to. This is useful to make sure that
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000715 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000716
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000717config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000718 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000719 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000720 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000721 help
722 Setting this option will forward the USER environment variable to the
723 remote host you are connecting to. This is useful when you need to
724 log into a machine without telling the username (autologin). This
725 option enables `-a' and `-l USER' arguments.
726
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000727config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000728 bool "telnetd"
729 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000730 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000731 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000732 A daemon for the TELNET protocol, allowing you to log onto the host
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000733 running the daemon. Please keep in mind that the TELNET protocol
734 sends passwords in plain text. If you can't afford the space for an
735 SSH daemon and you trust your network, you may say 'y' here. As a
Eric Andersen31ec93e2004-09-23 20:08:46 +0000736 more secure alternative, you should seriously consider installing the
737 very small Dropbear SSH daemon instead:
738 http://matt.ucc.asn.au/dropbear/dropbear.html
739
740 Note that for busybox telnetd to work you need several things:
741 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000742 UNIX98_PTYS=y
743 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000744
745 Next, you need a /dev/pts directory on your root filesystem:
746
747 $ ls -ld /dev/pts
748 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
749
750 Next you need the pseudo terminal master multiplexer /dev/ptmx:
751
752 $ ls -la /dev/ptmx
753 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
754
755 Any /dev/ttyp[0-9]* files you may have can be removed.
756 Next, you need to mount the devpts filesystem on /dev/pts using:
757
758 mount -t devpts devpts /dev/pts
759
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000760 You need to be sure that Busybox has LOGIN and
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000761 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000762 certain that Busybox has been installed setuid root:
763
764 chown root.root /bin/busybox
765 chmod 4755 /bin/busybox
766
767 with all that done, telnetd _should_ work....
768
Eric Andersenc9f20d92002-12-05 08:41:41 +0000769
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000770config FEATURE_TELNETD_STANDALONE
771 bool "Support standalone telnetd (not inetd only)"
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000772 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000773 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000774 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000775 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000776
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000777config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000778 bool "tftp"
779 default n
780 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000781 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000782 is usually used for simple, small transfers such as a root image
783 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000784
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000785config TFTPD
786 bool "tftpd"
787 default n
788 help
789 This enables the Trivial File Transfer Protocol server program.
790 It expects that stdin is a datagram socket and a packet
791 is already pending on it. It will exit after one transfer.
792 In other words: it should be run from inetd in nowait mode,
793 or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
794
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000795config FEATURE_TFTP_GET
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000796 bool "Enable \"get\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000797 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000798 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000799 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000800 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000801 a client to retrieve a file from a TFTP server.
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000802 Also enable upload support in tftpd, if tftpd is selected.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000803
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000804config FEATURE_TFTP_PUT
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000805 bool "Enable \"put\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000806 default y
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000807 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000808 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000809 Add support for the PUT command within the TFTP client. This allows
Eric Andersene5642112003-07-14 19:37:08 +0000810 a client to transfer a file to a TFTP server.
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000811 Also enable download support in tftpd, if tftpd is selected.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000812
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000813config FEATURE_TFTP_BLOCKSIZE
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000814 bool "Enable \"blksize\" protocol option"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000815 default n
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000816 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000817 help
Denis Vlasenkoaa9b1822008-03-17 09:10:39 +0000818 Allow tftp to specify block size, and tftpd to understand
819 "blksize" option.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000820
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000821config TFTP_DEBUG
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000822 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000823 default n
Denis Vlasenkoae6e1352008-11-22 18:41:41 +0000824 depends on TFTP || TFTPD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000825 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000826 Enable debug settings for tftp. This is useful if you're running
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000827 into problems with tftp as the protocol doesn't help you much when
828 you run into problems.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000829
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000830config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000831 bool "traceroute"
832 default n
833 help
Eric Andersene5642112003-07-14 19:37:08 +0000834 Utility to trace the route of IP packets
Eric Andersenc9f20d92002-12-05 08:41:41 +0000835
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000836config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000837 bool "Enable verbose output"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000838 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000839 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000840 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000841 Add some verbosity to traceroute. This includes amongst other things
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000842 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000843
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000844config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000845 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000846 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000847 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000848 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000849 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000850 (8 maximum).
851
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000852config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000853 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000854 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000855 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000856 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000857 Add feature to allow for ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000858
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000859source networking/udhcp/Config.in
860
Wade Berrier142c5cb2008-11-14 21:18:45 +0000861config IFUPDOWN_UDHCPC_CMD_OPTIONS
862 string "ifup udhcpc command line options"
863 default "-R -n"
864 depends on IFUPDOWN && APP_UDHCPC
865 help
866 Command line options to pass to udhcpc from ifup.
867 Intended to alter options not available in /etc/network/interfaces.
868 (IE: --syslog --background etc...)
869
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000870config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000871 bool "vconfig"
872 default n
873 help
874 Creates, removes, and configures VLAN interfaces
875
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000876config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000877 bool "wget"
878 default n
879 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000880 wget is a utility for non-interactive download of files from HTTP,
Eric Andersene5642112003-07-14 19:37:08 +0000881 HTTPS, and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000882
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000883config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000884 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000885 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000886 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000887 help
Eric Andersene5642112003-07-14 19:37:08 +0000888 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000889
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000890config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000891 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000892 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000893 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000894 help
Eric Andersene5642112003-07-14 19:37:08 +0000895 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000896
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000897config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000898 bool "Enable long options"
899 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000900 depends on WGET && GETOPT_LONG
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000901 help
902 Support long options for the wget applet.
903
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000904config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +0000905 bool "zcip"
906 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000907 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +0000908 help
909 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
910 It's a daemon that allocates and defends a dynamically assigned
911 address on the 169.254/16 network, requiring no system administrator.
912
913 See http://www.zeroconf.org for further details, and "zcip.script"
914 in the busybox examples.
915
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000916config TCPSVD
917 bool "tcpsvd"
918 default n
919 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000920 tcpsvd listens on a TCP port and runs a program for each new
921 connection.
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000922
923config UDPSVD
924 bool "udpsvd"
925 default n
926 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000927 udpsvd listens on an UDP port and runs a program for each new
928 connection.
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000929
Eric Andersenc9f20d92002-12-05 08:41:41 +0000930endmenu