Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Networking Utilities" |
| 7 | |
| 8 | config CONFIG_FEATURE_IPV6 |
| 9 | bool "Enable IPv6 support" |
| 10 | default n |
| 11 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 12 | Enable IPv6 support to busybox. This makes applets that talk IP |
| 13 | able to work with IPv6. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 14 | |
Glenn L McGrath | 9e59841 | 2003-01-09 10:06:01 +0000 | [diff] [blame] | 15 | config CONFIG_ARPING |
| 16 | bool "arping" |
| 17 | default n |
| 18 | help |
| 19 | Ping hosts by ARP packets |
| 20 | |
Mike Frysinger | b662f0d | 2005-05-11 03:59:53 +0000 | [diff] [blame] | 21 | config CONFIG_ETHER_WAKE |
| 22 | bool "ether-wake" |
| 23 | default n |
| 24 | help |
| 25 | Send a magic packet to wake up sleeping machines. |
| 26 | |
Mike Frysinger | fa69f11 | 2005-04-17 07:24:19 +0000 | [diff] [blame] | 27 | config CONFIG_FAKEIDENTD |
| 28 | bool "fakeidentd" |
| 29 | default n |
| 30 | help |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame^] | 31 | fakeidentd listens to the ident port and returns a set fake |
Mike Frysinger | fa69f11 | 2005-04-17 07:24:19 +0000 | [diff] [blame] | 32 | value whatever it gets. |
| 33 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 34 | config CONFIG_FTPGET |
| 35 | bool "ftpget" |
| 36 | default n |
| 37 | help |
| 38 | Retrieve a remote file via FTP. |
| 39 | |
| 40 | config CONFIG_FTPPUT |
| 41 | bool "ftpput" |
| 42 | default n |
| 43 | help |
| 44 | Store a remote file via FTP. |
| 45 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 46 | config CONFIG_HOSTNAME |
| 47 | bool "hostname" |
| 48 | default n |
| 49 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 50 | Show or set the system's host name |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 51 | |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 52 | config CONFIG_HTTPD |
| 53 | bool "httpd" |
| 54 | default n |
| 55 | help |
| 56 | Serve web pages via an HTTP server. |
| 57 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 58 | config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 59 | bool " Support using httpd only from inetd" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 60 | default n |
| 61 | depends on CONFIG_HTTPD |
| 62 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 63 | This option disables uid and port options for the httpd applet |
| 64 | but requires inetd server daemon. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 65 | |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 66 | config CONFIG_FEATURE_HTTPD_BASIC_AUTH |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 67 | bool " Enable Basic http Authentication" |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 68 | default y |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 69 | depends on CONFIG_HTTPD |
| 70 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 71 | Utilizes password settings from /etc/httpd.conf for basic |
| 72 | authentication on a per url basis. |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 73 | |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 74 | config CONFIG_FEATURE_HTTPD_AUTH_MD5 |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 75 | bool " Support MD5 crypted passwords for http Authentication" |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 76 | default n |
| 77 | depends on CONFIG_FEATURE_HTTPD_BASIC_AUTH |
| 78 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 79 | Enables basic per url authentication from /etc/httpd.conf |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 80 | using md5 passwords. |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 81 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 82 | |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 83 | if !CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 84 | config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 85 | bool " Support reloading the global config file using hup signal" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 86 | default n |
| 87 | depends on CONFIG_HTTPD |
| 88 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 89 | This option enables processing of SIGHUP to reload cached |
| 90 | configuration settings. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 91 | |
| 92 | config CONFIG_FEATURE_HTTPD_SETUID |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 93 | bool " Enable support -u <user> option" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 94 | default n |
| 95 | depends on CONFIG_HTTPD |
| 96 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 97 | This option allows the server to run as a specific user |
| 98 | rather than defaulting to the user that starts the server. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 99 | Use of this option requires special privileges to change to a |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 100 | different user. |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 101 | endif |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 102 | |
| 103 | config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 104 | bool " Support loading additional MIME types at run-time" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 105 | default n |
| 106 | depends on CONFIG_HTTPD |
| 107 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 108 | This option enables support for additional MIME types at |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 109 | run-time to be specified in the configuration file. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 110 | |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 111 | config CONFIG_FEATURE_HTTPD_CGI |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 112 | bool " Support Common Gateway Interface (CGI)" |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 113 | default y |
| 114 | depends on CONFIG_HTTPD |
| 115 | help |
| 116 | This option allows scripts and executables to be invoked |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame^] | 117 | when specific urls are requested. |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 118 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 119 | config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 120 | bool " Support the REMOTE_PORT environment variable for CGI" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 121 | default n |
| 122 | depends on CONFIG_FEATURE_HTTPD_CGI |
| 123 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 124 | Use of this option can assist scripts in generating |
| 125 | references that contain a unique port number. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 126 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 127 | config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 128 | bool " Enable the -e option for shell script CGI simplification." |
| 129 | default y |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 130 | depends on CONFIG_HTTPD |
| 131 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 132 | After set, this option allows html encoding arbitrary |
| 133 | strings for display of the browser. Output goes to stdout. |
| 134 | For example, httpd -e "<Hello World>" as |
| 135 | "<Hello World>". |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 136 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 137 | config CONFIG_IFCONFIG |
| 138 | bool "ifconfig" |
| 139 | default n |
| 140 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 141 | Ifconfig is used to configure the kernel-resident network interfaces. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 142 | |
| 143 | config CONFIG_FEATURE_IFCONFIG_STATUS |
| 144 | bool " Enable status reporting output (+7k)" |
| 145 | default y |
| 146 | depends on CONFIG_IFCONFIG |
| 147 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 148 | If ifconfig is called with no arguments it will display the status |
| 149 | of the currently active interfaces. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 150 | |
| 151 | config CONFIG_FEATURE_IFCONFIG_SLIP |
| 152 | bool " Enable slip-specific options \"keepalive\" and \"outfill\"" |
| 153 | default n |
| 154 | depends on CONFIG_IFCONFIG |
| 155 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 156 | Allow "keepalive" and "outfill" support for SLIP. If you're not |
| 157 | planning on using serial lines, leave this unchecked. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 158 | |
| 159 | config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
| 160 | bool " Enable options \"mem_start\", \"io_addr\", and \"irq\"" |
| 161 | default n |
| 162 | depends on CONFIG_IFCONFIG |
| 163 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 164 | Allow the start address for shared memory, start address for I/O, |
| 165 | and/or the interrupt line used by the specified device. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 166 | |
| 167 | config CONFIG_FEATURE_IFCONFIG_HW |
| 168 | bool " Enable option \"hw\" (ether only)" |
| 169 | default y |
| 170 | depends on CONFIG_IFCONFIG |
| 171 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 172 | Set the hardware address of this interface, if the device driver |
| 173 | supports this operation. Currently, we only support the 'ether' |
| 174 | class. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 175 | |
| 176 | config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS |
| 177 | bool " Set the broadcast automatically" |
| 178 | default n |
| 179 | depends on CONFIG_IFCONFIG |
| 180 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 181 | Setting this will make ifconfig attempt to find the broadcast |
| 182 | automatically if the value '+' is used. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 183 | |
| 184 | config CONFIG_IFUPDOWN |
| 185 | bool "ifupdown" |
| 186 | default n |
| 187 | help |
Eric Andersen | 342aea9 | 2003-07-26 09:27:02 +0000 | [diff] [blame] | 188 | Activate or deactivate the specified interfaces. This applet makes |
| 189 | use of either "ifconfig" and "route" or the "ip" command to actually |
| 190 | configure network interfaces. Therefore, you will probably also want |
| 191 | to enable either CONFIG_IFCONFIG and CONFIG_ROUTE, or enable |
| 192 | CONFIG_FEATURE_IFUPDOWN_IP and the various CONFIG_IP options. Of |
| 193 | course you could use non-busybox versions of these programs, so |
| 194 | against my better judgement (since this will surely result in plenty |
| 195 | of support questions on the mailing list), I do not force you to |
| 196 | enable these additional options. It is up to you to supply either |
| 197 | "ifconfig" and "route" or the "ip" command, either via busybox or via |
| 198 | standalone utilities. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 199 | |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 200 | config CONFIG_FEATURE_IFUPDOWN_IP |
| 201 | bool " Use ip applet" |
| 202 | default n |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 203 | depends on CONFIG_IFUPDOWN |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 204 | help |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 205 | Use the iproute "ip" command to implement "ifup" and "ifdown", rather |
| 206 | than the default of using the older 'ifconfig' and 'route' utilities. |
| 207 | |
| 208 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN |
| 209 | bool " Use busybox ip applet" |
| 210 | default y |
| 211 | depends on CONFIG_FEATURE_IFUPDOWN_IP |
| 212 | select CONFIG_IP |
| 213 | select CONFIG_FEATURE_IP_ADDRESS |
| 214 | select CONFIG_FEATURE_IP_LINK |
| 215 | select CONFIG_FEATURE_IP_ROUTE |
| 216 | help |
| 217 | Use the busybox iproute "ip" applet to implement "ifupdown". |
| 218 | |
| 219 | If leave this disabled, you must install the full-blown iproute2 |
| 220 | utility or the "ifup" and "ifdown" applets will not work. |
| 221 | |
| 222 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN |
| 223 | bool " Use busybox ifconfig and route applets" |
| 224 | default y |
| 225 | depends on CONFIG_IFUPDOWN && !CONFIG_FEATURE_IFUPDOWN_IP |
| 226 | select CONFIG_IFCONFIG |
| 227 | select CONFIG_ROUTE |
| 228 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 229 | Use the busybox iproute "ifconfig" and "route" applets to |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 230 | implement the "ifup" and "ifdown" utilities. |
| 231 | |
| 232 | If leave this disabled, you must install the full-blown ifconfig |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 233 | and route utilities, or the "ifup" and "ifdown" applets will not |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 234 | work. |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 235 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 236 | config CONFIG_FEATURE_IFUPDOWN_IPV4 |
| 237 | bool " Enable support for IPv4" |
| 238 | default y |
| 239 | depends on CONFIG_IFUPDOWN |
| 240 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 241 | If you want busybox to talk IPv4, leave this on. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 242 | |
| 243 | config CONFIG_FEATURE_IFUPDOWN_IPV6 |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 244 | bool " Enable support for IPv6" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 245 | default n |
| 246 | depends on CONFIG_IFUPDOWN |
| 247 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 248 | If you need support for IPv6, turn this option on. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 249 | |
| 250 | config CONFIG_FEATURE_IFUPDOWN_IPX |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 251 | bool " Enable support for IPX" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 252 | default n |
| 253 | depends on CONFIG_IFUPDOWN |
| 254 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 255 | If this option is selected you can use busybox to work with IPX |
| 256 | networks. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 257 | |
Glenn L McGrath | cdbe5e5 | 2002-12-06 08:35:55 +0000 | [diff] [blame] | 258 | config CONFIG_FEATURE_IFUPDOWN_MAPPING |
| 259 | bool " Enable mapping support" |
| 260 | default n |
| 261 | depends on CONFIG_IFUPDOWN |
| 262 | help |
| 263 | This enables support for the "mapping" stanza, unless you have |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 264 | a weird network setup you don't need it. |
Glenn L McGrath | cdbe5e5 | 2002-12-06 08:35:55 +0000 | [diff] [blame] | 265 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 266 | config CONFIG_INETD |
| 267 | bool "inetd" |
| 268 | default n |
| 269 | help |
| 270 | Internet superserver daemon |
| 271 | |
| 272 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_ECHO |
| 273 | bool " Support echo service" |
| 274 | default y |
| 275 | depends on CONFIG_INETD |
| 276 | help |
| 277 | Echo received data internal inetd service |
| 278 | |
| 279 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DISCARD |
| 280 | bool " Support discard service" |
| 281 | default y |
| 282 | depends on CONFIG_INETD |
| 283 | help |
| 284 | Internet /dev/null internal inetd service |
| 285 | |
| 286 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_TIME |
| 287 | bool " Support time service" |
| 288 | default y |
| 289 | depends on CONFIG_INETD |
| 290 | help |
| 291 | Return 32 bit time since 1900 internal inetd service |
| 292 | |
| 293 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DAYTIME |
| 294 | bool " Support daytime service" |
| 295 | default y |
| 296 | depends on CONFIG_INETD |
| 297 | help |
| 298 | Return human-readable time internal inetd service |
| 299 | |
| 300 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_CHARGEN |
| 301 | bool " Support chargen service" |
| 302 | default y |
| 303 | depends on CONFIG_INETD |
| 304 | help |
| 305 | Familiar character generator internal inetd service |
| 306 | |
| 307 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 308 | config CONFIG_IP |
| 309 | bool "ip" |
| 310 | default n |
| 311 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 312 | The "ip" applet is a TCP/IP interface configuration and routing |
| 313 | utility. You generally don't need "ip" to use busybox with |
| 314 | TCP/IP. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 315 | |
| 316 | if CONFIG_IP && CONFIG_IPADDR |
| 317 | config CONFIG_FEATURE_IP_ADDRESS |
| 318 | default y |
| 319 | comment " address (forced enabled for ipaddr)" |
| 320 | endif |
| 321 | if ! (CONFIG_IP && CONFIG_IPADDR) |
| 322 | config CONFIG_FEATURE_IP_ADDRESS |
| 323 | bool " address" |
Glenn L McGrath | 4a4c677 | 2003-02-15 11:50:33 +0000 | [diff] [blame] | 324 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 325 | depends on CONFIG_IP |
| 326 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 327 | Address manipulation support for the "ip" applet. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 328 | endif |
| 329 | |
| 330 | if CONFIG_IP && CONFIG_IPLINK |
| 331 | config CONFIG_FEATURE_IP_LINK |
| 332 | default y |
| 333 | comment " link (forced enabled for iplink)" |
| 334 | endif |
| 335 | if !(CONFIG_IP && CONFIG_IPLINK) |
| 336 | config CONFIG_FEATURE_IP_LINK |
| 337 | bool " link" |
| 338 | default y |
| 339 | depends on CONFIG_IP |
| 340 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 341 | Configure network devices with "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 342 | endif |
| 343 | |
| 344 | if CONFIG_IP && CONFIG_IPROUTE |
| 345 | config CONFIG_FEATURE_IP_ROUTE |
| 346 | default y |
| 347 | comment " route (forced enabled for iproute)" |
| 348 | endif |
| 349 | if !(CONFIG_IP && CONFIG_IPROUTE) |
| 350 | config CONFIG_FEATURE_IP_ROUTE |
| 351 | bool " route" |
| 352 | default y |
| 353 | depends on CONFIG_IP |
| 354 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 355 | Add support for routing table management to "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 356 | endif |
| 357 | |
| 358 | if CONFIG_IP && CONFIG_IPTUNNEL |
| 359 | config CONFIG_FEATURE_IP_TUNNEL |
| 360 | default y |
| 361 | comment " tunnel (forced enabled for iptunnel)" |
| 362 | endif |
| 363 | if !(CONFIG_IP && CONFIG_IPTUNNEL) |
| 364 | config CONFIG_FEATURE_IP_TUNNEL |
| 365 | bool " tunnel" |
Glenn L McGrath | 4a4c677 | 2003-02-15 11:50:33 +0000 | [diff] [blame] | 366 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 367 | depends on CONFIG_IP |
| 368 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 369 | Add support for tunneling commands to "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 370 | endif |
| 371 | |
| 372 | config CONFIG_IPCALC |
| 373 | bool "ipcalc" |
| 374 | default n |
| 375 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 376 | ipcalc takes an IP address and netmask and calculates the |
| 377 | resulting broadcast, network, and host range. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 378 | |
| 379 | config CONFIG_FEATURE_IPCALC_FANCY |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 380 | bool " Fancy IPCALC, more options, adds 1 kbyte" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 381 | default y |
Glenn L McGrath | 80a6041 | 2002-12-06 23:11:30 +0000 | [diff] [blame] | 382 | depends on CONFIG_IPCALC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 383 | help |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 384 | Adds the options hostname, prefix and silent to the output of "ipcalc". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 385 | |
| 386 | config CONFIG_IPADDR |
| 387 | bool "ipaddr" |
| 388 | default n |
| 389 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 390 | Equivalent to selecting address support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 391 | |
| 392 | config CONFIG_IPLINK |
| 393 | bool "iplink" |
| 394 | default n |
| 395 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 396 | Equivalent to selecting link support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 397 | |
| 398 | config CONFIG_IPROUTE |
| 399 | bool "iproute" |
| 400 | default n |
| 401 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 402 | Equivalent to selecting route support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 403 | |
| 404 | config CONFIG_IPTUNNEL |
| 405 | bool "iptunnel" |
| 406 | default n |
| 407 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 408 | Equivalent to selecting tunnel support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 409 | |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 410 | config CONFIG_NAMEIF |
| 411 | bool "nameif" |
| 412 | default n |
| 413 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 414 | nameif is used to rename network interface by its MAC address. |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 415 | Renamed interfaces MUST be in the down state. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 416 | It is possible to use a file (default: /etc/mactab) |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 417 | with list of new interface names and MACs. |
| 418 | Maximum interface name length: IF_NAMESIZE = 16 |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 419 | File fields are separated by space or tab. |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 420 | File format: |
| 421 | # Comment |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame^] | 422 | new_interface_name XX:XX:XX:XX:XX:XX |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 423 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 424 | config CONFIG_NC |
| 425 | bool "nc" |
| 426 | default n |
| 427 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 428 | A simple Unix utility which reads and writes data across network |
| 429 | connections. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 430 | |
Mike Frysinger | 7dc7f40 | 2005-05-06 05:00:34 +0000 | [diff] [blame] | 431 | config CONFIG_NC_GAPING_SECURITY_HOLE |
| 432 | bool "gaping security hole" |
| 433 | default n |
| 434 | depends on CONFIG_NC |
| 435 | help |
| 436 | Add support for executing a program after making or receiving a |
| 437 | successful connection (-e option). |
| 438 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 439 | config CONFIG_NETSTAT |
| 440 | bool "netstat" |
| 441 | default n |
| 442 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 443 | netstat prints information about the Linux networking subsystem. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 444 | |
| 445 | config CONFIG_NSLOOKUP |
| 446 | bool "nslookup" |
| 447 | default n |
| 448 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 449 | nslookup is a tool to query Internet name servers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 450 | |
| 451 | config CONFIG_PING |
| 452 | bool "ping" |
| 453 | default n |
| 454 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 455 | ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 456 | elicit an ICMP ECHO_RESPONSE from a host or gateway. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 457 | |
| 458 | config CONFIG_FEATURE_FANCY_PING |
| 459 | bool " Enable fancy ping output" |
| 460 | default y |
| 461 | depends on CONFIG_PING |
| 462 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 463 | Make the output from the ping applet include statistics, and at the |
| 464 | same time provide full support for ICMP packets. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 465 | |
| 466 | config CONFIG_PING6 |
| 467 | bool "ping6" |
| 468 | default n |
| 469 | depends on CONFIG_FEATURE_IPV6 |
| 470 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 471 | This will give you a ping that can talk IPv6. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 472 | |
| 473 | config CONFIG_FEATURE_FANCY_PING6 |
| 474 | bool " Enable fancy ping6 output" |
| 475 | default y |
| 476 | depends on CONFIG_PING6 |
| 477 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 478 | Make the output from the ping6 applet include statistics, and at the |
| 479 | same time provide full support for ICMP packets. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 480 | |
| 481 | config CONFIG_ROUTE |
| 482 | bool "route" |
| 483 | default n |
| 484 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 485 | Route displays or manipulates the kernel's IP routing tables. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 486 | |
| 487 | config CONFIG_TELNET |
| 488 | bool "telnet" |
| 489 | default n |
| 490 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 491 | Telnet is an interface to the TELNET protocol, but is also commonly |
| 492 | used to test other simple protocols. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 493 | |
| 494 | config CONFIG_FEATURE_TELNET_TTYPE |
| 495 | bool " Pass TERM type to remote host" |
| 496 | default y |
Glenn L McGrath | 80a6041 | 2002-12-06 23:11:30 +0000 | [diff] [blame] | 497 | depends on CONFIG_TELNET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 498 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 499 | Setting this option will forward the TERM environment variable to the |
| 500 | remote host you are connecting to. This is useful to make sure that |
| 501 | things like ANSI colors and other control sequences behave. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 502 | |
Eric Andersen | 539ffc9 | 2004-02-22 12:25:47 +0000 | [diff] [blame] | 503 | config CONFIG_FEATURE_TELNET_AUTOLOGIN |
| 504 | bool " Pass USER type to remote host" |
| 505 | default y |
| 506 | depends on CONFIG_TELNET |
| 507 | help |
| 508 | Setting this option will forward the USER environment variable to the |
| 509 | remote host you are connecting to. This is useful when you need to |
| 510 | log into a machine without telling the username (autologin). This |
| 511 | option enables `-a' and `-l USER' arguments. |
| 512 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 513 | config CONFIG_TELNETD |
| 514 | bool "telnetd" |
| 515 | default n |
Eric Andersen | 31ec93e | 2004-09-23 20:08:46 +0000 | [diff] [blame] | 516 | select CONFIG_LOGIN |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 517 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 518 | A daemon for the TELNET protocol, allowing you to log onto the host |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 519 | running the daemon. Please keep in mind that the TELNET protocol |
Eric Andersen | 31ec93e | 2004-09-23 20:08:46 +0000 | [diff] [blame] | 520 | sends passwords in plain text. If you can't afford the space for an |
| 521 | SSH daemon and you trust your network, you may say 'y' here. As a |
| 522 | more secure alternative, you should seriously consider installing the |
| 523 | very small Dropbear SSH daemon instead: |
| 524 | http://matt.ucc.asn.au/dropbear/dropbear.html |
| 525 | |
| 526 | Note that for busybox telnetd to work you need several things: |
| 527 | First of all, your kernel needs: |
| 528 | CONFIG_UNIX98_PTYS=y |
| 529 | CONFIG_DEVPTS_FS=y |
| 530 | |
| 531 | Next, you need a /dev/pts directory on your root filesystem: |
| 532 | |
| 533 | $ ls -ld /dev/pts |
| 534 | drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/ |
| 535 | |
| 536 | Next you need the pseudo terminal master multiplexer /dev/ptmx: |
| 537 | |
| 538 | $ ls -la /dev/ptmx |
| 539 | crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx |
| 540 | |
| 541 | Any /dev/ttyp[0-9]* files you may have can be removed. |
| 542 | Next, you need to mount the devpts filesystem on /dev/pts using: |
| 543 | |
| 544 | mount -t devpts devpts /dev/pts |
| 545 | |
| 546 | You need to be sure that Busybox has CONFIG_LOGIN and |
| 547 | CONFIG_FEATURE_SUID enabled. And finally, you should make |
| 548 | certain that Busybox has been installed setuid root: |
| 549 | |
| 550 | chown root.root /bin/busybox |
| 551 | chmod 4755 /bin/busybox |
| 552 | |
| 553 | with all that done, telnetd _should_ work.... |
| 554 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 555 | |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 556 | config CONFIG_FEATURE_TELNETD_INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 557 | bool " Support call from inetd only" |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 558 | default n |
| 559 | depends on CONFIG_TELNETD |
| 560 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 561 | Selecting this will make telnetd only callable from inetd, |
| 562 | removing the standalone support. |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 563 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 564 | config CONFIG_TFTP |
| 565 | bool "tftp" |
| 566 | default n |
| 567 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 568 | This enables the Trivial File Transfer Protocol client program. TFTP |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 569 | is usually used for simple, small transfers such as a root image |
| 570 | for a network-enabled bootloader. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 571 | |
| 572 | config CONFIG_FEATURE_TFTP_GET |
| 573 | bool " Enable \"get\" command" |
| 574 | default y |
| 575 | depends on CONFIG_TFTP |
| 576 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 577 | Add support for the GET command within the TFTP client. This allows |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 578 | a client to retrieve a file from a TFTP server. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 579 | |
| 580 | config CONFIG_FEATURE_TFTP_PUT |
| 581 | bool " Enable \"put\" command" |
| 582 | default y |
| 583 | depends on CONFIG_TFTP |
| 584 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 585 | Add support for the PUT command within the TFTP client. This allows |
| 586 | a client to transfer a file to a TFTP server. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 587 | |
| 588 | config CONFIG_FEATURE_TFTP_BLOCKSIZE |
| 589 | bool " Enable \"blocksize\" command" |
| 590 | default n |
| 591 | depends on CONFIG_TFTP |
| 592 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 593 | Allow the client to specify the desired block size for transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 594 | |
| 595 | config CONFIG_FEATURE_TFTP_DEBUG |
| 596 | bool " Enable debug" |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 597 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 598 | depends on CONFIG_TFTP |
| 599 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 600 | Enable debug settings for tftp. This is useful if you're running |
| 601 | into problems with tftp as the protocol doesn't help you much when |
| 602 | you run into problems. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 603 | |
| 604 | config CONFIG_TRACEROUTE |
| 605 | bool "traceroute" |
| 606 | default n |
| 607 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 608 | Utility to trace the route of IP packets |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 609 | |
| 610 | config CONFIG_FEATURE_TRACEROUTE_VERBOSE |
| 611 | bool " Enable verbose output" |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 612 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 613 | depends on CONFIG_TRACEROUTE |
| 614 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 615 | Add some verbosity to traceroute. This includes amongst other things |
| 616 | hostnames and ICMP response types. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 617 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame^] | 618 | config CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE |
| 619 | bool " Enable loose source route" |
| 620 | default n |
| 621 | depends on CONFIG_TRACEROUTE |
| 622 | help |
| 623 | Add feature for can specify a loose source route gateway |
| 624 | (8 maximum). |
| 625 | |
| 626 | config CONFIG_FEATURE_TRACEROUTE_USE_ICMP |
| 627 | bool " Use ICMP instead of UDP" |
| 628 | default n |
| 629 | depends on CONFIG_TRACEROUTE |
| 630 | help |
| 631 | Add feature for can use ICMP ECHO instead of UDP datagrams. |
| 632 | |
| 633 | |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 634 | config CONFIG_VCONFIG |
| 635 | bool "vconfig" |
| 636 | default n |
| 637 | help |
| 638 | Creates, removes, and configures VLAN interfaces |
| 639 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 640 | config CONFIG_WGET |
| 641 | bool "wget" |
| 642 | default n |
| 643 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 644 | wget is a utility for non-interactive download of files from HTTP, |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 645 | HTTPS, and FTP servers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 646 | |
| 647 | config CONFIG_FEATURE_WGET_STATUSBAR |
| 648 | bool " Enable a nifty process meter (+2k)" |
| 649 | default y |
| 650 | depends on CONFIG_WGET |
| 651 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 652 | Enable the transfer progress bar for wget transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 653 | |
| 654 | config CONFIG_FEATURE_WGET_AUTHENTICATION |
| 655 | bool " Enable HTTP authentication" |
| 656 | default y |
| 657 | depends on CONFIG_WGET |
| 658 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 659 | Support authenticated HTTP transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 660 | |
Glenn L McGrath | cc20ebc | 2003-09-10 23:52:15 +0000 | [diff] [blame] | 661 | config CONFIG_FEATURE_WGET_IP6_LITERAL |
| 662 | bool " Enable IPv6 literal addresses" |
| 663 | default y |
| 664 | depends on CONFIG_WGET |
| 665 | help |
| 666 | Support IPv6 address literal notation in URLs. |
| 667 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 668 | source networking/udhcp/Config.in |
| 669 | |
Rob Landley | ad8071f | 2005-04-30 03:49:37 +0000 | [diff] [blame] | 670 | config CONFIG_ZCIP |
| 671 | bool "zcip" |
| 672 | default n |
| 673 | help |
| 674 | ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927. |
| 675 | It's a daemon that allocates and defends a dynamically assigned |
| 676 | address on the 169.254/16 network, requiring no system administrator. |
| 677 | |
| 678 | See http://www.zeroconf.org for further details, and "zcip.script" |
| 679 | in the busybox examples. |
| 680 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 681 | endmenu |
| 682 | |