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