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