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