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 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 8 | config FEATURE_IPV6 |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 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 | |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 15 | config FEATURE_UNIX_LOCAL |
Denys Vlasenko | 47aaa2b | 2009-05-01 03:00:04 +0200 | [diff] [blame] | 16 | bool "Enable Unix domain socket support (usually not needed)" |
Denis Vlasenko | f6b4685 | 2009-04-25 13:16:53 +0000 | [diff] [blame] | 17 | default n |
| 18 | help |
| 19 | Enable Unix domain socket support in all busybox networking |
| 20 | applets. |
| 21 | |
Denis Vlasenko | 9d6c469 | 2007-11-14 10:18:33 +0000 | [diff] [blame] | 22 | config FEATURE_PREFER_IPV4_ADDRESS |
Bernhard Reutner-Fischer | 97b954d | 2009-02-14 13:17:48 +0000 | [diff] [blame] | 23 | bool "Prefer IPv4 addresses from DNS queries" |
Denis Vlasenko | 9d6c469 | 2007-11-14 10:18:33 +0000 | [diff] [blame] | 24 | default y |
| 25 | depends on FEATURE_IPV6 |
| 26 | help |
| 27 | Use IPv4 address of network host if it has one. |
| 28 | |
| 29 | If this option is off, the first returned address will be used. |
| 30 | This may cause problems when your DNS server is IPv6-capable and |
| 31 | is returning IPv6 host addresses too. If IPv6 address |
| 32 | precedes IPv4 one in DNS reply, busybox network applets |
| 33 | (e.g. wget) will use IPv6 address. On an IPv6-incapable host |
| 34 | or network applets will fail to connect to the host |
| 35 | using IPv6 address. |
| 36 | |
Denis Vlasenko | 5de9e9c | 2007-01-22 22:46:04 +0000 | [diff] [blame] | 37 | config VERBOSE_RESOLUTION_ERRORS |
| 38 | bool "Verbose resolution errors" |
| 39 | default n |
| 40 | help |
| 41 | Enable if you are not satisfied with simplistic |
| 42 | "can't resolve 'hostname.com'" and want to know more. |
| 43 | This may increase size of your executable a bit. |
| 44 | |
Denis Vlasenko | fa85b86 | 2007-01-07 01:24:12 +0000 | [diff] [blame] | 45 | config ARP |
| 46 | bool "arp" |
| 47 | default n |
| 48 | help |
Bernhard Reutner-Fischer | 6239b1f | 2007-05-26 11:59:01 +0000 | [diff] [blame] | 49 | Manipulate the system ARP cache. |
Denis Vlasenko | fa85b86 | 2007-01-07 01:24:12 +0000 | [diff] [blame] | 50 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 51 | config ARPING |
Glenn L McGrath | 9e59841 | 2003-01-09 10:06:01 +0000 | [diff] [blame] | 52 | bool "arping" |
| 53 | default n |
| 54 | help |
Bernhard Reutner-Fischer | 6239b1f | 2007-05-26 11:59:01 +0000 | [diff] [blame] | 55 | Ping hosts by ARP packets. |
Glenn L McGrath | 9e59841 | 2003-01-09 10:06:01 +0000 | [diff] [blame] | 56 | |
Bernhard Reutner-Fischer | d27d925 | 2008-01-13 15:23:27 +0000 | [diff] [blame] | 57 | config BRCTL |
| 58 | bool "brctl" |
| 59 | default n |
| 60 | help |
| 61 | Manage ethernet bridges. |
Bernhard Reutner-Fischer | 1aac3ab | 2008-01-13 18:43:50 +0000 | [diff] [blame] | 62 | Supports addbr/delbr and addif/delif. |
| 63 | |
Bernhard Reutner-Fischer | 1aac3ab | 2008-01-13 18:43:50 +0000 | [diff] [blame] | 64 | config FEATURE_BRCTL_FANCY |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 65 | bool "Fancy options" |
Bernhard Reutner-Fischer | 1aac3ab | 2008-01-13 18:43:50 +0000 | [diff] [blame] | 66 | default n |
| 67 | depends on BRCTL |
| 68 | help |
| 69 | Add support for extended option like: |
| 70 | setageing, setfd, sethello, setmaxage, |
| 71 | setpathcost, setportprio, setbridgeprio, |
| 72 | stp |
Bernhard Reutner-Fischer | 2b11fb4 | 2008-01-14 16:10:11 +0000 | [diff] [blame] | 73 | This adds about 600 bytes. |
Bernhard Reutner-Fischer | d27d925 | 2008-01-13 15:23:27 +0000 | [diff] [blame] | 74 | |
Denis Vlasenko | 278a1c2 | 2008-04-06 07:17:02 +0000 | [diff] [blame] | 75 | config FEATURE_BRCTL_SHOW |
| 76 | bool "Support show, showmac and showstp" |
| 77 | default n |
| 78 | depends on BRCTL && FEATURE_BRCTL_FANCY |
| 79 | help |
| 80 | Add support for option which prints the current config: |
| 81 | showmacs, showstp, show |
| 82 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 83 | config DNSD |
"Vladimir N. Oleynik" | 7b4aa6f | 2006-01-25 14:19:11 +0000 | [diff] [blame] | 84 | bool "dnsd" |
| 85 | default n |
| 86 | help |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 87 | Small and static DNS server daemon. |
"Vladimir N. Oleynik" | 7b4aa6f | 2006-01-25 14:19:11 +0000 | [diff] [blame] | 88 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 89 | config ETHER_WAKE |
Mike Frysinger | b662f0d | 2005-05-11 03:59:53 +0000 | [diff] [blame] | 90 | bool "ether-wake" |
| 91 | default n |
| 92 | help |
| 93 | Send a magic packet to wake up sleeping machines. |
| 94 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 95 | config FAKEIDENTD |
Mike Frysinger | fa69f11 | 2005-04-17 07:24:19 +0000 | [diff] [blame] | 96 | bool "fakeidentd" |
| 97 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 98 | select FEATURE_SYSLOG |
Mike Frysinger | fa69f11 | 2005-04-17 07:24:19 +0000 | [diff] [blame] | 99 | help |
Bernhard Reutner-Fischer | 38fc692 | 2006-04-18 11:21:07 +0000 | [diff] [blame] | 100 | fakeidentd listens on the ident port and returns a predefined |
| 101 | fake value on any query. |
Mike Frysinger | fa69f11 | 2005-04-17 07:24:19 +0000 | [diff] [blame] | 102 | |
Denis Vlasenko | 16b4a2d | 2009-03-08 09:30:56 +0000 | [diff] [blame] | 103 | config FTPD |
| 104 | bool "ftpd" |
| 105 | default n |
| 106 | help |
| 107 | simple FTP daemon. You have to run it via inetd. |
| 108 | |
| 109 | config FEATURE_FTP_WRITE |
Denis Vlasenko | 5e4fda0 | 2009-03-08 23:46:48 +0000 | [diff] [blame] | 110 | bool "Enable upload commands" |
Denis Vlasenko | 16b4a2d | 2009-03-08 09:30:56 +0000 | [diff] [blame] | 111 | default y |
| 112 | depends on FTPD |
| 113 | help |
Denis Vlasenko | 5e4fda0 | 2009-03-08 23:46:48 +0000 | [diff] [blame] | 114 | Enable all kinds of FTP upload commands (-w option) |
Denis Vlasenko | 16b4a2d | 2009-03-08 09:30:56 +0000 | [diff] [blame] | 115 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 116 | config FTPGET |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 117 | bool "ftpget" |
| 118 | default n |
| 119 | help |
| 120 | Retrieve a remote file via FTP. |
| 121 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 122 | config FTPPUT |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 123 | bool "ftpput" |
| 124 | default n |
| 125 | help |
| 126 | Store a remote file via FTP. |
| 127 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 128 | config FEATURE_FTPGETPUT_LONG_OPTIONS |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 129 | bool "Enable long options in ftpget/ftpput" |
| 130 | default n |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 131 | depends on GETOPT_LONG && (FTPGET || FTPPUT) |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 132 | help |
| 133 | Support long options for the ftpget/ftpput applet. |
| 134 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 135 | config HOSTNAME |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 136 | bool "hostname" |
| 137 | default n |
| 138 | help |
Bernhard Reutner-Fischer | 6239b1f | 2007-05-26 11:59:01 +0000 | [diff] [blame] | 139 | Show or set the system's host name. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 140 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 141 | config HTTPD |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 142 | bool "httpd" |
| 143 | default n |
| 144 | help |
| 145 | Serve web pages via an HTTP server. |
| 146 | |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 147 | config FEATURE_HTTPD_RANGES |
| 148 | bool "Support 'Ranges:' header" |
| 149 | default n |
| 150 | depends on HTTPD |
| 151 | help |
| 152 | Makes httpd emit "Accept-Ranges: bytes" header and understand |
| 153 | "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted |
| 154 | downloads, seeking in multimedia players etc. |
| 155 | |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 156 | config FEATURE_HTTPD_USE_SENDFILE |
| 157 | bool "Use sendfile system call" |
| 158 | default n |
| 159 | depends on HTTPD |
| 160 | help |
| 161 | When enabled, httpd will use the kernel sendfile() function |
| 162 | instead of read/write loop. |
| 163 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 164 | config FEATURE_HTTPD_SETUID |
Denis Vlasenko | db50647 | 2006-12-17 20:18:05 +0000 | [diff] [blame] | 165 | bool "Enable -u <user> option" |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 166 | default n |
Denis Vlasenko | db50647 | 2006-12-17 20:18:05 +0000 | [diff] [blame] | 167 | depends on HTTPD |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 168 | help |
| 169 | This option allows the server to run as a specific user |
| 170 | rather than defaulting to the user that starts the server. |
| 171 | Use of this option requires special privileges to change to a |
| 172 | different user. |
| 173 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 174 | config FEATURE_HTTPD_BASIC_AUTH |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 175 | bool "Enable Basic http Authentication" |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 176 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 177 | depends on HTTPD |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 178 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 179 | Utilizes password settings from /etc/httpd.conf for basic |
| 180 | authentication on a per url basis. |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 181 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 182 | config FEATURE_HTTPD_AUTH_MD5 |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 183 | bool "Support MD5 crypted passwords for http Authentication" |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 184 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 185 | depends on FEATURE_HTTPD_BASIC_AUTH |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 186 | help |
Bernhard Reutner-Fischer | 38fc692 | 2006-04-18 11:21:07 +0000 | [diff] [blame] | 187 | Enables basic per URL authentication from /etc/httpd.conf |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 188 | using md5 passwords. |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 189 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 190 | config FEATURE_HTTPD_CGI |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 191 | bool "Support Common Gateway Interface (CGI)" |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 192 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 193 | depends on HTTPD |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 194 | help |
| 195 | This option allows scripts and executables to be invoked |
Bernhard Reutner-Fischer | 38fc692 | 2006-04-18 11:21:07 +0000 | [diff] [blame] | 196 | when specific URLs are requested. |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 197 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 198 | config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 199 | bool "Support for running scripts through an interpreter" |
"Vladimir N. Oleynik" | 4333a09 | 2006-01-31 13:53:30 +0000 | [diff] [blame] | 200 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 201 | depends on FEATURE_HTTPD_CGI |
"Vladimir N. Oleynik" | 4333a09 | 2006-01-31 13:53:30 +0000 | [diff] [blame] | 202 | help |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 203 | This option enables support for running scripts through an |
| 204 | interpreter. Turn this on if you want PHP scripts to work |
Bernhard Reutner-Fischer | 6239b1f | 2007-05-26 11:59:01 +0000 | [diff] [blame] | 205 | properly. You need to supply an additional line in your httpd |
"Vladimir N. Oleynik" | 4333a09 | 2006-01-31 13:53:30 +0000 | [diff] [blame] | 206 | config file: |
| 207 | *.php:/path/to/your/php |
| 208 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 209 | config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 210 | bool "Set REMOTE_PORT environment variable for CGI" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 211 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 212 | depends on FEATURE_HTTPD_CGI |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 213 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 214 | Use of this option can assist scripts in generating |
| 215 | references that contain a unique port number. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 216 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 217 | config FEATURE_HTTPD_ENCODE_URL_STR |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 218 | bool "Enable -e option (useful for CGIs written as shell scripts)" |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 219 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 220 | depends on HTTPD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 221 | help |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 222 | This option allows html encoding of arbitrary strings for display |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 223 | by the browser. Output goes to stdout. |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 224 | For example, httpd -e "<Hello World>" produces |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 225 | "<Hello World>". |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 226 | |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 227 | config FEATURE_HTTPD_ERROR_PAGES |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 228 | bool "Support for custom error pages" |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 229 | default n |
| 230 | depends on HTTPD |
| 231 | help |
| 232 | This option allows you to define custom error pages in |
| 233 | the configuration file instead of the default HTTP status |
| 234 | error pages. For instance, if you add the line: |
| 235 | E404:/path/e404.html |
| 236 | in the config file, the server will respond the specified |
| 237 | '/path/e404.html' file instead of the terse '404 NOT FOUND' |
| 238 | message. |
| 239 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 240 | config FEATURE_HTTPD_PROXY |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 241 | bool "Support for reverse proxy" |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 242 | default n |
| 243 | depends on HTTPD |
| 244 | help |
| 245 | This option allows you to define URLs that will be forwarded |
| 246 | to another HTTP server. To setup add the following line to the |
| 247 | configuration file |
| 248 | P:/url/:http://hostname[:port]/new/path/ |
| 249 | Then a request to /url/myfile will be forwarded to |
| 250 | http://hostname[:port]/new/path/myfile. |
| 251 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 252 | config IFCONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 253 | bool "ifconfig" |
| 254 | default n |
| 255 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 256 | Ifconfig is used to configure the kernel-resident network interfaces. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 257 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 258 | config FEATURE_IFCONFIG_STATUS |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 259 | bool "Enable status reporting output (+7k)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 260 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 261 | depends on IFCONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 262 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 263 | If ifconfig is called with no arguments it will display the status |
| 264 | of the currently active interfaces. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 265 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 266 | config FEATURE_IFCONFIG_SLIP |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 267 | bool "Enable slip-specific options \"keepalive\" and \"outfill\"" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 268 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 269 | depends on IFCONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 270 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 271 | Allow "keepalive" and "outfill" support for SLIP. If you're not |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 272 | planning on using serial lines, leave this unchecked. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 273 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 274 | config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 275 | bool "Enable options \"mem_start\", \"io_addr\", and \"irq\"" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 276 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 277 | depends on IFCONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 278 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 279 | Allow the start address for shared memory, start address for I/O, |
| 280 | and/or the interrupt line used by the specified device. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 281 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 282 | config FEATURE_IFCONFIG_HW |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 283 | bool "Enable option \"hw\" (ether only)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 284 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 285 | depends on IFCONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 286 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 287 | Set the hardware address of this interface, if the device driver |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 288 | supports this operation. Currently, we only support the 'ether' |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 289 | class. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 290 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 291 | config FEATURE_IFCONFIG_BROADCAST_PLUS |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 292 | bool "Set the broadcast automatically" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 293 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 294 | depends on IFCONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 295 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 296 | Setting this will make ifconfig attempt to find the broadcast |
| 297 | automatically if the value '+' is used. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 298 | |
Denis Vlasenko | 06aed43 | 2008-02-26 18:25:24 +0000 | [diff] [blame] | 299 | config IFENSLAVE |
| 300 | bool "ifenslave" |
| 301 | default n |
| 302 | help |
| 303 | Userspace application to bind several interfaces |
| 304 | to a logical interface (use with kernel bonding driver). |
| 305 | |
Denis Vlasenko | 71c1657 | 2009-04-26 01:08:51 +0000 | [diff] [blame] | 306 | config IFPLUGD |
| 307 | bool "ifplugd" |
| 308 | default n |
| 309 | help |
| 310 | Network interface plug detection daemon. |
| 311 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 312 | config IFUPDOWN |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 313 | bool "ifupdown" |
| 314 | default n |
| 315 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 316 | Activate or deactivate the specified interfaces. This applet makes |
Eric Andersen | 342aea9 | 2003-07-26 09:27:02 +0000 | [diff] [blame] | 317 | use of either "ifconfig" and "route" or the "ip" command to actually |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 318 | configure network interfaces. Therefore, you will probably also want |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 319 | to enable either IFCONFIG and ROUTE, or enable |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 320 | FEATURE_IFUPDOWN_IP and the various IP options. Of |
Eric Andersen | 342aea9 | 2003-07-26 09:27:02 +0000 | [diff] [blame] | 321 | course you could use non-busybox versions of these programs, so |
| 322 | against my better judgement (since this will surely result in plenty |
| 323 | of support questions on the mailing list), I do not force you to |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 324 | enable these additional options. It is up to you to supply either |
Bernhard Reutner-Fischer | 6111a8f | 2007-03-19 20:28:03 +0000 | [diff] [blame] | 325 | "ifconfig", "route" and "run-parts" or the "ip" command, either |
Bernhard Reutner-Fischer | 0864f4d | 2007-03-28 16:46:03 +0000 | [diff] [blame] | 326 | via busybox or via standalone utilities. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 327 | |
Denis Vlasenko | 2a86a61 | 2007-07-19 21:49:30 +0000 | [diff] [blame] | 328 | config IFUPDOWN_IFSTATE_PATH |
| 329 | string "Absolute path to ifstate file" |
| 330 | default "/var/run/ifstate" |
Bernhard Reutner-Fischer | fc20242 | 2007-09-02 22:12:07 +0000 | [diff] [blame] | 331 | depends on IFUPDOWN |
Denis Vlasenko | 2a86a61 | 2007-07-19 21:49:30 +0000 | [diff] [blame] | 332 | help |
| 333 | ifupdown keeps state information in a file called ifstate. |
| 334 | Typically it is located in /var/run/ifstate, however |
| 335 | some distributions tend to put it in other places |
| 336 | (debian, for example, uses /etc/network/run/ifstate). |
| 337 | This config option defines location of ifstate. |
| 338 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 339 | config FEATURE_IFUPDOWN_IP |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 340 | bool "Use ip applet" |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 341 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 342 | depends on IFUPDOWN |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 343 | help |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 344 | Use the iproute "ip" command to implement "ifup" and "ifdown", rather |
| 345 | than the default of using the older 'ifconfig' and 'route' utilities. |
| 346 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 347 | config FEATURE_IFUPDOWN_IP_BUILTIN |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 348 | bool "Use busybox ip applet" |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 349 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 350 | depends on FEATURE_IFUPDOWN_IP |
| 351 | select IP |
| 352 | select FEATURE_IP_ADDRESS |
| 353 | select FEATURE_IP_LINK |
| 354 | select FEATURE_IP_ROUTE |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 355 | help |
| 356 | Use the busybox iproute "ip" applet to implement "ifupdown". |
| 357 | |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 358 | If left disabled, you must install the full-blown iproute2 |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 359 | utility or the "ifup" and "ifdown" applets will not work. |
| 360 | |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 361 | config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 362 | bool "Use busybox ifconfig and route applets" |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 363 | default y |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 364 | depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 365 | select IFCONFIG |
| 366 | select ROUTE |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 367 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 368 | Use the busybox iproute "ifconfig" and "route" applets to |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 369 | implement the "ifup" and "ifdown" utilities. |
| 370 | |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 371 | If left disabled, you must install the full-blown ifconfig |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 372 | and route utilities, or the "ifup" and "ifdown" applets will not |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 373 | work. |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 374 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 375 | config FEATURE_IFUPDOWN_IPV4 |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 376 | bool "Support for IPv4" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 377 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 378 | depends on IFUPDOWN |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 379 | help |
Denis Vlasenko | eda43d7 | 2007-05-02 22:04:38 +0000 | [diff] [blame] | 380 | If you want ifup/ifdown to talk IPv4, leave this on. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 381 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 382 | config FEATURE_IFUPDOWN_IPV6 |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 383 | bool "Support for IPv6" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 384 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 385 | depends on IFUPDOWN && FEATURE_IPV6 |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 386 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 387 | If you need support for IPv6, turn this option on. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 388 | |
Denis Vlasenko | eda43d7 | 2007-05-02 22:04:38 +0000 | [diff] [blame] | 389 | ### UNUSED |
Denis Vlasenko | 6cee58e | 2007-11-04 15:43:26 +0000 | [diff] [blame] | 390 | ###config FEATURE_IFUPDOWN_IPX |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 391 | ### bool "Support for IPX" |
Denis Vlasenko | 6cee58e | 2007-11-04 15:43:26 +0000 | [diff] [blame] | 392 | ### default n |
| 393 | ### depends on IFUPDOWN |
| 394 | ### help |
| 395 | ### If this option is selected you can use busybox to work with IPX |
| 396 | ### networks. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 397 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 398 | config FEATURE_IFUPDOWN_MAPPING |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 399 | bool "Enable mapping support" |
Glenn L McGrath | cdbe5e5 | 2002-12-06 08:35:55 +0000 | [diff] [blame] | 400 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 401 | depends on IFUPDOWN |
Glenn L McGrath | cdbe5e5 | 2002-12-06 08:35:55 +0000 | [diff] [blame] | 402 | help |
| 403 | This enables support for the "mapping" stanza, unless you have |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 404 | a weird network setup you don't need it. |
Glenn L McGrath | cdbe5e5 | 2002-12-06 08:35:55 +0000 | [diff] [blame] | 405 | |
Denis Vlasenko | eda43d7 | 2007-05-02 22:04:38 +0000 | [diff] [blame] | 406 | config FEATURE_IFUPDOWN_EXTERNAL_DHCP |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 407 | bool "Support for external dhcp clients" |
Denis Vlasenko | eda43d7 | 2007-05-02 22:04:38 +0000 | [diff] [blame] | 408 | default n |
| 409 | depends on IFUPDOWN |
| 410 | help |
| 411 | This enables support for the external dhcp clients. Clients are |
| 412 | tried in the following order: dhcpcd, dhclient, pump and udhcpc. |
| 413 | Otherwise, if udhcpc applet is enabled, it is used. |
| 414 | Otherwise, ifup/ifdown will have no support for DHCP. |
| 415 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 416 | config INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 417 | bool "inetd" |
| 418 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 419 | select FEATURE_SYSLOG |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 420 | help |
| 421 | Internet superserver daemon |
| 422 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 423 | config FEATURE_INETD_SUPPORT_BUILTIN_ECHO |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 424 | bool "Support echo service" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 425 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 426 | depends on INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 427 | help |
| 428 | Echo received data internal inetd service |
| 429 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 430 | config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 431 | bool "Support discard service" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 432 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 433 | depends on INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 434 | help |
| 435 | Internet /dev/null internal inetd service |
| 436 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 437 | config FEATURE_INETD_SUPPORT_BUILTIN_TIME |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 438 | bool "Support time service" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 439 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 440 | depends on INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 441 | help |
| 442 | Return 32 bit time since 1900 internal inetd service |
| 443 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 444 | config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 445 | bool "Support daytime service" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 446 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 447 | depends on INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 448 | help |
| 449 | Return human-readable time internal inetd service |
| 450 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 451 | config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 452 | bool "Support chargen service" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 453 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 454 | depends on INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 455 | help |
| 456 | Familiar character generator internal inetd service |
| 457 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 458 | config FEATURE_INETD_RPC |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 459 | bool "Support RPC services" |
"Vladimir N. Oleynik" | 1a2f4d9 | 2005-10-03 08:08:58 +0000 | [diff] [blame] | 460 | default n |
Denis Vlasenko | a7825f2 | 2007-06-16 13:56:51 +0000 | [diff] [blame] | 461 | depends on INETD |
| 462 | select FEATURE_HAVE_RPC |
"Vladimir N. Oleynik" | 1a2f4d9 | 2005-10-03 08:08:58 +0000 | [diff] [blame] | 463 | help |
Bernhard Reutner-Fischer | 732268f | 2006-12-01 16:56:12 +0000 | [diff] [blame] | 464 | Support Sun-RPC based services |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 465 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 466 | config IP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 467 | bool "ip" |
| 468 | default n |
| 469 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 470 | The "ip" applet is a TCP/IP interface configuration and routing |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 471 | utility. You generally don't need "ip" to use busybox with |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 472 | TCP/IP. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 473 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 474 | config FEATURE_IP_ADDRESS |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 475 | bool "ip address" |
| 476 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 477 | depends on IP |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 478 | help |
| 479 | Address manipulation support for the "ip" applet. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 480 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 481 | config FEATURE_IP_LINK |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 482 | bool "ip link" |
| 483 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 484 | depends on IP |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 485 | help |
| 486 | Configure network devices with "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 487 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 488 | config FEATURE_IP_ROUTE |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 489 | bool "ip route" |
| 490 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 491 | depends on IP |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 492 | help |
| 493 | Add support for routing table management to "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 494 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 495 | config FEATURE_IP_TUNNEL |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 496 | bool "ip tunnel" |
| 497 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 498 | depends on IP |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 499 | help |
| 500 | Add support for tunneling commands to "ip". |
| 501 | |
Bernhard Reutner-Fischer | 921f5df | 2006-11-21 15:36:08 +0000 | [diff] [blame] | 502 | config FEATURE_IP_RULE |
| 503 | bool "ip rule" |
| 504 | default n |
| 505 | depends on IP |
| 506 | help |
| 507 | Add support for rule commands to "ip". |
| 508 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 509 | config FEATURE_IP_SHORT_FORMS |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 510 | bool "Support short forms of ip commands" |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 511 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 512 | depends on IP |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 513 | help |
| 514 | Also support short-form of ip <OBJECT> commands: |
| 515 | ip addr -> ipaddr |
| 516 | ip link -> iplink |
| 517 | ip route -> iproute |
| 518 | ip tunnel -> iptunnel |
Bernhard Reutner-Fischer | 7a7e54a | 2007-02-02 16:06:02 +0000 | [diff] [blame] | 519 | ip rule -> iprule |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 520 | |
| 521 | Say N unless you desparately need the short form of the ip |
| 522 | object commands. |
| 523 | |
Denis Vlasenko | dfc0740 | 2007-10-29 19:33:26 +0000 | [diff] [blame] | 524 | config FEATURE_IP_RARE_PROTOCOLS |
Bernhard Reutner-Fischer | 1641d61 | 2007-10-29 21:21:27 +0000 | [diff] [blame] | 525 | bool "Support displaying rarely used link types" |
Denis Vlasenko | dfc0740 | 2007-10-29 19:33:26 +0000 | [diff] [blame] | 526 | default n |
| 527 | depends on IP |
| 528 | help |
| 529 | If you are not going to use links of type "frad", "econet", |
| 530 | "bif" etc, you probably don't need to enable this. |
| 531 | Ethernet, wireless, infrared, ppp/slip, ip tunnelling |
| 532 | link types are supported without this option selected. |
| 533 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 534 | config IPADDR |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 535 | bool |
| 536 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 537 | depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 538 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 539 | config IPLINK |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 540 | bool |
| 541 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 542 | depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 543 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 544 | config IPROUTE |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 545 | bool |
| 546 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 547 | depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 548 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 549 | config IPTUNNEL |
Bernhard Reutner-Fischer | 2949577 | 2006-04-18 08:11:37 +0000 | [diff] [blame] | 550 | bool |
| 551 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 552 | depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 553 | |
Bernhard Reutner-Fischer | 921f5df | 2006-11-21 15:36:08 +0000 | [diff] [blame] | 554 | config IPRULE |
| 555 | bool |
| 556 | default y |
| 557 | depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE |
| 558 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 559 | config IPCALC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 560 | bool "ipcalc" |
| 561 | default n |
| 562 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 563 | ipcalc takes an IP address and netmask and calculates the |
| 564 | resulting broadcast, network, and host range. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 565 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 566 | config FEATURE_IPCALC_FANCY |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 567 | bool "Fancy IPCALC, more options, adds 1 kbyte" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 568 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 569 | depends on IPCALC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 570 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 571 | Adds the options hostname, prefix and silent to the output of |
| 572 | "ipcalc". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 573 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 574 | config FEATURE_IPCALC_LONG_OPTIONS |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 575 | bool "Enable long options" |
| 576 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 577 | depends on IPCALC && GETOPT_LONG |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 578 | help |
| 579 | Support long options for the ipcalc applet. |
| 580 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 581 | config NAMEIF |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 582 | bool "nameif" |
| 583 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 584 | select FEATURE_SYSLOG |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 585 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 586 | nameif is used to rename network interface by its MAC address. |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 587 | Renamed interfaces MUST be in the down state. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 588 | It is possible to use a file (default: /etc/mactab) |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 589 | with list of new interface names and MACs. |
Denis Vlasenko | 01eaee9 | 2008-04-21 02:21:45 +0000 | [diff] [blame] | 590 | Maximum interface name length: IFNAMSIZ = 16 |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 591 | File fields are separated by space or tab. |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 592 | File format: |
| 593 | # Comment |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 594 | new_interface_name XX:XX:XX:XX:XX:XX |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 595 | |
Denis Vlasenko | f7be20e | 2007-12-24 14:09:19 +0000 | [diff] [blame] | 596 | config FEATURE_NAMEIF_EXTENDED |
| 597 | bool "Extended nameif" |
| 598 | default n |
| 599 | depends on NAMEIF |
| 600 | help |
| 601 | This extends the nameif syntax to support the bus_info and driver |
| 602 | checks. The syntax is compatible to the normal nameif. |
| 603 | File format: |
| 604 | new_interface_name driver=asix bus=usb-0000:00:08.2-3 |
| 605 | new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5 |
| 606 | new_interface_name mac=00:80:C8:38:91:B5 |
| 607 | new_interface_name 00:80:C8:38:91:B5 |
| 608 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 609 | config NC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 610 | bool "nc" |
| 611 | default n |
| 612 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 613 | A simple Unix utility which reads and writes data across network |
| 614 | connections. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 615 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 616 | config NC_SERVER |
Denis Vlasenko | 29fe726 | 2007-04-05 20:26:28 +0000 | [diff] [blame] | 617 | bool "Netcat server options (-l)" |
Mike Frysinger | 7dc7f40 | 2005-05-06 05:00:34 +0000 | [diff] [blame] | 618 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 619 | depends on NC |
Mike Frysinger | 7dc7f40 | 2005-05-06 05:00:34 +0000 | [diff] [blame] | 620 | help |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 621 | Allow netcat to act as a server. |
| 622 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 623 | config NC_EXTRA |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 624 | bool "Netcat extensions (-eiw and filename)" |
| 625 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 626 | depends on NC |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 627 | help |
| 628 | Add -e (support for executing the rest of the command line after |
| 629 | making or receiving a successful connection), -i (delay interval for |
| 630 | lines sent), -w (timeout for initial connection). |
Mike Frysinger | 7dc7f40 | 2005-05-06 05:00:34 +0000 | [diff] [blame] | 631 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 632 | config NETSTAT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 633 | bool "netstat" |
| 634 | default n |
| 635 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 636 | netstat prints information about the Linux networking subsystem. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 637 | |
Denis Vlasenko | 418a7fb | 2007-05-15 23:57:46 +0000 | [diff] [blame] | 638 | config FEATURE_NETSTAT_WIDE |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 639 | bool "Enable wide netstat output" |
Denis Vlasenko | 418a7fb | 2007-05-15 23:57:46 +0000 | [diff] [blame] | 640 | default n |
| 641 | depends on NETSTAT |
| 642 | help |
| 643 | Add support for wide columns. Useful when displaying IPv6 addresses |
| 644 | (-W option). |
| 645 | |
Denis Vlasenko | 6e69e42 | 2008-07-27 12:10:07 +0000 | [diff] [blame] | 646 | config FEATURE_NETSTAT_PRG |
| 647 | bool "Enable PID/Program name output" |
| 648 | default n |
| 649 | depends on NETSTAT |
| 650 | help |
| 651 | Add support for -p flag to print out PID and program name. |
| 652 | +700 bytes of code. |
| 653 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 654 | config NSLOOKUP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 655 | bool "nslookup" |
| 656 | default n |
| 657 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 658 | nslookup is a tool to query Internet name servers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 659 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 660 | config PING |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 661 | bool "ping" |
| 662 | default n |
| 663 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 664 | ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 665 | elicit an ICMP ECHO_RESPONSE from a host or gateway. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 666 | |
Denis Vlasenko | b9a279b | 2007-01-24 23:53:22 +0000 | [diff] [blame] | 667 | config PING6 |
| 668 | bool "ping6" |
| 669 | default n |
| 670 | depends on FEATURE_IPV6 && PING |
| 671 | help |
| 672 | This will give you a ping that can talk IPv6. |
| 673 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 674 | config FEATURE_FANCY_PING |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 675 | bool "Enable fancy ping output" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 676 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 677 | depends on PING |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 678 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 679 | Make the output from the ping applet include statistics, and at the |
| 680 | same time provide full support for ICMP packets. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 681 | |
Paul Fox | 0b2b584 | 2008-02-01 23:25:32 +0000 | [diff] [blame] | 682 | config PSCAN |
| 683 | bool "pscan" |
| 684 | default n |
| 685 | help |
| 686 | Simple network port scanner. |
| 687 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 688 | config ROUTE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 689 | bool "route" |
| 690 | default n |
| 691 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 692 | Route displays or manipulates the kernel's IP routing tables. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 693 | |
Denis Vlasenko | 14923db | 2007-06-20 15:23:03 +0000 | [diff] [blame] | 694 | config SLATTACH |
| 695 | bool "slattach" |
| 696 | default n |
| 697 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 698 | slattach is a small utility to attach network interfaces to serial |
| 699 | lines. |
Denis Vlasenko | 14923db | 2007-06-20 15:23:03 +0000 | [diff] [blame] | 700 | |
Bernhard Reutner-Fischer | 0901c51 | 2008-09-04 13:22:58 +0000 | [diff] [blame] | 701 | #config TC |
| 702 | # bool "tc" |
| 703 | # default n |
| 704 | # help |
| 705 | # show / manipulate traffic control settings |
| 706 | # |
| 707 | #config FEATURE_TC_INGRESS |
| 708 | # def_bool n |
| 709 | # depends on TC |
| 710 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 711 | config TELNET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 712 | bool "telnet" |
| 713 | default n |
| 714 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 715 | Telnet is an interface to the TELNET protocol, but is also commonly |
| 716 | used to test other simple protocols. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 717 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 718 | config FEATURE_TELNET_TTYPE |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 719 | bool "Pass TERM type to remote host" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 720 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 721 | depends on TELNET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 722 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 723 | Setting this option will forward the TERM environment variable to the |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 724 | remote host you are connecting to. This is useful to make sure that |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 725 | things like ANSI colors and other control sequences behave. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 726 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 727 | config FEATURE_TELNET_AUTOLOGIN |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 728 | bool "Pass USER type to remote host" |
Eric Andersen | 539ffc9 | 2004-02-22 12:25:47 +0000 | [diff] [blame] | 729 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 730 | depends on TELNET |
Eric Andersen | 539ffc9 | 2004-02-22 12:25:47 +0000 | [diff] [blame] | 731 | help |
| 732 | Setting this option will forward the USER environment variable to the |
| 733 | remote host you are connecting to. This is useful when you need to |
| 734 | log into a machine without telling the username (autologin). This |
| 735 | option enables `-a' and `-l USER' arguments. |
| 736 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 737 | config TELNETD |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 738 | bool "telnetd" |
| 739 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 740 | select FEATURE_SYSLOG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 741 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 742 | A daemon for the TELNET protocol, allowing you to log onto the host |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 743 | running the daemon. Please keep in mind that the TELNET protocol |
| 744 | sends passwords in plain text. If you can't afford the space for an |
| 745 | SSH daemon and you trust your network, you may say 'y' here. As a |
Eric Andersen | 31ec93e | 2004-09-23 20:08:46 +0000 | [diff] [blame] | 746 | more secure alternative, you should seriously consider installing the |
| 747 | very small Dropbear SSH daemon instead: |
| 748 | http://matt.ucc.asn.au/dropbear/dropbear.html |
| 749 | |
| 750 | Note that for busybox telnetd to work you need several things: |
| 751 | First of all, your kernel needs: |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 752 | UNIX98_PTYS=y |
| 753 | DEVPTS_FS=y |
Eric Andersen | 31ec93e | 2004-09-23 20:08:46 +0000 | [diff] [blame] | 754 | |
| 755 | Next, you need a /dev/pts directory on your root filesystem: |
| 756 | |
| 757 | $ ls -ld /dev/pts |
| 758 | drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/ |
| 759 | |
| 760 | Next you need the pseudo terminal master multiplexer /dev/ptmx: |
| 761 | |
| 762 | $ ls -la /dev/ptmx |
| 763 | crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx |
| 764 | |
| 765 | Any /dev/ttyp[0-9]* files you may have can be removed. |
| 766 | Next, you need to mount the devpts filesystem on /dev/pts using: |
| 767 | |
| 768 | mount -t devpts devpts /dev/pts |
| 769 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 770 | You need to be sure that Busybox has LOGIN and |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 771 | FEATURE_SUID enabled. And finally, you should make |
Eric Andersen | 31ec93e | 2004-09-23 20:08:46 +0000 | [diff] [blame] | 772 | certain that Busybox has been installed setuid root: |
| 773 | |
| 774 | chown root.root /bin/busybox |
| 775 | chmod 4755 /bin/busybox |
| 776 | |
| 777 | with all that done, telnetd _should_ work.... |
| 778 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 779 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 780 | config FEATURE_TELNETD_STANDALONE |
| 781 | bool "Support standalone telnetd (not inetd only)" |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 782 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 783 | depends on TELNETD |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 784 | help |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 785 | Selecting this will make telnetd able to run standalone. |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 786 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 787 | config TFTP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 788 | bool "tftp" |
| 789 | default n |
| 790 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 791 | This enables the Trivial File Transfer Protocol client program. TFTP |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 792 | is usually used for simple, small transfers such as a root image |
| 793 | for a network-enabled bootloader. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 794 | |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 795 | config TFTPD |
| 796 | bool "tftpd" |
| 797 | default n |
| 798 | help |
| 799 | This enables the Trivial File Transfer Protocol server program. |
| 800 | It expects that stdin is a datagram socket and a packet |
| 801 | is already pending on it. It will exit after one transfer. |
| 802 | In other words: it should be run from inetd in nowait mode, |
| 803 | or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR" |
| 804 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 805 | config FEATURE_TFTP_GET |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 806 | bool "Enable \"get\" command" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 807 | default y |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 808 | depends on TFTP || TFTPD |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 809 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 810 | Add support for the GET command within the TFTP client. This allows |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 811 | a client to retrieve a file from a TFTP server. |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 812 | Also enable upload support in tftpd, if tftpd is selected. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 813 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 814 | config FEATURE_TFTP_PUT |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 815 | bool "Enable \"put\" command" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 816 | default y |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 817 | depends on TFTP || TFTPD |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 818 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 819 | Add support for the PUT command within the TFTP client. This allows |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 820 | a client to transfer a file to a TFTP server. |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 821 | Also enable download support in tftpd, if tftpd is selected. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 822 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 823 | config FEATURE_TFTP_BLOCKSIZE |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 824 | bool "Enable \"blksize\" protocol option" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 825 | default n |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 826 | depends on TFTP || TFTPD |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 827 | help |
Denis Vlasenko | aa9b182 | 2008-03-17 09:10:39 +0000 | [diff] [blame] | 828 | Allow tftp to specify block size, and tftpd to understand |
| 829 | "blksize" option. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 830 | |
Denis Vlasenko | 35a064b | 2008-11-06 00:49:59 +0000 | [diff] [blame] | 831 | config TFTP_DEBUG |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 832 | bool "Enable debug" |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 833 | default n |
Denis Vlasenko | ae6e135 | 2008-11-22 18:41:41 +0000 | [diff] [blame] | 834 | depends on TFTP || TFTPD |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 835 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 836 | Enable debug settings for tftp. This is useful if you're running |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 837 | into problems with tftp as the protocol doesn't help you much when |
| 838 | you run into problems. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 839 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 840 | config TRACEROUTE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 841 | bool "traceroute" |
| 842 | default n |
| 843 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 844 | Utility to trace the route of IP packets |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 845 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 846 | config FEATURE_TRACEROUTE_VERBOSE |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 847 | bool "Enable verbose output" |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 848 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 849 | depends on TRACEROUTE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 850 | help |
Bernhard Reutner-Fischer | 12aca79 | 2009-02-24 10:03:22 +0000 | [diff] [blame] | 851 | Add some verbosity to traceroute. This includes among other things |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 852 | hostnames and ICMP response types. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 853 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 854 | config FEATURE_TRACEROUTE_SOURCE_ROUTE |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 855 | bool "Enable loose source route" |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 856 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 857 | depends on TRACEROUTE |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 858 | help |
Bernhard Reutner-Fischer | c00411a | 2006-01-04 13:35:09 +0000 | [diff] [blame] | 859 | Add option to specify a loose source route gateway |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 860 | (8 maximum). |
| 861 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 862 | config FEATURE_TRACEROUTE_USE_ICMP |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 863 | bool "Use ICMP instead of UDP" |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 864 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 865 | depends on TRACEROUTE |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 866 | help |
Bernhard Reutner-Fischer | 30e3df3 | 2009-02-24 10:05:15 +0000 | [diff] [blame] | 867 | Add option -I to use ICMP ECHO instead of UDP datagrams. |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 868 | |
Mike Frysinger | 1b4e1da | 2006-05-08 03:24:36 +0000 | [diff] [blame] | 869 | source networking/udhcp/Config.in |
| 870 | |
Wade Berrier | 142c5cb | 2008-11-14 21:18:45 +0000 | [diff] [blame] | 871 | config IFUPDOWN_UDHCPC_CMD_OPTIONS |
| 872 | string "ifup udhcpc command line options" |
| 873 | default "-R -n" |
| 874 | depends on IFUPDOWN && APP_UDHCPC |
| 875 | help |
| 876 | Command line options to pass to udhcpc from ifup. |
| 877 | Intended to alter options not available in /etc/network/interfaces. |
| 878 | (IE: --syslog --background etc...) |
| 879 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 880 | config VCONFIG |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 881 | bool "vconfig" |
| 882 | default n |
| 883 | help |
| 884 | Creates, removes, and configures VLAN interfaces |
| 885 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 886 | config WGET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 887 | bool "wget" |
| 888 | default n |
| 889 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 890 | wget is a utility for non-interactive download of files from HTTP, |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 891 | HTTPS, and FTP servers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 892 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 893 | config FEATURE_WGET_STATUSBAR |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 894 | bool "Enable a nifty process meter (+2k)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 895 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 896 | depends on WGET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 897 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 898 | Enable the transfer progress bar for wget transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 899 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 900 | config FEATURE_WGET_AUTHENTICATION |
Bernhard Reutner-Fischer | ea46f45 | 2006-04-18 11:11:40 +0000 | [diff] [blame] | 901 | bool "Enable HTTP authentication" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 902 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 903 | depends on WGET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 904 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 905 | Support authenticated HTTP transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 906 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 907 | config FEATURE_WGET_LONG_OPTIONS |
Bernhard Reutner-Fischer | 8d3a6f7 | 2006-05-31 14:11:38 +0000 | [diff] [blame] | 908 | bool "Enable long options" |
| 909 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 910 | depends on WGET && GETOPT_LONG |
Bernhard Reutner-Fischer | 8d3a6f7 | 2006-05-31 14:11:38 +0000 | [diff] [blame] | 911 | help |
| 912 | Support long options for the wget applet. |
| 913 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 914 | config ZCIP |
Rob Landley | ad8071f | 2005-04-30 03:49:37 +0000 | [diff] [blame] | 915 | bool "zcip" |
| 916 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 917 | select FEATURE_SYSLOG |
Rob Landley | ad8071f | 2005-04-30 03:49:37 +0000 | [diff] [blame] | 918 | help |
| 919 | ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927. |
| 920 | It's a daemon that allocates and defends a dynamically assigned |
| 921 | address on the 169.254/16 network, requiring no system administrator. |
| 922 | |
| 923 | See http://www.zeroconf.org for further details, and "zcip.script" |
| 924 | in the busybox examples. |
| 925 | |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 926 | config TCPSVD |
| 927 | bool "tcpsvd" |
| 928 | default n |
| 929 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 930 | tcpsvd listens on a TCP port and runs a program for each new |
| 931 | connection. |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 932 | |
Denis Vlasenko | 39b6813 | 2009-01-23 02:07:14 +0000 | [diff] [blame] | 933 | config TUNCTL |
| 934 | bool "tunctl" |
| 935 | default n |
| 936 | help |
| 937 | tunctl creates or deletes tun devices. |
| 938 | |
| 939 | config FEATURE_TUNCTL_UG |
| 940 | bool "Support owner:group assignment" |
| 941 | default n |
| 942 | depends on TUNCTL |
| 943 | help |
| 944 | Allow to specify owner and group of newly created interface. |
| 945 | 340 bytes of pure bloat. Say no here. |
| 946 | |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 947 | config UDPSVD |
| 948 | bool "udpsvd" |
| 949 | default n |
| 950 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 951 | udpsvd listens on an UDP port and runs a program for each new |
| 952 | connection. |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 953 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 954 | endmenu |