blob: f4d4e7ebf6bd6266a9feca4e79ae4460fa19c1a2 [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
57#config FEATURE_BRCTL_SHOW
58# bool "support show, showmac and showstp"
59# default n
60# depends on BRCTL
61# help
62# Add support for option which print the current config:
63# showmacs, showstp, show
64
65config FEATURE_BRCTL_FANCY
66 bool "fancy options"
67 default n
68 depends on BRCTL
69 help
70 Add support for extended option like:
71 setageing, setfd, sethello, setmaxage,
72 setpathcost, setportprio, setbridgeprio,
73 stp
Bernhard Reutner-Fischerd27d9252008-01-13 15:23:27 +000074
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000075config DNSD
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000076 bool "dnsd"
77 default n
78 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000079 Small and static DNS server daemon.
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000080
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000081config ETHER_WAKE
Mike Frysingerb662f0d2005-05-11 03:59:53 +000082 bool "ether-wake"
83 default n
84 help
85 Send a magic packet to wake up sleeping machines.
86
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000087config FAKEIDENTD
Mike Frysingerfa69f112005-04-17 07:24:19 +000088 bool "fakeidentd"
89 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000090 select FEATURE_SYSLOG
Mike Frysingerfa69f112005-04-17 07:24:19 +000091 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +000092 fakeidentd listens on the ident port and returns a predefined
93 fake value on any query.
Mike Frysingerfa69f112005-04-17 07:24:19 +000094
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000095config FTPGET
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000096 bool "ftpget"
97 default n
98 help
99 Retrieve a remote file via FTP.
100
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000101config FTPPUT
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000102 bool "ftpput"
103 default n
104 help
105 Store a remote file via FTP.
106
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000107config FEATURE_FTPGETPUT_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000108 bool "Enable long options in ftpget/ftpput"
109 default n
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000110 depends on GETOPT_LONG && (FTPGET || FTPPUT)
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000111 help
112 Support long options for the ftpget/ftpput applet.
113
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000114config HOSTNAME
Eric Andersenc9f20d92002-12-05 08:41:41 +0000115 bool "hostname"
116 default n
117 help
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000118 Show or set the system's host name.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000119
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000120config HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000121 bool "httpd"
122 default n
123 help
124 Serve web pages via an HTTP server.
125
Denis Vlasenkof4310172007-09-21 22:35:18 +0000126config FEATURE_HTTPD_RANGES
127 bool "Support 'Ranges:' header"
128 default n
129 depends on HTTPD
130 help
131 Makes httpd emit "Accept-Ranges: bytes" header and understand
132 "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
133 downloads, seeking in multimedia players etc.
134
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000135config FEATURE_HTTPD_USE_SENDFILE
136 bool "Use sendfile system call"
137 default n
138 depends on HTTPD
139 help
140 When enabled, httpd will use the kernel sendfile() function
141 instead of read/write loop.
142
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000143config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000144 bool "Support reloading the global config file using hup signal"
145 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000146 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000147 help
148 This option enables processing of SIGHUP to reload cached
149 configuration settings.
150
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000151config FEATURE_HTTPD_SETUID
Denis Vlasenkodb506472006-12-17 20:18:05 +0000152 bool "Enable -u <user> option"
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000153 default n
Denis Vlasenkodb506472006-12-17 20:18:05 +0000154 depends on HTTPD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000155 help
156 This option allows the server to run as a specific user
157 rather than defaulting to the user that starts the server.
158 Use of this option requires special privileges to change to a
159 different user.
160
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000161config FEATURE_HTTPD_BASIC_AUTH
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000162 bool "Enable Basic http Authentication"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000163 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000164 depends on HTTPD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000165 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000166 Utilizes password settings from /etc/httpd.conf for basic
167 authentication on a per url basis.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000168
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000169config FEATURE_HTTPD_AUTH_MD5
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000170 bool "Support MD5 crypted passwords for http Authentication"
Eric Andersen35e643b2003-07-28 07:40:39 +0000171 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000172 depends on FEATURE_HTTPD_BASIC_AUTH
Eric Andersen35e643b2003-07-28 07:40:39 +0000173 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000174 Enables basic per URL authentication from /etc/httpd.conf
Eric Andersenf3a02bb2003-07-28 08:31:56 +0000175 using md5 passwords.
Eric Andersen35e643b2003-07-28 07:40:39 +0000176
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000177config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000178 bool "Support loading additional MIME types at run-time"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000179 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000180 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000181 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000182 This option enables support for additional MIME types at
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000183 run-time to be specified in the configuration file.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000184
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000185config FEATURE_HTTPD_CGI
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000186 bool "Support Common Gateway Interface (CGI)"
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000187 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000188 depends on HTTPD
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000189 help
190 This option allows scripts and executables to be invoked
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000191 when specific URLs are requested.
Glenn L McGrath393183d2003-05-26 14:07:50 +0000192
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000193config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000194 bool "Enable support for running scripts through an interpreter"
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000195 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000196 depends on FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000197 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000198 This option enables support for running scripts through an
199 interpreter. Turn this on if you want PHP scripts to work
Bernhard Reutner-Fischer6239b1f2007-05-26 11:59:01 +0000200 properly. You need to supply an additional line in your httpd
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000201 config file:
202 *.php:/path/to/your/php
203
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000204config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000205 bool "Support the REMOTE_PORT environment variable for CGI"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000206 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000207 depends on FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +0000208 help
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000209 Use of this option can assist scripts in generating
210 references that contain a unique port number.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000211
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000212config FEATURE_HTTPD_ENCODE_URL_STR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000213 bool "Enable the -e option for shell script CGI simplification."
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000214 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000215 depends on HTTPD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000216 help
Bernhard Reutner-Fischer38fc6922006-04-18 11:21:07 +0000217 This option allows html encoding arbitrary
Glenn L McGrathd3af4092003-05-14 12:20:21 +0000218 strings for display of the browser. Output goes to stdout.
219 For example, httpd -e "<Hello World>" as
220 "&#60Hello&#32World&#62".
Glenn L McGrath06e95652003-02-09 06:51:14 +0000221
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000222config FEATURE_HTTPD_ERROR_PAGES
223 bool "Enable support for custom error pages"
224 default n
225 depends on HTTPD
226 help
227 This option allows you to define custom error pages in
228 the configuration file instead of the default HTTP status
229 error pages. For instance, if you add the line:
230 E404:/path/e404.html
231 in the config file, the server will respond the specified
232 '/path/e404.html' file instead of the terse '404 NOT FOUND'
233 message.
234
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000235config FEATURE_HTTPD_PROXY
236 bool "Enable support for reverse proxy"
237 default n
238 depends on HTTPD
239 help
240 This option allows you to define URLs that will be forwarded
241 to another HTTP server. To setup add the following line to the
242 configuration file
243 P:/url/:http://hostname[:port]/new/path/
244 Then a request to /url/myfile will be forwarded to
245 http://hostname[:port]/new/path/myfile.
246
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000247config IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000248 bool "ifconfig"
249 default n
250 help
Eric Andersene5642112003-07-14 19:37:08 +0000251 Ifconfig is used to configure the kernel-resident network interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000252
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000253config FEATURE_IFCONFIG_STATUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000254 bool "Enable status reporting output (+7k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000255 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000256 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000257 help
Eric Andersene5642112003-07-14 19:37:08 +0000258 If ifconfig is called with no arguments it will display the status
259 of the currently active interfaces.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000260
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000261config FEATURE_IFCONFIG_SLIP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000262 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000263 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000264 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000265 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000266 Allow "keepalive" and "outfill" support for SLIP. If you're not
267 planning on using serial lines, leave this unchecked.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000268
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000269config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000270 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
Eric Andersenc9f20d92002-12-05 08:41:41 +0000271 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000272 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000273 help
Eric Andersene5642112003-07-14 19:37:08 +0000274 Allow the start address for shared memory, start address for I/O,
275 and/or the interrupt line used by the specified device.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000276
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000277config FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000278 bool "Enable option \"hw\" (ether only)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000279 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000280 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000281 help
Eric Andersene5642112003-07-14 19:37:08 +0000282 Set the hardware address of this interface, if the device driver
283 supports this operation. Currently, we only support the 'ether'
284 class.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000285
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000286config FEATURE_IFCONFIG_BROADCAST_PLUS
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000287 bool "Set the broadcast automatically"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000288 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000289 depends on IFCONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000290 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000291 Setting this will make ifconfig attempt to find the broadcast
292 automatically if the value '+' is used.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000293
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000294config IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000295 bool "ifupdown"
296 default n
297 help
Eric Andersen342aea92003-07-26 09:27:02 +0000298 Activate or deactivate the specified interfaces. This applet makes
299 use of either "ifconfig" and "route" or the "ip" command to actually
300 configure network interfaces. Therefore, you will probably also want
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000301 to enable either IFCONFIG and ROUTE, or enable
302 FEATURE_IFUPDOWN_IP and the various IP options. Of
Eric Andersen342aea92003-07-26 09:27:02 +0000303 course you could use non-busybox versions of these programs, so
304 against my better judgement (since this will surely result in plenty
305 of support questions on the mailing list), I do not force you to
306 enable these additional options. It is up to you to supply either
Bernhard Reutner-Fischer6111a8f2007-03-19 20:28:03 +0000307 "ifconfig", "route" and "run-parts" or the "ip" command, either
Bernhard Reutner-Fischer0864f4d2007-03-28 16:46:03 +0000308 via busybox or via standalone utilities.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000309
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000310config IFUPDOWN_IFSTATE_PATH
311 string "Absolute path to ifstate file"
312 default "/var/run/ifstate"
Bernhard Reutner-Fischerfc202422007-09-02 22:12:07 +0000313 depends on IFUPDOWN
Denis Vlasenko2a86a612007-07-19 21:49:30 +0000314 help
315 ifupdown keeps state information in a file called ifstate.
316 Typically it is located in /var/run/ifstate, however
317 some distributions tend to put it in other places
318 (debian, for example, uses /etc/network/run/ifstate).
319 This config option defines location of ifstate.
320
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000321config FEATURE_IFUPDOWN_IP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000322 bool "Use ip applet"
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000323 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000324 depends on IFUPDOWN
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000325 help
Eric Andersenc601ff12003-08-08 23:12:12 +0000326 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
327 than the default of using the older 'ifconfig' and 'route' utilities.
328
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000329config FEATURE_IFUPDOWN_IP_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000330 bool "Use busybox ip applet"
Eric Andersenc601ff12003-08-08 23:12:12 +0000331 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000332 depends on FEATURE_IFUPDOWN_IP
333 select IP
334 select FEATURE_IP_ADDRESS
335 select FEATURE_IP_LINK
336 select FEATURE_IP_ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000337 help
338 Use the busybox iproute "ip" applet to implement "ifupdown".
339
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000340 If left disabled, you must install the full-blown iproute2
Eric Andersenc601ff12003-08-08 23:12:12 +0000341 utility or the "ifup" and "ifdown" applets will not work.
342
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000343config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000344 bool "Use busybox ifconfig and route applets"
Eric Andersenc601ff12003-08-08 23:12:12 +0000345 default y
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000346 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000347 select IFCONFIG
348 select ROUTE
Eric Andersenc601ff12003-08-08 23:12:12 +0000349 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000350 Use the busybox iproute "ifconfig" and "route" applets to
Eric Andersenc601ff12003-08-08 23:12:12 +0000351 implement the "ifup" and "ifdown" utilities.
352
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000353 If left disabled, you must install the full-blown ifconfig
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000354 and route utilities, or the "ifup" and "ifdown" applets will not
Eric Andersenc601ff12003-08-08 23:12:12 +0000355 work.
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000356
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000357config FEATURE_IFUPDOWN_IPV4
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000358 bool "Enable support for IPv4"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000359 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000360 depends on IFUPDOWN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000361 help
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000362 If you want ifup/ifdown to talk IPv4, leave this on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000363
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000364config FEATURE_IFUPDOWN_IPV6
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000365 bool "Enable support for IPv6"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000366 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000367 depends on IFUPDOWN && FEATURE_IPV6
Eric Andersenc9f20d92002-12-05 08:41:41 +0000368 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000369 If you need support for IPv6, turn this option on.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000370
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000371### UNUSED
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000372###config FEATURE_IFUPDOWN_IPX
373### bool "Enable support for IPX"
374### default n
375### depends on IFUPDOWN
376### help
377### If this option is selected you can use busybox to work with IPX
378### networks.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000379
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000380config FEATURE_IFUPDOWN_MAPPING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000381 bool "Enable mapping support"
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000382 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000383 depends on IFUPDOWN
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000384 help
385 This enables support for the "mapping" stanza, unless you have
Eric Andersen88c916b2003-10-22 09:58:56 +0000386 a weird network setup you don't need it.
Glenn L McGrathcdbe5e52002-12-06 08:35:55 +0000387
Denis Vlasenkoeda43d72007-05-02 22:04:38 +0000388config FEATURE_IFUPDOWN_EXTERNAL_DHCP
389 bool "Enable support for external dhcp clients"
390 default n
391 depends on IFUPDOWN
392 help
393 This enables support for the external dhcp clients. Clients are
394 tried in the following order: dhcpcd, dhclient, pump and udhcpc.
395 Otherwise, if udhcpc applet is enabled, it is used.
396 Otherwise, ifup/ifdown will have no support for DHCP.
397
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000398config INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000399 bool "inetd"
400 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000401 select FEATURE_SYSLOG
Glenn L McGrath06e95652003-02-09 06:51:14 +0000402 help
403 Internet superserver daemon
404
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000405config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000406 bool "Support echo service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000407 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000408 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000409 help
410 Echo received data internal inetd service
411
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000412config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000413 bool "Support discard service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000414 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000415 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000416 help
417 Internet /dev/null internal inetd service
418
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000419config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000420 bool "Support time service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000421 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000422 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000423 help
424 Return 32 bit time since 1900 internal inetd service
425
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000426config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000427 bool "Support daytime service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000428 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000429 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000430 help
431 Return human-readable time internal inetd service
432
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000433config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000434 bool "Support chargen service"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000435 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000436 depends on INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000437 help
438 Familiar character generator internal inetd service
439
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000440config FEATURE_INETD_RPC
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000441 bool "Support RPC services"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000442 default n
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000443 depends on INETD
444 select FEATURE_HAVE_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000445 help
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000446 Support Sun-RPC based services
Glenn L McGrath06e95652003-02-09 06:51:14 +0000447
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448config IP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000449 bool "ip"
450 default n
451 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000452 The "ip" applet is a TCP/IP interface configuration and routing
453 utility. You generally don't need "ip" to use busybox with
454 TCP/IP.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000455
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000456config FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000457 bool "ip address"
458 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000459 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000460 help
461 Address manipulation support for the "ip" applet.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000462
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000463config FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000464 bool "ip link"
465 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000466 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000467 help
468 Configure network devices with "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000469
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000470config FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000471 bool "ip route"
472 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000473 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000474 help
475 Add support for routing table management to "ip".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000476
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000477config FEATURE_IP_TUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000478 bool "ip tunnel"
479 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000480 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000481 help
482 Add support for tunneling commands to "ip".
483
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000484config FEATURE_IP_RULE
485 bool "ip rule"
486 default n
487 depends on IP
488 help
489 Add support for rule commands to "ip".
490
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000491config FEATURE_IP_SHORT_FORMS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000492 bool "Support short forms of ip commands."
493 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000494 depends on IP
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000495 help
496 Also support short-form of ip <OBJECT> commands:
497 ip addr -> ipaddr
498 ip link -> iplink
499 ip route -> iproute
500 ip tunnel -> iptunnel
Bernhard Reutner-Fischer7a7e54a2007-02-02 16:06:02 +0000501 ip rule -> iprule
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000502
503 Say N unless you desparately need the short form of the ip
504 object commands.
505
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000506config FEATURE_IP_RARE_PROTOCOLS
Bernhard Reutner-Fischer1641d612007-10-29 21:21:27 +0000507 bool "Support displaying rarely used link types"
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000508 default n
509 depends on IP
510 help
511 If you are not going to use links of type "frad", "econet",
512 "bif" etc, you probably don't need to enable this.
513 Ethernet, wireless, infrared, ppp/slip, ip tunnelling
514 link types are supported without this option selected.
515
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000516config IPADDR
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000517 bool
518 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000519 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000520
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000521config IPLINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000522 bool
523 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000524 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000525
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000526config IPROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000527 bool
528 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000529 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000530
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000531config IPTUNNEL
Bernhard Reutner-Fischer29495772006-04-18 08:11:37 +0000532 bool
533 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000534 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
Eric Andersenc9f20d92002-12-05 08:41:41 +0000535
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000536config IPRULE
537 bool
538 default y
539 depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
540
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000541config IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000542 bool "ipcalc"
543 default n
544 help
Eric Andersene5642112003-07-14 19:37:08 +0000545 ipcalc takes an IP address and netmask and calculates the
546 resulting broadcast, network, and host range.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000547
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000548config FEATURE_IPCALC_FANCY
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000549 bool "Fancy IPCALC, more options, adds 1 kbyte"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000550 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000551 depends on IPCALC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000552 help
Glenn L McGrath530ea422003-09-02 06:59:57 +0000553 Adds the options hostname, prefix and silent to the output of "ipcalc".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000554
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000555config FEATURE_IPCALC_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000556 bool "Enable long options"
557 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000558 depends on IPCALC && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000559 help
560 Support long options for the ipcalc applet.
561
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000562config NAMEIF
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000563 bool "nameif"
564 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000565 select FEATURE_SYSLOG
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000566 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000567 nameif is used to rename network interface by its MAC address.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000568 Renamed interfaces MUST be in the down state.
Eric Andersen88c916b2003-10-22 09:58:56 +0000569 It is possible to use a file (default: /etc/mactab)
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000570 with list of new interface names and MACs.
571 Maximum interface name length: IF_NAMESIZE = 16
Eric Andersen88c916b2003-10-22 09:58:56 +0000572 File fields are separated by space or tab.
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000573 File format:
574 # Comment
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000575 new_interface_name XX:XX:XX:XX:XX:XX
Glenn L McGrathf03c9332002-12-13 00:01:44 +0000576
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000577config FEATURE_NAMEIF_EXTENDED
578 bool "Extended nameif"
579 default n
580 depends on NAMEIF
581 help
582 This extends the nameif syntax to support the bus_info and driver
583 checks. The syntax is compatible to the normal nameif.
584 File format:
585 new_interface_name driver=asix bus=usb-0000:00:08.2-3
586 new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
587 new_interface_name mac=00:80:C8:38:91:B5
588 new_interface_name 00:80:C8:38:91:B5
589
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000590config NC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000591 bool "nc"
592 default n
593 help
Eric Andersene5642112003-07-14 19:37:08 +0000594 A simple Unix utility which reads and writes data across network
595 connections.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000596
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000597config NC_SERVER
Denis Vlasenko29fe7262007-04-05 20:26:28 +0000598 bool "Netcat server options (-l)"
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000599 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000600 depends on NC
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000601 help
Rob Landley1cca9482006-07-10 19:45:20 +0000602 Allow netcat to act as a server.
603
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000604config NC_EXTRA
Rob Landley1cca9482006-07-10 19:45:20 +0000605 bool "Netcat extensions (-eiw and filename)"
606 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000607 depends on NC
Rob Landley1cca9482006-07-10 19:45:20 +0000608 help
609 Add -e (support for executing the rest of the command line after
610 making or receiving a successful connection), -i (delay interval for
611 lines sent), -w (timeout for initial connection).
Mike Frysinger7dc7f402005-05-06 05:00:34 +0000612
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000613config NETSTAT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000614 bool "netstat"
615 default n
616 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000617 netstat prints information about the Linux networking subsystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000618
Denis Vlasenko418a7fb2007-05-15 23:57:46 +0000619config FEATURE_NETSTAT_WIDE
620 bool " Enable wide netstat output"
621 default n
622 depends on NETSTAT
623 help
624 Add support for wide columns. Useful when displaying IPv6 addresses
625 (-W option).
626
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000627config NSLOOKUP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000628 bool "nslookup"
629 default n
630 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000631 nslookup is a tool to query Internet name servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000632
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000633config PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000634 bool "ping"
635 default n
636 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000637 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
Eric Andersene5642112003-07-14 19:37:08 +0000638 elicit an ICMP ECHO_RESPONSE from a host or gateway.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000639
Denis Vlasenkob9a279b2007-01-24 23:53:22 +0000640config PING6
641 bool "ping6"
642 default n
643 depends on FEATURE_IPV6 && PING
644 help
645 This will give you a ping that can talk IPv6.
646
Denis Vlasenko7b72fc12007-06-16 13:37:59 +0000647config PSCAN
648 bool "pscan"
649 default n
650 help
651 Simple network port scanner.
652
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000653config FEATURE_FANCY_PING
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000654 bool "Enable fancy ping output"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000655 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000656 depends on PING
Eric Andersenc9f20d92002-12-05 08:41:41 +0000657 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000658 Make the output from the ping applet include statistics, and at the
659 same time provide full support for ICMP packets.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000660
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000661config ROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000662 bool "route"
663 default n
664 help
Eric Andersene5642112003-07-14 19:37:08 +0000665 Route displays or manipulates the kernel's IP routing tables.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000666
Denis Vlasenko14923db2007-06-20 15:23:03 +0000667config SLATTACH
668 bool "slattach"
669 default n
670 help
671 slattach is a small utility to attach network interfaces to serial lines.
672
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000673config TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000674 bool "telnet"
675 default n
676 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000677 Telnet is an interface to the TELNET protocol, but is also commonly
678 used to test other simple protocols.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000679
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000680config FEATURE_TELNET_TTYPE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000681 bool "Pass TERM type to remote host"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000682 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000683 depends on TELNET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000684 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000685 Setting this option will forward the TERM environment variable to the
686 remote host you are connecting to. This is useful to make sure that
687 things like ANSI colors and other control sequences behave.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000688
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000689config FEATURE_TELNET_AUTOLOGIN
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000690 bool "Pass USER type to remote host"
Eric Andersen539ffc92004-02-22 12:25:47 +0000691 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000692 depends on TELNET
Eric Andersen539ffc92004-02-22 12:25:47 +0000693 help
694 Setting this option will forward the USER environment variable to the
695 remote host you are connecting to. This is useful when you need to
696 log into a machine without telling the username (autologin). This
697 option enables `-a' and `-l USER' arguments.
698
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000699config TELNETD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000700 bool "telnetd"
701 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000702 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000703 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000704 A daemon for the TELNET protocol, allowing you to log onto the host
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000705 running the daemon. Please keep in mind that the TELNET protocol
Eric Andersen31ec93e2004-09-23 20:08:46 +0000706 sends passwords in plain text. If you can't afford the space for an
707 SSH daemon and you trust your network, you may say 'y' here. As a
708 more secure alternative, you should seriously consider installing the
709 very small Dropbear SSH daemon instead:
710 http://matt.ucc.asn.au/dropbear/dropbear.html
711
712 Note that for busybox telnetd to work you need several things:
713 First of all, your kernel needs:
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000714 UNIX98_PTYS=y
715 DEVPTS_FS=y
Eric Andersen31ec93e2004-09-23 20:08:46 +0000716
717 Next, you need a /dev/pts directory on your root filesystem:
718
719 $ ls -ld /dev/pts
720 drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
721
722 Next you need the pseudo terminal master multiplexer /dev/ptmx:
723
724 $ ls -la /dev/ptmx
725 crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
726
727 Any /dev/ttyp[0-9]* files you may have can be removed.
728 Next, you need to mount the devpts filesystem on /dev/pts using:
729
730 mount -t devpts devpts /dev/pts
731
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000732 You need to be sure that Busybox has LOGIN and
733 FEATURE_SUID enabled. And finally, you should make
Eric Andersen31ec93e2004-09-23 20:08:46 +0000734 certain that Busybox has been installed setuid root:
735
736 chown root.root /bin/busybox
737 chmod 4755 /bin/busybox
738
739 with all that done, telnetd _should_ work....
740
Eric Andersenc9f20d92002-12-05 08:41:41 +0000741
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000742config FEATURE_TELNETD_STANDALONE
743 bool "Support standalone telnetd (not inetd only)"
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000744 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000745 depends on TELNETD
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000746 help
Denis Vlasenko75f8d082006-11-22 15:54:52 +0000747 Selecting this will make telnetd able to run standalone.
Glenn L McGrath9e5d6c02003-01-21 20:55:56 +0000748
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000749config TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000750 bool "tftp"
751 default n
752 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000753 This enables the Trivial File Transfer Protocol client program. TFTP
Eric Andersene5642112003-07-14 19:37:08 +0000754 is usually used for simple, small transfers such as a root image
755 for a network-enabled bootloader.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000756
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000757config FEATURE_TFTP_GET
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000758 bool "Enable \"get\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000759 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000760 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000761 help
Eric Andersene5642112003-07-14 19:37:08 +0000762 Add support for the GET command within the TFTP client. This allows
Eric Andersen88c916b2003-10-22 09:58:56 +0000763 a client to retrieve a file from a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000764
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000765config FEATURE_TFTP_PUT
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000766 bool "Enable \"put\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000767 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000768 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000769 help
Eric Andersene5642112003-07-14 19:37:08 +0000770 Add support for the PUT command within the TFTP client. This allows
771 a client to transfer a file to a TFTP server.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000772
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000773config FEATURE_TFTP_BLOCKSIZE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000774 bool "Enable \"blocksize\" command"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000775 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000776 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000777 help
Eric Andersene5642112003-07-14 19:37:08 +0000778 Allow the client to specify the desired block size for transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000779
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000780config DEBUG_TFTP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000781 bool "Enable debug"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000782 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000783 depends on TFTP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000784 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000785 Enable debug settings for tftp. This is useful if you're running
786 into problems with tftp as the protocol doesn't help you much when
787 you run into problems.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000788
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000789config TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000790 bool "traceroute"
791 default n
792 help
Eric Andersene5642112003-07-14 19:37:08 +0000793 Utility to trace the route of IP packets
Eric Andersenc9f20d92002-12-05 08:41:41 +0000794
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000795config FEATURE_TRACEROUTE_VERBOSE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000796 bool "Enable verbose output"
Glenn L McGrath393183d2003-05-26 14:07:50 +0000797 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000798 depends on TRACEROUTE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000799 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000800 Add some verbosity to traceroute. This includes amongst other things
801 hostnames and ICMP response types.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000802
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000803config FEATURE_TRACEROUTE_SOURCE_ROUTE
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000804 bool "Enable loose source route"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000805 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000806 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000807 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000808 Add option to specify a loose source route gateway
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000809 (8 maximum).
810
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000811config FEATURE_TRACEROUTE_USE_ICMP
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000812 bool "Use ICMP instead of UDP"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000813 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000814 depends on TRACEROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000815 help
Bernhard Reutner-Fischerc00411a2006-01-04 13:35:09 +0000816 Add feature to allow for ICMP ECHO instead of UDP datagrams.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000817
Mike Frysinger1b4e1da2006-05-08 03:24:36 +0000818source networking/udhcp/Config.in
819
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000820config VCONFIG
Eric Andersen853c4942003-01-23 05:59:32 +0000821 bool "vconfig"
822 default n
823 help
824 Creates, removes, and configures VLAN interfaces
825
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000826config WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000827 bool "wget"
828 default n
829 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000830 wget is a utility for non-interactive download of files from HTTP,
Eric Andersene5642112003-07-14 19:37:08 +0000831 HTTPS, and FTP servers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000832
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000833config FEATURE_WGET_STATUSBAR
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000834 bool "Enable a nifty process meter (+2k)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000835 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000836 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000837 help
Eric Andersene5642112003-07-14 19:37:08 +0000838 Enable the transfer progress bar for wget transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000839
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000840config FEATURE_WGET_AUTHENTICATION
Bernhard Reutner-Fischerea46f452006-04-18 11:11:40 +0000841 bool "Enable HTTP authentication"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000842 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000843 depends on WGET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000844 help
Eric Andersene5642112003-07-14 19:37:08 +0000845 Support authenticated HTTP transfers.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000846
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000847config FEATURE_WGET_LONG_OPTIONS
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000848 bool "Enable long options"
849 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000850 depends on WGET && GETOPT_LONG
Bernhard Reutner-Fischer8d3a6f72006-05-31 14:11:38 +0000851 help
852 Support long options for the wget applet.
853
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000854config ZCIP
Rob Landleyad8071f2005-04-30 03:49:37 +0000855 bool "zcip"
856 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000857 select FEATURE_SYSLOG
Rob Landleyad8071f2005-04-30 03:49:37 +0000858 help
859 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
860 It's a daemon that allocates and defends a dynamically assigned
861 address on the 169.254/16 network, requiring no system administrator.
862
863 See http://www.zeroconf.org for further details, and "zcip.script"
864 in the busybox examples.
865
Eric Andersenc9f20d92002-12-05 08:41:41 +0000866endmenu