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