Config.in 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see docs/Kconfig-language.txt.
  5. #
  6. menu "Networking Utilities"
  7. config BUSYBOX_FEATURE_IPV6
  8. bool "Enable IPv6 support"
  9. default y
  10. help
  11. Enable IPv6 support in busybox.
  12. This adds IPv6 support in the networking applets.
  13. config BUSYBOX_FEATURE_UNIX_LOCAL
  14. bool "Enable Unix domain socket support (usually not needed)"
  15. default n
  16. help
  17. Enable Unix domain socket support in all busybox networking
  18. applets. Address of the form local:/path/to/unix/socket
  19. will be recognized.
  20. This extension is almost never used in real world usage.
  21. You most likely want to say N.
  22. config BUSYBOX_FEATURE_PREFER_IPV4_ADDRESS
  23. bool "Prefer IPv4 addresses from DNS queries"
  24. default y
  25. depends on BUSYBOX_FEATURE_IPV6
  26. help
  27. Use IPv4 address of network host if it has one.
  28. If this option is off, the first returned address will be used.
  29. This may cause problems when your DNS server is IPv6-capable and
  30. is returning IPv6 host addresses too. If IPv6 address
  31. precedes IPv4 one in DNS reply, busybox network applets
  32. (e.g. wget) will use IPv6 address. On an IPv6-incapable host
  33. or network applets will fail to connect to the host
  34. using IPv6 address.
  35. config BUSYBOX_VERBOSE_RESOLUTION_ERRORS
  36. bool "Verbose resolution errors"
  37. default n
  38. help
  39. Enable if you are not satisfied with simplistic
  40. "can't resolve 'hostname.com'" and want to know more.
  41. This may increase size of your executable a bit.
  42. config BUSYBOX_FEATURE_ETC_NETWORKS
  43. bool "Support /etc/networks"
  44. default n
  45. help
  46. Enable support for network names in /etc/networks. This is
  47. a rarely used feature which allows you to use names
  48. instead of IP/mask pairs in route command.
  49. config BUSYBOX_FEATURE_ETC_SERVICES
  50. bool "Consult /etc/services even for well-known ports"
  51. default n
  52. help
  53. Look up e.g. "telnet" and "http" in /etc/services file
  54. instead of assuming ports 23 and 80.
  55. This is almost never necessary (everybody uses standard ports),
  56. and it makes sense to avoid reading this file.
  57. If you disable this option, in the cases where port is explicitly
  58. specified as a service name (e.g. "telnet HOST PORTNAME"),
  59. it will still be looked up in /etc/services.
  60. config BUSYBOX_FEATURE_HWIB
  61. bool "Support infiniband HW"
  62. default y
  63. help
  64. Support for printing infiniband addresses in network applets.
  65. config BUSYBOX_FEATURE_TLS_SHA1
  66. bool "In TLS code, support ciphers which use deprecated SHA1"
  67. depends on BUSYBOX_TLS
  68. default n
  69. help
  70. Selecting this option increases interoperability with very old
  71. servers, but slightly increases code size.
  72. Most TLS servers support SHA256 today (2018), since SHA1 is
  73. considered possibly insecure (although not yet definitely broken).
  74. config BUSYBOX_ARP
  75. bool "arp (10 kb)"
  76. default y
  77. help
  78. Manipulate the system ARP cache.
  79. config BUSYBOX_ARPING
  80. bool "arping (9 kb)"
  81. default y
  82. help
  83. Ping hosts by ARP packets.
  84. config BUSYBOX_BRCTL
  85. bool "brctl (4.7 kb)"
  86. default y
  87. help
  88. Manage ethernet bridges.
  89. Supports addbr/delbr and addif/delif.
  90. config BUSYBOX_FEATURE_BRCTL_FANCY
  91. bool "Fancy options"
  92. default y
  93. depends on BUSYBOX_BRCTL
  94. help
  95. Add support for extended option like:
  96. setageing, setfd, sethello, setmaxage,
  97. setpathcost, setportprio, setbridgeprio,
  98. stp
  99. This adds about 600 bytes.
  100. config BUSYBOX_FEATURE_BRCTL_SHOW
  101. bool "Support show"
  102. default y
  103. depends on BUSYBOX_BRCTL && BUSYBOX_FEATURE_BRCTL_FANCY
  104. help
  105. Add support for option which prints the current config:
  106. show
  107. config BUSYBOX_DNSD
  108. bool "dnsd (9.8 kb)"
  109. default y
  110. help
  111. Small and static DNS server daemon.
  112. config BUSYBOX_ETHER_WAKE
  113. bool "ether-wake (4.9 kb)"
  114. default y
  115. help
  116. Send a magic packet to wake up sleeping machines.
  117. config BUSYBOX_FTPD
  118. bool "ftpd (30 kb)"
  119. default y
  120. help
  121. Simple FTP daemon. You have to run it via inetd.
  122. config BUSYBOX_FEATURE_FTPD_WRITE
  123. bool "Enable -w (upload commands)"
  124. default y
  125. depends on BUSYBOX_FTPD
  126. help
  127. Enable -w option. "ftpd -w" will accept upload commands
  128. such as STOR, STOU, APPE, DELE, MKD, RMD, rename commands.
  129. config BUSYBOX_FEATURE_FTPD_ACCEPT_BROKEN_LIST
  130. bool "Enable workaround for RFC-violating clients"
  131. default y
  132. depends on BUSYBOX_FTPD
  133. help
  134. Some ftp clients (among them KDE's Konqueror) issue illegal
  135. "LIST -l" requests. This option works around such problems.
  136. It might prevent you from listing files starting with "-" and
  137. it increases the code size by ~40 bytes.
  138. Most other ftp servers seem to behave similar to this.
  139. config BUSYBOX_FEATURE_FTPD_AUTHENTICATION
  140. bool "Enable authentication"
  141. default y
  142. depends on BUSYBOX_FTPD
  143. help
  144. Require login, and change to logged in user's UID:GID before
  145. accessing any files. Option "-a USER" allows "anonymous"
  146. logins (treats them as if USER logged in).
  147. If this option is not selected, ftpd runs with the rights
  148. of the user it was started under, and does not require login.
  149. Take care to not launch it under root.
  150. config BUSYBOX_FTPGET
  151. bool "ftpget (7.8 kb)"
  152. default y
  153. help
  154. Retrieve a remote file via FTP.
  155. config BUSYBOX_FTPPUT
  156. bool "ftpput (7.5 kb)"
  157. default y
  158. help
  159. Store a remote file via FTP.
  160. config BUSYBOX_FEATURE_FTPGETPUT_LONG_OPTIONS
  161. bool "Enable long options in ftpget/ftpput"
  162. default y
  163. depends on BUSYBOX_LONG_OPTS && (BUSYBOX_FTPGET || BUSYBOX_FTPPUT)
  164. config BUSYBOX_HOSTNAME
  165. bool "hostname (5.5 kb)"
  166. default y
  167. help
  168. Show or set the system's host name.
  169. config BUSYBOX_DNSDOMAINNAME
  170. bool "dnsdomainname (3.6 kb)"
  171. default y
  172. help
  173. Alias to "hostname -d".
  174. config BUSYBOX_HTTPD
  175. bool "httpd (32 kb)"
  176. default y
  177. help
  178. HTTP server.
  179. config BUSYBOX_FEATURE_HTTPD_PORT_DEFAULT
  180. int "Default port"
  181. default 80
  182. range 1 65535
  183. depends on BUSYBOX_HTTPD
  184. config BUSYBOX_FEATURE_HTTPD_RANGES
  185. bool "Support 'Ranges:' header"
  186. default y
  187. depends on BUSYBOX_HTTPD
  188. help
  189. Makes httpd emit "Accept-Ranges: bytes" header and understand
  190. "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
  191. downloads, seeking in multimedia players etc.
  192. config BUSYBOX_FEATURE_HTTPD_SETUID
  193. bool "Enable -u <user> option"
  194. default y
  195. depends on BUSYBOX_HTTPD
  196. help
  197. This option allows the server to run as a specific user
  198. rather than defaulting to the user that starts the server.
  199. Use of this option requires special privileges to change to a
  200. different user.
  201. config BUSYBOX_FEATURE_HTTPD_BASIC_AUTH
  202. bool "Enable HTTP authentication"
  203. default y
  204. depends on BUSYBOX_HTTPD
  205. help
  206. Utilizes password settings from /etc/httpd.conf for basic
  207. authentication on a per url basis.
  208. Example for httpd.conf file:
  209. /adm:toor:PaSsWd
  210. config BUSYBOX_FEATURE_HTTPD_AUTH_MD5
  211. bool "Support MD5-encrypted passwords in HTTP authentication"
  212. default y
  213. depends on BUSYBOX_FEATURE_HTTPD_BASIC_AUTH
  214. help
  215. Enables encrypted passwords, and wildcard user/passwords
  216. in httpd.conf file.
  217. User '*' means 'any system user name is ok',
  218. password of '*' means 'use system password for this user'
  219. Examples:
  220. /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
  221. /adm:root:*
  222. /wiki:*:*
  223. config BUSYBOX_FEATURE_HTTPD_CGI
  224. bool "Support Common Gateway Interface (CGI)"
  225. default y
  226. depends on BUSYBOX_HTTPD
  227. help
  228. This option allows scripts and executables to be invoked
  229. when specific URLs are requested.
  230. config BUSYBOX_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
  231. bool "Support running scripts through an interpreter"
  232. default y
  233. depends on BUSYBOX_FEATURE_HTTPD_CGI
  234. help
  235. This option enables support for running scripts through an
  236. interpreter. Turn this on if you want PHP scripts to work
  237. properly. You need to supply an additional line in your
  238. httpd.conf file:
  239. *.php:/path/to/your/php
  240. config BUSYBOX_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
  241. bool "Set REMOTE_PORT environment variable for CGI"
  242. default y
  243. depends on BUSYBOX_FEATURE_HTTPD_CGI
  244. help
  245. Use of this option can assist scripts in generating
  246. references that contain a unique port number.
  247. config BUSYBOX_FEATURE_HTTPD_ENCODE_URL_STR
  248. bool "Enable -e option (useful for CGIs written as shell scripts)"
  249. default y
  250. depends on BUSYBOX_HTTPD
  251. help
  252. This option allows html encoding of arbitrary strings for display
  253. by the browser. Output goes to stdout.
  254. For example, httpd -e "<Hello World>" produces
  255. "&#60Hello&#32World&#62".
  256. config BUSYBOX_FEATURE_HTTPD_ERROR_PAGES
  257. bool "Support custom error pages"
  258. default y
  259. depends on BUSYBOX_HTTPD
  260. help
  261. This option allows you to define custom error pages in
  262. the configuration file instead of the default HTTP status
  263. error pages. For instance, if you add the line:
  264. E404:/path/e404.html
  265. in the config file, the server will respond the specified
  266. '/path/e404.html' file instead of the terse '404 NOT FOUND'
  267. message.
  268. config BUSYBOX_FEATURE_HTTPD_PROXY
  269. bool "Support reverse proxy"
  270. default y
  271. depends on BUSYBOX_HTTPD
  272. help
  273. This option allows you to define URLs that will be forwarded
  274. to another HTTP server. To setup add the following line to the
  275. configuration file
  276. P:/url/:http://hostname[:port]/new/path/
  277. Then a request to /url/myfile will be forwarded to
  278. http://hostname[:port]/new/path/myfile.
  279. config BUSYBOX_FEATURE_HTTPD_GZIP
  280. bool "Support GZIP content encoding"
  281. default y
  282. depends on BUSYBOX_HTTPD
  283. help
  284. Makes httpd send files using GZIP content encoding if the
  285. client supports it and a pre-compressed <file>.gz exists.
  286. config BUSYBOX_FEATURE_HTTPD_ETAG
  287. bool "Support caching via ETag header"
  288. default y
  289. depends on BUSYBOX_HTTPD
  290. help
  291. If server responds with ETag then next time client (browser)
  292. resend it via If-None-Match header.
  293. Then httpd will check if file wasn't modified and if not,
  294. return 304 Not Modified status code.
  295. The ETag value is constructed from last modification date
  296. in unix epoch, and size: "hex(last_mod)-hex(file_size)".
  297. It's not completely reliable as hash functions but fair enough.
  298. config BUSYBOX_FEATURE_HTTPD_LAST_MODIFIED
  299. bool "Add Last-Modified header to response"
  300. default y
  301. depends on BUSYBOX_HTTPD
  302. help
  303. The Last-Modified header is used for cache validation.
  304. The client sends last seen mtime to server in If-Modified-Since.
  305. Both headers MUST be an RFC 1123 formatted, which is hard to parse.
  306. Use ETag header instead.
  307. config BUSYBOX_FEATURE_HTTPD_DATE
  308. bool "Add Date header to response"
  309. default y
  310. depends on BUSYBOX_HTTPD
  311. help
  312. RFC2616 says that server MUST add Date header to response.
  313. But it is almost useless and can be omitted.
  314. config BUSYBOX_FEATURE_HTTPD_ACL_IP
  315. bool "ACL IP"
  316. default y
  317. depends on BUSYBOX_HTTPD
  318. help
  319. Support IP deny/allow rules
  320. config BUSYBOX_IFCONFIG
  321. bool "ifconfig (12 kb)"
  322. default y
  323. help
  324. Ifconfig is used to configure the kernel-resident network interfaces.
  325. config BUSYBOX_FEATURE_IFCONFIG_STATUS
  326. bool "Enable status reporting output (+7k)"
  327. default y
  328. depends on BUSYBOX_IFCONFIG
  329. help
  330. If ifconfig is called with no arguments it will display the status
  331. of the currently active interfaces.
  332. config BUSYBOX_FEATURE_IFCONFIG_SLIP
  333. bool "Enable slip-specific options \"keepalive\" and \"outfill\""
  334. default y
  335. depends on BUSYBOX_IFCONFIG
  336. help
  337. Allow "keepalive" and "outfill" support for SLIP. If you're not
  338. planning on using serial lines, leave this unchecked.
  339. config BUSYBOX_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
  340. bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
  341. default y
  342. depends on BUSYBOX_IFCONFIG
  343. help
  344. Allow the start address for shared memory, start address for I/O,
  345. and/or the interrupt line used by the specified device.
  346. config BUSYBOX_FEATURE_IFCONFIG_HW
  347. bool "Enable option \"hw\" (ether only)"
  348. default y
  349. depends on BUSYBOX_IFCONFIG
  350. help
  351. Set the hardware address of this interface, if the device driver
  352. supports this operation. Currently, we only support the 'ether'
  353. class.
  354. config BUSYBOX_FEATURE_IFCONFIG_BROADCAST_PLUS
  355. bool "Set the broadcast automatically"
  356. default y
  357. depends on BUSYBOX_IFCONFIG
  358. help
  359. Setting this will make ifconfig attempt to find the broadcast
  360. automatically if the value '+' is used.
  361. config BUSYBOX_IFENSLAVE
  362. bool "ifenslave (13 kb)"
  363. default y
  364. help
  365. Userspace application to bind several interfaces
  366. to a logical interface (use with kernel bonding driver).
  367. config BUSYBOX_IFPLUGD
  368. bool "ifplugd (10 kb)"
  369. default y
  370. help
  371. Network interface plug detection daemon.
  372. config BUSYBOX_IFUP
  373. bool "ifup (14 kb)"
  374. default y
  375. help
  376. Activate the specified interfaces. This applet makes use
  377. of either "ifconfig" and "route" or the "ip" command to actually
  378. configure network interfaces. Therefore, you will probably also want
  379. to enable either IFCONFIG and ROUTE, or enable
  380. FEATURE_IFUPDOWN_IP and the various IP options. Of
  381. course you could use non-busybox versions of these programs, so
  382. against my better judgement (since this will surely result in plenty
  383. of support questions on the mailing list), I do not force you to
  384. enable these additional options. It is up to you to supply either
  385. "ifconfig", "route" and "run-parts" or the "ip" command, either
  386. via busybox or via standalone utilities.
  387. config BUSYBOX_IFDOWN
  388. bool "ifdown (13 kb)"
  389. default y
  390. help
  391. Deactivate the specified interfaces.
  392. config BUSYBOX_IFUPDOWN_IFSTATE_PATH
  393. string "Absolute path to ifstate file"
  394. default "/var/run/ifstate"
  395. depends on BUSYBOX_IFUP || BUSYBOX_IFDOWN
  396. help
  397. ifupdown keeps state information in a file called ifstate.
  398. Typically it is located in /var/run/ifstate, however
  399. some distributions tend to put it in other places
  400. (debian, for example, uses /etc/network/run/ifstate).
  401. This config option defines location of ifstate.
  402. config BUSYBOX_FEATURE_IFUPDOWN_IP
  403. bool "Use ip tool (else ifconfig/route is used)"
  404. default y
  405. depends on BUSYBOX_IFUP || BUSYBOX_IFDOWN
  406. help
  407. Use the iproute "ip" command to implement "ifup" and "ifdown", rather
  408. than the default of using the older "ifconfig" and "route" utilities.
  409. If Y: you must install either the full-blown iproute2 package
  410. or enable "ip" applet in busybox, or the "ifup" and "ifdown" applets
  411. will not work.
  412. If N: you must install either the full-blown ifconfig and route
  413. utilities, or enable these applets in busybox.
  414. config BUSYBOX_FEATURE_IFUPDOWN_IPV4
  415. bool "Support IPv4"
  416. default y
  417. depends on BUSYBOX_IFUP || BUSYBOX_IFDOWN
  418. help
  419. If you want ifup/ifdown to talk IPv4, leave this on.
  420. config BUSYBOX_FEATURE_IFUPDOWN_IPV6
  421. bool "Support IPv6"
  422. default y
  423. depends on (BUSYBOX_IFUP || BUSYBOX_IFDOWN) && BUSYBOX_FEATURE_IPV6
  424. help
  425. If you need support for IPv6, turn this option on.
  426. config BUSYBOX_FEATURE_IFUPDOWN_MAPPING
  427. bool "Enable mapping support"
  428. default y
  429. depends on BUSYBOX_IFUP || BUSYBOX_IFDOWN
  430. help
  431. This enables support for the "mapping" stanza, unless you have
  432. a weird network setup you don't need it.
  433. config BUSYBOX_FEATURE_IFUPDOWN_EXTERNAL_DHCP
  434. bool "Support external DHCP clients"
  435. default n
  436. depends on BUSYBOX_IFUP || BUSYBOX_IFDOWN
  437. help
  438. This enables support for the external dhcp clients. Clients are
  439. tried in the following order: dhcpcd, dhclient, pump and udhcpc.
  440. Otherwise, if udhcpc applet is enabled, it is used.
  441. Otherwise, ifup/ifdown will have no support for DHCP.
  442. config BUSYBOX_INETD
  443. bool "inetd (18 kb)"
  444. default y
  445. select BUSYBOX_FEATURE_SYSLOG
  446. help
  447. Internet superserver daemon
  448. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  449. bool "Support echo service on port 7"
  450. default y
  451. depends on BUSYBOX_INETD
  452. help
  453. Internal service which echoes data back.
  454. Activated by configuration lines like these:
  455. echo stream tcp nowait root internal
  456. echo dgram udp wait root internal
  457. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  458. bool "Support discard service on port 8"
  459. default y
  460. depends on BUSYBOX_INETD
  461. help
  462. Internal service which discards all input.
  463. Activated by configuration lines like these:
  464. discard stream tcp nowait root internal
  465. discard dgram udp wait root internal
  466. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_TIME
  467. bool "Support time service on port 37"
  468. default y
  469. depends on BUSYBOX_INETD
  470. help
  471. Internal service which returns big-endian 32-bit number
  472. of seconds passed since 1900-01-01. The number wraps around
  473. on overflow.
  474. Activated by configuration lines like these:
  475. time stream tcp nowait root internal
  476. time dgram udp wait root internal
  477. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  478. bool "Support daytime service on port 13"
  479. default y
  480. depends on BUSYBOX_INETD
  481. help
  482. Internal service which returns human-readable time.
  483. Activated by configuration lines like these:
  484. daytime stream tcp nowait root internal
  485. daytime dgram udp wait root internal
  486. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  487. bool "Support chargen service on port 19"
  488. default y
  489. depends on BUSYBOX_INETD
  490. help
  491. Internal service which generates endless stream
  492. of all ASCII chars beetween space and char 126.
  493. Activated by configuration lines like these:
  494. chargen stream tcp nowait root internal
  495. chargen dgram udp wait root internal
  496. config BUSYBOX_FEATURE_INETD_RPC
  497. bool "Support RPC services"
  498. default n # very rarely used, and needs Sun RPC support in libc
  499. depends on BUSYBOX_INETD
  500. help
  501. Support Sun-RPC based services
  502. config BUSYBOX_IP
  503. bool "ip (35 kb)"
  504. default y
  505. help
  506. The "ip" applet is a TCP/BUSYBOX_IP interface configuration and routing
  507. utility.
  508. Short forms (enabled below) are busybox-specific extensions.
  509. The standard "ip" utility does not provide them. If you are
  510. trying to be portable, it's better to use "ip CMD" forms.
  511. config BUSYBOX_IPADDR
  512. bool "ipaddr (14 kb)"
  513. default y
  514. select BUSYBOX_FEATURE_IP_ADDRESS
  515. help
  516. Short form of "ip addr"
  517. config BUSYBOX_IPLINK
  518. bool "iplink (17 kb)"
  519. default y
  520. select BUSYBOX_FEATURE_IP_LINK
  521. help
  522. Short form of "ip link"
  523. config BUSYBOX_IPROUTE
  524. bool "iproute (15 kb)"
  525. default y
  526. select BUSYBOX_FEATURE_IP_ROUTE
  527. help
  528. Short form of "ip route"
  529. config BUSYBOX_IPTUNNEL
  530. bool "iptunnel (9.6 kb)"
  531. default y
  532. select BUSYBOX_FEATURE_IP_TUNNEL
  533. help
  534. Short form of "ip tunnel"
  535. config BUSYBOX_IPRULE
  536. bool "iprule (10 kb)"
  537. default y
  538. select BUSYBOX_FEATURE_IP_RULE
  539. help
  540. Short form of "ip rule"
  541. config BUSYBOX_IPNEIGH
  542. bool "ipneigh (8.3 kb)"
  543. default y
  544. select BUSYBOX_FEATURE_IP_NEIGH
  545. help
  546. Short form of "ip neigh"
  547. config BUSYBOX_FEATURE_IP_ADDRESS
  548. bool "ip address"
  549. default y
  550. depends on BUSYBOX_IP || BUSYBOX_IPADDR
  551. help
  552. Address manipulation support for the "ip" applet.
  553. config BUSYBOX_FEATURE_IP_LINK
  554. bool "ip link"
  555. default y
  556. depends on BUSYBOX_IP || BUSYBOX_IPLINK
  557. help
  558. Configure network devices with "ip".
  559. config BUSYBOX_FEATURE_IP_ROUTE
  560. bool "ip route"
  561. default y
  562. depends on BUSYBOX_IP || BUSYBOX_IPROUTE
  563. help
  564. Add support for routing table management to "ip".
  565. config BUSYBOX_FEATURE_IP_ROUTE_DIR
  566. string "ip route configuration directory"
  567. default "/etc/iproute2"
  568. depends on BUSYBOX_FEATURE_IP_ROUTE
  569. help
  570. Location of the "ip" applet routing configuration.
  571. config BUSYBOX_FEATURE_IP_TUNNEL
  572. bool "ip tunnel"
  573. default y
  574. depends on BUSYBOX_IP || BUSYBOX_IPTUNNEL
  575. help
  576. Add support for tunneling commands to "ip".
  577. config BUSYBOX_FEATURE_IP_RULE
  578. bool "ip rule"
  579. default y
  580. depends on BUSYBOX_IP || BUSYBOX_IPRULE
  581. help
  582. Add support for rule commands to "ip".
  583. config BUSYBOX_FEATURE_IP_NEIGH
  584. bool "ip neighbor"
  585. default y
  586. depends on BUSYBOX_IP || BUSYBOX_IPNEIGH
  587. help
  588. Add support for neighbor commands to "ip".
  589. config BUSYBOX_FEATURE_IP_RARE_PROTOCOLS
  590. bool "Support displaying rarely used link types"
  591. default n
  592. depends on BUSYBOX_IP || BUSYBOX_IPADDR || BUSYBOX_IPLINK || BUSYBOX_IPROUTE || BUSYBOX_IPTUNNEL || BUSYBOX_IPRULE || BUSYBOX_IPNEIGH
  593. help
  594. If you are not going to use links of type "frad", "econet",
  595. "bif" etc, you probably don't need to enable this.
  596. Ethernet, wireless, infrared, ppp/slip, ip tunnelling
  597. link types are supported without this option selected.
  598. config BUSYBOX_IPCALC
  599. bool "ipcalc (4.4 kb)"
  600. default y
  601. help
  602. ipcalc takes an IP address and netmask and calculates the
  603. resulting broadcast, network, and host range.
  604. config BUSYBOX_FEATURE_IPCALC_LONG_OPTIONS
  605. bool "Enable long options"
  606. default y
  607. depends on BUSYBOX_IPCALC && BUSYBOX_LONG_OPTS
  608. config BUSYBOX_FEATURE_IPCALC_FANCY
  609. bool "Fancy IPCALC, more options, adds 1 kbyte"
  610. default y
  611. depends on BUSYBOX_IPCALC
  612. help
  613. Adds the options hostname, prefix and silent to the output of
  614. "ipcalc".
  615. config BUSYBOX_FAKEIDENTD
  616. bool "fakeidentd (8.7 kb)"
  617. default y
  618. select BUSYBOX_FEATURE_SYSLOG
  619. help
  620. fakeidentd listens on the ident port and returns a predefined
  621. fake value on any query.
  622. config BUSYBOX_NAMEIF
  623. bool "nameif (6.6 kb)"
  624. default y
  625. select BUSYBOX_FEATURE_SYSLOG
  626. help
  627. nameif is used to rename network interface by its MAC address.
  628. Renamed interfaces MUST be in the down state.
  629. It is possible to use a file (default: /etc/mactab)
  630. with list of new interface names and MACs.
  631. Maximum interface name length: IFNAMSIZ = 16
  632. File fields are separated by space or tab.
  633. File format:
  634. # Comment
  635. new_interface_name XX:XX:XX:XX:XX:XX
  636. config BUSYBOX_FEATURE_NAMEIF_EXTENDED
  637. bool "Extended nameif"
  638. default y
  639. depends on BUSYBOX_NAMEIF
  640. help
  641. This extends the nameif syntax to support the bus_info, driver,
  642. phyaddr selectors. The syntax is compatible to the normal nameif.
  643. File format:
  644. new_interface_name driver=asix bus=usb-0000:00:08.2-3
  645. new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
  646. new_interface_name phy_address=2 00:80:C8:38:91:B5
  647. new_interface_name mac=00:80:C8:38:91:B5
  648. new_interface_name 00:80:C8:38:91:B5
  649. config BUSYBOX_NBDCLIENT
  650. bool "nbd-client (6 kb)"
  651. default y
  652. help
  653. Network block device client
  654. config BUSYBOX_NC
  655. bool "nc (11 kb)"
  656. default y
  657. help
  658. A simple Unix utility which reads and writes data across network
  659. connections.
  660. config BUSYBOX_NETCAT
  661. bool "netcat (11 kb)"
  662. default n
  663. help
  664. Alias to nc.
  665. config BUSYBOX_NC_SERVER
  666. bool "Netcat server options (-l)"
  667. default y
  668. depends on BUSYBOX_NC || BUSYBOX_NETCAT
  669. help
  670. Allow netcat to act as a server.
  671. config BUSYBOX_NC_EXTRA
  672. bool "Netcat extensions (-eiw and -f FILE)"
  673. default y
  674. depends on BUSYBOX_NC || BUSYBOX_NETCAT
  675. help
  676. Add -e (support for executing the rest of the command line after
  677. making or receiving a successful connection), -i (delay interval for
  678. lines sent), -w (timeout for initial connection).
  679. config BUSYBOX_NC_110_COMPAT
  680. bool "Netcat 1.10 compatibility (+2.5k)"
  681. default y
  682. depends on BUSYBOX_NC || BUSYBOX_NETCAT
  683. help
  684. This option makes nc closely follow original nc-1.10.
  685. The code is about 2.5k bigger. It enables
  686. -s ADDR, -n, -u, -v, -o FILE, -z options, but loses
  687. busybox-specific extensions: -f FILE.
  688. config BUSYBOX_NETSTAT
  689. bool "netstat (10 kb)"
  690. default y
  691. help
  692. netstat prints information about the Linux networking subsystem.
  693. config BUSYBOX_FEATURE_NETSTAT_WIDE
  694. bool "Enable wide output"
  695. default y
  696. depends on BUSYBOX_NETSTAT
  697. help
  698. Add support for wide columns. Useful when displaying IPv6 addresses
  699. (-W option).
  700. config BUSYBOX_FEATURE_NETSTAT_PRG
  701. bool "Enable PID/Program name output"
  702. default y
  703. depends on BUSYBOX_NETSTAT
  704. help
  705. Add support for -p flag to print out PID and program name.
  706. +700 bytes of code.
  707. config BUSYBOX_NSLOOKUP
  708. bool "nslookup (9.7 kb)"
  709. default y
  710. help
  711. nslookup is a tool to query Internet name servers.
  712. config BUSYBOX_FEATURE_NSLOOKUP_BIG
  713. bool "Use internal resolver code instead of libc"
  714. depends on BUSYBOX_NSLOOKUP
  715. default y
  716. config BUSYBOX_FEATURE_NSLOOKUP_LONG_OPTIONS
  717. bool "Enable long options"
  718. default y
  719. depends on BUSYBOX_FEATURE_NSLOOKUP_BIG && BUSYBOX_LONG_OPTS
  720. config BUSYBOX_NTPD
  721. bool "ntpd (22 kb)"
  722. default y
  723. help
  724. The NTP client/server daemon.
  725. config BUSYBOX_FEATURE_NTPD_SERVER
  726. bool "Make ntpd usable as a NTP server"
  727. default y
  728. depends on BUSYBOX_NTPD
  729. help
  730. Make ntpd usable as a NTP server. If you disable this option
  731. ntpd will be usable only as a NTP client.
  732. config BUSYBOX_FEATURE_NTPD_CONF
  733. bool "Make ntpd understand /etc/ntp.conf"
  734. default y
  735. depends on BUSYBOX_NTPD
  736. help
  737. Make ntpd look in /etc/ntp.conf for peers. Only "server address"
  738. is supported.
  739. config BUSYBOX_FEATURE_NTP_AUTH
  740. bool "Support md5/sha1 message authentication codes"
  741. default y
  742. depends on BUSYBOX_NTPD
  743. config BUSYBOX_PING
  744. bool "ping (10 kb)"
  745. default y
  746. help
  747. ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
  748. elicit an ICMP ECHO_RESPONSE from a host or gateway.
  749. config BUSYBOX_PING6
  750. bool "ping6 (11 kb)"
  751. default y
  752. depends on BUSYBOX_FEATURE_IPV6
  753. help
  754. Alias to "ping -6".
  755. config BUSYBOX_FEATURE_FANCY_PING
  756. bool "Enable fancy ping output"
  757. default y
  758. depends on BUSYBOX_PING || BUSYBOX_PING6
  759. help
  760. With this option off, ping will say "HOST is alive!"
  761. or terminate with SIGALRM in 5 seconds otherwise.
  762. No command-line options will be recognized.
  763. config BUSYBOX_PSCAN
  764. bool "pscan (6 kb)"
  765. default y
  766. help
  767. Simple network port scanner.
  768. config BUSYBOX_ROUTE
  769. bool "route (8.7 kb)"
  770. default y
  771. help
  772. Route displays or manipulates the kernel's IP routing tables.
  773. config BUSYBOX_SLATTACH
  774. bool "slattach (6.2 kb)"
  775. default y
  776. help
  777. slattach configures serial line as SLIP network interface.
  778. config BUSYBOX_SSL_CLIENT
  779. bool "ssl_client (25 kb)"
  780. default y
  781. select BUSYBOX_TLS
  782. help
  783. This tool pipes data to/from a socket, TLS-encrypting it.
  784. config BUSYBOX_TC
  785. bool "tc (8.3 kb)"
  786. default y
  787. help
  788. Show / manipulate traffic control settings
  789. config BUSYBOX_FEATURE_TC_INGRESS
  790. bool "Enable ingress"
  791. default y
  792. depends on BUSYBOX_TC
  793. config BUSYBOX_TCPSVD
  794. bool "tcpsvd (14 kb)"
  795. default y
  796. help
  797. tcpsvd listens on a TCP port and runs a program for each new
  798. connection.
  799. config BUSYBOX_UDPSVD
  800. bool "udpsvd (13 kb)"
  801. default y
  802. help
  803. udpsvd listens on an UDP port and runs a program for each new
  804. connection.
  805. config BUSYBOX_TELNET
  806. bool "telnet (8.8 kb)"
  807. default y
  808. help
  809. Telnet is an interface to the TELNET protocol, but is also commonly
  810. used to test other simple protocols.
  811. config BUSYBOX_FEATURE_TELNET_TTYPE
  812. bool "Pass TERM type to remote host"
  813. default y
  814. depends on BUSYBOX_TELNET
  815. help
  816. Setting this option will forward the TERM environment variable to the
  817. remote host you are connecting to. This is useful to make sure that
  818. things like ANSI colors and other control sequences behave.
  819. config BUSYBOX_FEATURE_TELNET_AUTOLOGIN
  820. bool "Pass USER type to remote host"
  821. default y
  822. depends on BUSYBOX_TELNET
  823. help
  824. Setting this option will forward the USER environment variable to the
  825. remote host you are connecting to. This is useful when you need to
  826. log into a machine without telling the username (autologin). This
  827. option enables '-a' and '-l USER' options.
  828. config BUSYBOX_FEATURE_TELNET_WIDTH
  829. bool "Enable window size autodetection"
  830. default y
  831. depends on BUSYBOX_TELNET
  832. config BUSYBOX_TELNETD
  833. bool "telnetd (12 kb)"
  834. default y
  835. select BUSYBOX_FEATURE_SYSLOG
  836. help
  837. A daemon for the TELNET protocol, allowing you to log onto the host
  838. running the daemon. Please keep in mind that the TELNET protocol
  839. sends passwords in plain text. If you can't afford the space for an
  840. SSH daemon and you trust your network, you may say 'y' here. As a
  841. more secure alternative, you should seriously consider installing the
  842. very small Dropbear SSH daemon instead:
  843. http://matt.ucc.asn.au/dropbear/dropbear.html
  844. Note that for busybox telnetd to work you need several things:
  845. First of all, your kernel needs:
  846. CONFIG_UNIX98_PTYS=y
  847. Next, you need a /dev/pts directory on your root filesystem:
  848. $ ls -ld /dev/pts
  849. drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
  850. Next you need the pseudo terminal master multiplexer /dev/ptmx:
  851. $ ls -la /dev/ptmx
  852. crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
  853. Any /dev/ttyp[0-9]* files you may have can be removed.
  854. Next, you need to mount the devpts filesystem on /dev/pts using:
  855. mount -t devpts devpts /dev/pts
  856. You need to be sure that busybox has LOGIN and
  857. FEATURE_SUID enabled. And finally, you should make
  858. certain that busybox has been installed setuid root:
  859. chown root.root /bin/busybox
  860. chmod 4755 /bin/busybox
  861. with all that done, telnetd _should_ work....
  862. config BUSYBOX_FEATURE_TELNETD_STANDALONE
  863. bool "Support standalone telnetd (not inetd only)"
  864. default y
  865. depends on BUSYBOX_TELNETD
  866. help
  867. Selecting this will make telnetd able to run standalone.
  868. config BUSYBOX_FEATURE_TELNETD_PORT_DEFAULT
  869. int "Default port"
  870. default 23
  871. range 1 65535
  872. depends on BUSYBOX_FEATURE_TELNETD_STANDALONE
  873. config BUSYBOX_FEATURE_TELNETD_INETD_WAIT
  874. bool "Support -w SEC option (inetd wait mode)"
  875. default y
  876. depends on BUSYBOX_FEATURE_TELNETD_STANDALONE
  877. help
  878. This option allows you to run telnetd in "inet wait" mode.
  879. Example inetd.conf line (note "wait", not usual "nowait"):
  880. telnet stream tcp wait root /bin/telnetd telnetd -w10
  881. In this example, inetd passes _listening_ socket_ as fd 0
  882. to telnetd when connection appears.
  883. telnetd will wait for connections until all existing
  884. connections are closed, and no new connections
  885. appear during 10 seconds. Then it exits, and inetd continues
  886. to listen for new connections.
  887. This option is rarely used. "tcp nowait" is much more usual
  888. way of running tcp services, including telnetd.
  889. You most probably want to say N here.
  890. config BUSYBOX_TFTP
  891. bool "tftp (11 kb)"
  892. default y
  893. help
  894. Trivial File Transfer Protocol client. TFTP is usually used
  895. for simple, small transfers such as a root image
  896. for a network-enabled bootloader.
  897. config BUSYBOX_FEATURE_TFTP_PROGRESS_BAR
  898. bool "Enable progress bar"
  899. default y
  900. depends on BUSYBOX_TFTP
  901. config BUSYBOX_FEATURE_TFTP_HPA_COMPAT
  902. bool "tftp-hpa compat (support -c get/put FILE)"
  903. default y
  904. depends on BUSYBOX_TFTP
  905. config BUSYBOX_TFTPD
  906. bool "tftpd (10 kb)"
  907. default y
  908. help
  909. Trivial File Transfer Protocol server.
  910. It expects that stdin is a datagram socket and a packet
  911. is already pending on it. It will exit after one transfer.
  912. In other words: it should be run from inetd in nowait mode,
  913. or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
  914. config BUSYBOX_FEATURE_TFTP_GET
  915. bool "Enable 'tftp get' and/or tftpd upload code"
  916. default y
  917. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  918. help
  919. Add support for the GET command within the TFTP client. This allows
  920. a client to retrieve a file from a TFTP server.
  921. Also enable upload support in tftpd, if tftpd is selected.
  922. Note: this option does _not_ make tftpd capable of download
  923. (the usual operation people need from it)!
  924. config BUSYBOX_FEATURE_TFTP_PUT
  925. bool "Enable 'tftp put' and/or tftpd download code"
  926. default y
  927. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  928. help
  929. Add support for the PUT command within the TFTP client. This allows
  930. a client to transfer a file to a TFTP server.
  931. Also enable download support in tftpd, if tftpd is selected.
  932. config BUSYBOX_FEATURE_TFTP_BLOCKSIZE
  933. bool "Enable 'blksize' and 'tsize' protocol options"
  934. default y
  935. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  936. help
  937. Allow tftp to specify block size, and tftpd to understand
  938. "blksize" and "tsize" options.
  939. config BUSYBOX_TFTP_DEBUG
  940. bool "Enable debug"
  941. default n
  942. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  943. help
  944. Make tftp[d] print debugging messages on stderr.
  945. This is useful if you are diagnosing a bug in tftp[d].
  946. config BUSYBOX_TLS
  947. bool #No description makes it a hidden option
  948. default n
  949. config BUSYBOX_TRACEROUTE
  950. bool "traceroute (11 kb)"
  951. default y
  952. help
  953. Utility to trace the route of IP packets.
  954. config BUSYBOX_TRACEROUTE6
  955. bool "traceroute6 (13 kb)"
  956. default y
  957. depends on BUSYBOX_FEATURE_IPV6
  958. help
  959. Utility to trace the route of IPv6 packets.
  960. config BUSYBOX_FEATURE_TRACEROUTE_VERBOSE
  961. bool "Enable verbose output"
  962. default y
  963. depends on BUSYBOX_TRACEROUTE || BUSYBOX_TRACEROUTE6
  964. help
  965. Add some verbosity to traceroute. This includes among other things
  966. hostnames and ICMP response types.
  967. config BUSYBOX_FEATURE_TRACEROUTE_USE_ICMP
  968. bool "Enable -I option (use ICMP instead of UDP)"
  969. default y
  970. depends on BUSYBOX_TRACEROUTE || BUSYBOX_TRACEROUTE6
  971. config BUSYBOX_TUNCTL
  972. bool "tunctl (6.2 kb)"
  973. default y
  974. help
  975. tunctl creates or deletes tun devices.
  976. config BUSYBOX_FEATURE_TUNCTL_UG
  977. bool "Support owner:group assignment"
  978. default y
  979. depends on BUSYBOX_TUNCTL
  980. help
  981. Allow to specify owner and group of newly created interface.
  982. 340 bytes of pure bloat. Say no here.
  983. config BUSYBOX_VCONFIG
  984. bool "vconfig (2.3 kb)"
  985. default y
  986. help
  987. Creates, removes, and configures VLAN interfaces
  988. config BUSYBOX_WGET
  989. bool "wget (38 kb)"
  990. default y
  991. help
  992. wget is a utility for non-interactive download of files from HTTP
  993. and FTP servers.
  994. config BUSYBOX_FEATURE_WGET_LONG_OPTIONS
  995. bool "Enable long options"
  996. default y
  997. depends on BUSYBOX_WGET && BUSYBOX_LONG_OPTS
  998. config BUSYBOX_FEATURE_WGET_STATUSBAR
  999. bool "Enable progress bar (+2k)"
  1000. default y
  1001. depends on BUSYBOX_WGET
  1002. config BUSYBOX_FEATURE_WGET_FTP
  1003. bool "Enable FTP protocol (+1k)"
  1004. default y
  1005. depends on BUSYBOX_WGET
  1006. help
  1007. To support FTPS, enable FEATURE_WGET_HTTPS as well.
  1008. config BUSYBOX_FEATURE_WGET_AUTHENTICATION
  1009. bool "Enable HTTP authentication"
  1010. default y
  1011. depends on BUSYBOX_WGET
  1012. help
  1013. Support authenticated HTTP transfers.
  1014. config BUSYBOX_FEATURE_WGET_TIMEOUT
  1015. bool "Enable timeout option -T SEC"
  1016. default y
  1017. depends on BUSYBOX_WGET
  1018. help
  1019. Supports network read and connect timeouts for wget,
  1020. so that wget will give up and timeout, through the -T
  1021. command line option.
  1022. Currently only connect and network data read timeout are
  1023. supported (i.e., timeout is not applied to the DNS query). When
  1024. FEATURE_WGET_LONG_OPTIONS is also enabled, the --timeout option
  1025. will work in addition to -T.
  1026. config BUSYBOX_FEATURE_WGET_HTTPS
  1027. bool "Support HTTPS using internal TLS code"
  1028. default y
  1029. depends on BUSYBOX_WGET
  1030. select BUSYBOX_TLS
  1031. help
  1032. wget will use internal TLS code to connect to https:// URLs.
  1033. It also enables FTPS support, but it's not well tested yet.
  1034. Note:
  1035. On NOMMU machines, ssl_helper applet should be available
  1036. in the $PATH for this to work. Make sure to select that applet.
  1037. Note: currently, TLS code only makes TLS I/O work, it
  1038. does *not* check that the peer is who it claims to be, etc.
  1039. IOW: it uses peer-supplied public keys to establish encryption
  1040. and signing keys, then encrypts and signs outgoing data and
  1041. decrypts incoming data.
  1042. It does not check signature hashes on the incoming data:
  1043. this means that attackers manipulating TCP packets can
  1044. send altered data and we unknowingly receive garbage.
  1045. (This check might be relatively easy to add).
  1046. It does not check public key's certificate:
  1047. this means that the peer may be an attacker impersonating
  1048. the server we think we are talking to.
  1049. If you think this is unacceptable, consider this. As more and more
  1050. servers switch to HTTPS-only operation, without such "crippled"
  1051. TLS code it is *impossible* to simply download a kernel source
  1052. from kernel.org. Which can in real world translate into
  1053. "my small automatic tooling to build cross-compilers from sources
  1054. no longer works, I need to additionally keep a local copy
  1055. of ~4 megabyte source tarball of a SSL library and ~2 megabyte
  1056. source of wget, need to compile and built both before I can
  1057. download anything. All this despite the fact that the build
  1058. is done in a QEMU sandbox on a machine with absolutely nothing
  1059. worth stealing, so I don't care if someone would go to a lot
  1060. of trouble to intercept my HTTPS download to send me an altered
  1061. kernel tarball".
  1062. If you still think this is unacceptable, send patches.
  1063. If you still think this is unacceptable, do not want to send
  1064. patches, but do want to waste bandwidth expaining how wrong
  1065. it is, you will be ignored.
  1066. FEATURE_WGET_OPENSSL does implement TLS verification
  1067. using the certificates available to OpenSSL.
  1068. config BUSYBOX_FEATURE_WGET_OPENSSL
  1069. bool "Try to connect to HTTPS using openssl"
  1070. default y
  1071. depends on BUSYBOX_WGET
  1072. help
  1073. Try to use openssl to handle HTTPS.
  1074. OpenSSL has a simple SSL client for debug purposes.
  1075. If you select this option, wget will effectively run:
  1076. "openssl s_client -quiet -connect hostname:443
  1077. -servername hostname 2>/dev/null" and pipe its data
  1078. through it. -servername is not used if hostname is numeric.
  1079. Note inconvenient API: host resolution is done twice,
  1080. and there is no guarantee openssl's idea of IPv6 address
  1081. format is the same as ours.
  1082. Another problem is that s_client prints debug information
  1083. to stderr, and it needs to be suppressed. This means
  1084. all error messages get suppressed too.
  1085. openssl is also a big binary, often dynamically linked
  1086. against ~15 libraries.
  1087. If openssl can't be executed, internal TLS code will be used
  1088. (if you enabled it); if openssl can be executed but fails later,
  1089. wget can't detect this, and download will fail.
  1090. By default BUSYBOX_TLS verification is performed, unless
  1091. --no-check-certificate option is passed.
  1092. config BUSYBOX_WHOIS
  1093. bool "whois (6.3 kb)"
  1094. default y
  1095. help
  1096. whois is a client for the whois directory service
  1097. config BUSYBOX_ZCIP
  1098. bool "zcip (8.4 kb)"
  1099. default y
  1100. select BUSYBOX_FEATURE_SYSLOG
  1101. help
  1102. BUSYBOX_ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
  1103. It's a daemon that allocates and defends a dynamically assigned
  1104. address on the 169.254/16 network, requiring no system administrator.
  1105. See http://www.zeroconf.org for further details, and "zcip.script"
  1106. in the busybox examples.
  1107. source package/busybox/config/networking/udhcp/Config.in
  1108. config BUSYBOX_IFUPDOWN_UDHCPC_CMD_OPTIONS
  1109. string "ifup udhcpc command line options"
  1110. default "-R -n"
  1111. depends on BUSYBOX_IFUP || BUSYBOX_IFDOWN
  1112. help
  1113. Command line options to pass to udhcpc from ifup.
  1114. Intended to alter options not available in /etc/network/interfaces.
  1115. (IE: --syslog --background etc...)
  1116. endmenu