Config.in 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088
  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 scripts/kbuild/config-language.txt.
  5. #
  6. menu "Networking Utilities"
  7. config BUSYBOX_CONFIG_NAMEIF
  8. bool "nameif"
  9. default BUSYBOX_DEFAULT_NAMEIF
  10. select BUSYBOX_CONFIG_PLATFORM_LINUX
  11. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  12. help
  13. nameif is used to rename network interface by its MAC address.
  14. Renamed interfaces MUST be in the down state.
  15. It is possible to use a file (default: /etc/mactab)
  16. with list of new interface names and MACs.
  17. Maximum interface name length: IFNAMSIZ = 16
  18. File fields are separated by space or tab.
  19. File format:
  20. # Comment
  21. new_interface_name XX:XX:XX:XX:XX:XX
  22. config BUSYBOX_CONFIG_FEATURE_NAMEIF_EXTENDED
  23. bool "Extended nameif"
  24. default BUSYBOX_DEFAULT_FEATURE_NAMEIF_EXTENDED
  25. depends on BUSYBOX_CONFIG_NAMEIF
  26. help
  27. This extends the nameif syntax to support the bus_info, driver,
  28. phyaddr selectors. The syntax is compatible to the normal nameif.
  29. File format:
  30. new_interface_name driver=asix bus=usb-0000:00:08.2-3
  31. new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
  32. new_interface_name phy_address=2 00:80:C8:38:91:B5
  33. new_interface_name mac=00:80:C8:38:91:B5
  34. new_interface_name 00:80:C8:38:91:B5
  35. config BUSYBOX_CONFIG_NBDCLIENT
  36. bool "nbd-client"
  37. default BUSYBOX_DEFAULT_NBDCLIENT
  38. help
  39. Network block device client
  40. config BUSYBOX_CONFIG_NC
  41. bool "nc"
  42. default BUSYBOX_DEFAULT_NC
  43. help
  44. A simple Unix utility which reads and writes data across network
  45. connections.
  46. config BUSYBOX_CONFIG_NC_SERVER
  47. bool "Netcat server options (-l)"
  48. default BUSYBOX_DEFAULT_NC_SERVER
  49. depends on BUSYBOX_CONFIG_NC
  50. help
  51. Allow netcat to act as a server.
  52. config BUSYBOX_CONFIG_NC_EXTRA
  53. bool "Netcat extensions (-eiw and filename)"
  54. default BUSYBOX_DEFAULT_NC_EXTRA
  55. depends on BUSYBOX_CONFIG_NC
  56. help
  57. Add -e (support for executing the rest of the command line after
  58. making or receiving a successful connection), -i (delay interval for
  59. lines sent), -w (timeout for initial connection).
  60. config BUSYBOX_CONFIG_NC_110_COMPAT
  61. bool "Netcat 1.10 compatibility (+2.5k)"
  62. default BUSYBOX_DEFAULT_NC_110_COMPAT # off specially for Rob
  63. depends on BUSYBOX_CONFIG_NC
  64. help
  65. This option makes nc closely follow original nc-1.10.
  66. The code is about 2.5k bigger. It enables
  67. -s ADDR, -n, -u, -v, -o FILE, -z options, but loses
  68. busybox-specific extensions: -f FILE and -ll.
  69. config BUSYBOX_CONFIG_PING
  70. bool "ping"
  71. default BUSYBOX_DEFAULT_PING
  72. select BUSYBOX_CONFIG_PLATFORM_LINUX
  73. help
  74. ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
  75. elicit an ICMP ECHO_RESPONSE from a host or gateway.
  76. config BUSYBOX_CONFIG_PING6
  77. bool "ping6"
  78. default BUSYBOX_DEFAULT_PING6
  79. depends on BUSYBOX_CONFIG_FEATURE_IPV6 && BUSYBOX_CONFIG_PING
  80. help
  81. This will give you a ping that can talk IPv6.
  82. config BUSYBOX_CONFIG_FEATURE_FANCY_PING
  83. bool "Enable fancy ping output"
  84. default BUSYBOX_DEFAULT_FEATURE_FANCY_PING
  85. depends on BUSYBOX_CONFIG_PING
  86. help
  87. Make the output from the ping applet include statistics, and at the
  88. same time provide full support for ICMP packets.
  89. config BUSYBOX_CONFIG_WHOIS
  90. bool "whois"
  91. default BUSYBOX_DEFAULT_WHOIS
  92. help
  93. whois is a client for the whois directory service
  94. config BUSYBOX_CONFIG_FEATURE_IPV6
  95. bool "Enable IPv6 support"
  96. default BUSYBOX_DEFAULT_FEATURE_IPV6
  97. help
  98. Enable IPv6 support in busybox.
  99. This adds IPv6 support in the networking applets.
  100. config BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL
  101. bool "Enable Unix domain socket support (usually not needed)"
  102. default BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL
  103. help
  104. Enable Unix domain socket support in all busybox networking
  105. applets. Address of the form local:/path/to/unix/socket
  106. will be recognized.
  107. This extension is almost never used in real world usage.
  108. You most likely want to say N.
  109. config BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS
  110. bool "Prefer IPv4 addresses from DNS queries"
  111. default BUSYBOX_DEFAULT_FEATURE_PREFER_IPV4_ADDRESS
  112. depends on BUSYBOX_CONFIG_FEATURE_IPV6
  113. help
  114. Use IPv4 address of network host if it has one.
  115. If this option is off, the first returned address will be used.
  116. This may cause problems when your DNS server is IPv6-capable and
  117. is returning IPv6 host addresses too. If IPv6 address
  118. precedes IPv4 one in DNS reply, busybox network applets
  119. (e.g. wget) will use IPv6 address. On an IPv6-incapable host
  120. or network applets will fail to connect to the host
  121. using IPv6 address.
  122. config BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS
  123. bool "Verbose resolution errors"
  124. default BUSYBOX_DEFAULT_VERBOSE_RESOLUTION_ERRORS
  125. help
  126. Enable if you are not satisfied with simplistic
  127. "can't resolve 'hostname.com'" and want to know more.
  128. This may increase size of your executable a bit.
  129. config BUSYBOX_CONFIG_ARP
  130. bool "arp"
  131. default BUSYBOX_DEFAULT_ARP
  132. select BUSYBOX_CONFIG_PLATFORM_LINUX
  133. help
  134. Manipulate the system ARP cache.
  135. config BUSYBOX_CONFIG_ARPING
  136. bool "arping"
  137. default BUSYBOX_DEFAULT_ARPING
  138. select BUSYBOX_CONFIG_PLATFORM_LINUX
  139. help
  140. Ping hosts by ARP packets.
  141. config BUSYBOX_CONFIG_BRCTL
  142. bool "brctl"
  143. default BUSYBOX_DEFAULT_BRCTL
  144. select BUSYBOX_CONFIG_PLATFORM_LINUX
  145. help
  146. Manage ethernet bridges.
  147. Supports addbr/delbr and addif/delif.
  148. config BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY
  149. bool "Fancy options"
  150. default BUSYBOX_DEFAULT_FEATURE_BRCTL_FANCY
  151. depends on BUSYBOX_CONFIG_BRCTL
  152. help
  153. Add support for extended option like:
  154. setageing, setfd, sethello, setmaxage,
  155. setpathcost, setportprio, setbridgeprio,
  156. stp
  157. This adds about 600 bytes.
  158. config BUSYBOX_CONFIG_FEATURE_BRCTL_SHOW
  159. bool "Support show"
  160. default BUSYBOX_DEFAULT_FEATURE_BRCTL_SHOW
  161. depends on BUSYBOX_CONFIG_BRCTL && BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY
  162. help
  163. Add support for option which prints the current config:
  164. show
  165. config BUSYBOX_CONFIG_DNSD
  166. bool "dnsd"
  167. default BUSYBOX_DEFAULT_DNSD
  168. help
  169. Small and static DNS server daemon.
  170. config BUSYBOX_CONFIG_ETHER_WAKE
  171. bool "ether-wake"
  172. default BUSYBOX_DEFAULT_ETHER_WAKE
  173. select BUSYBOX_CONFIG_PLATFORM_LINUX
  174. help
  175. Send a magic packet to wake up sleeping machines.
  176. config BUSYBOX_CONFIG_FAKEIDENTD
  177. bool "fakeidentd"
  178. default BUSYBOX_DEFAULT_FAKEIDENTD
  179. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  180. help
  181. fakeidentd listens on the ident port and returns a predefined
  182. fake value on any query.
  183. config BUSYBOX_CONFIG_FTPD
  184. bool "ftpd"
  185. default BUSYBOX_DEFAULT_FTPD
  186. help
  187. simple FTP daemon. You have to run it via inetd.
  188. config BUSYBOX_CONFIG_FEATURE_FTP_WRITE
  189. bool "Enable upload commands"
  190. default BUSYBOX_DEFAULT_FEATURE_FTP_WRITE
  191. depends on BUSYBOX_CONFIG_FTPD
  192. help
  193. Enable all kinds of FTP upload commands (-w option)
  194. config BUSYBOX_CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST
  195. bool "Enable workaround for RFC-violating clients"
  196. default BUSYBOX_DEFAULT_FEATURE_FTPD_ACCEPT_BROKEN_LIST
  197. depends on BUSYBOX_CONFIG_FTPD
  198. help
  199. Some ftp clients (among them KDE's Konqueror) issue illegal
  200. "LIST -l" requests. This option works around such problems.
  201. It might prevent you from listing files starting with "-" and
  202. it increases the code size by ~40 bytes.
  203. Most other ftp servers seem to behave similar to this.
  204. config BUSYBOX_CONFIG_FTPGET
  205. bool "ftpget"
  206. default BUSYBOX_DEFAULT_FTPGET
  207. help
  208. Retrieve a remote file via FTP.
  209. config BUSYBOX_CONFIG_FTPPUT
  210. bool "ftpput"
  211. default BUSYBOX_DEFAULT_FTPPUT
  212. help
  213. Store a remote file via FTP.
  214. config BUSYBOX_CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS
  215. bool "Enable long options in ftpget/ftpput"
  216. default BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS
  217. depends on BUSYBOX_CONFIG_LONG_OPTS && (BUSYBOX_CONFIG_FTPGET || BUSYBOX_CONFIG_FTPPUT)
  218. help
  219. Support long options for the ftpget/ftpput applet.
  220. config BUSYBOX_CONFIG_HOSTNAME
  221. bool "hostname"
  222. default BUSYBOX_DEFAULT_HOSTNAME
  223. help
  224. Show or set the system's host name.
  225. config BUSYBOX_CONFIG_HTTPD
  226. bool "httpd"
  227. default BUSYBOX_DEFAULT_HTTPD
  228. help
  229. Serve web pages via an HTTP server.
  230. config BUSYBOX_CONFIG_FEATURE_HTTPD_RANGES
  231. bool "Support 'Ranges:' header"
  232. default BUSYBOX_DEFAULT_FEATURE_HTTPD_RANGES
  233. depends on BUSYBOX_CONFIG_HTTPD
  234. help
  235. Makes httpd emit "Accept-Ranges: bytes" header and understand
  236. "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
  237. downloads, seeking in multimedia players etc.
  238. config BUSYBOX_CONFIG_FEATURE_HTTPD_USE_SENDFILE
  239. bool "Use sendfile system call"
  240. default BUSYBOX_DEFAULT_FEATURE_HTTPD_USE_SENDFILE
  241. depends on BUSYBOX_CONFIG_HTTPD
  242. help
  243. When enabled, httpd will use the kernel sendfile() function
  244. instead of read/write loop.
  245. config BUSYBOX_CONFIG_FEATURE_HTTPD_SETUID
  246. bool "Enable -u <user> option"
  247. default BUSYBOX_DEFAULT_FEATURE_HTTPD_SETUID
  248. depends on BUSYBOX_CONFIG_HTTPD
  249. help
  250. This option allows the server to run as a specific user
  251. rather than defaulting to the user that starts the server.
  252. Use of this option requires special privileges to change to a
  253. different user.
  254. config BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
  255. bool "Enable Basic http Authentication"
  256. default BUSYBOX_DEFAULT_FEATURE_HTTPD_BASIC_AUTH
  257. depends on BUSYBOX_CONFIG_HTTPD
  258. help
  259. Utilizes password settings from /etc/httpd.conf for basic
  260. authentication on a per url basis.
  261. config BUSYBOX_CONFIG_FEATURE_HTTPD_AUTH_MD5
  262. bool "Support MD5 crypted passwords for http Authentication"
  263. default BUSYBOX_DEFAULT_FEATURE_HTTPD_AUTH_MD5
  264. depends on BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
  265. help
  266. Enables basic per URL authentication from /etc/httpd.conf
  267. using md5 passwords.
  268. config BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
  269. bool "Support Common Gateway Interface (CGI)"
  270. default BUSYBOX_DEFAULT_FEATURE_HTTPD_CGI
  271. depends on BUSYBOX_CONFIG_HTTPD
  272. help
  273. This option allows scripts and executables to be invoked
  274. when specific URLs are requested.
  275. config BUSYBOX_CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
  276. bool "Support for running scripts through an interpreter"
  277. default BUSYBOX_DEFAULT_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
  278. depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
  279. help
  280. This option enables support for running scripts through an
  281. interpreter. Turn this on if you want PHP scripts to work
  282. properly. You need to supply an additional line in your httpd
  283. config file:
  284. *.php:/path/to/your/php
  285. config BUSYBOX_CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
  286. bool "Set REMOTE_PORT environment variable for CGI"
  287. default BUSYBOX_DEFAULT_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
  288. depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
  289. help
  290. Use of this option can assist scripts in generating
  291. references that contain a unique port number.
  292. config BUSYBOX_CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
  293. bool "Enable -e option (useful for CGIs written as shell scripts)"
  294. default BUSYBOX_DEFAULT_FEATURE_HTTPD_ENCODE_URL_STR
  295. depends on BUSYBOX_CONFIG_HTTPD
  296. help
  297. This option allows html encoding of arbitrary strings for display
  298. by the browser. Output goes to stdout.
  299. For example, httpd -e "<Hello World>" produces
  300. "&#60Hello&#32World&#62".
  301. config BUSYBOX_CONFIG_FEATURE_HTTPD_ERROR_PAGES
  302. bool "Support for custom error pages"
  303. default BUSYBOX_DEFAULT_FEATURE_HTTPD_ERROR_PAGES
  304. depends on BUSYBOX_CONFIG_HTTPD
  305. help
  306. This option allows you to define custom error pages in
  307. the configuration file instead of the default HTTP status
  308. error pages. For instance, if you add the line:
  309. E404:/path/e404.html
  310. in the config file, the server will respond the specified
  311. '/path/e404.html' file instead of the terse '404 NOT FOUND'
  312. message.
  313. config BUSYBOX_CONFIG_FEATURE_HTTPD_PROXY
  314. bool "Support for reverse proxy"
  315. default BUSYBOX_DEFAULT_FEATURE_HTTPD_PROXY
  316. depends on BUSYBOX_CONFIG_HTTPD
  317. help
  318. This option allows you to define URLs that will be forwarded
  319. to another HTTP server. To setup add the following line to the
  320. configuration file
  321. P:/url/:http://hostname[:port]/new/path/
  322. Then a request to /url/myfile will be forwarded to
  323. http://hostname[:port]/new/path/myfile.
  324. config BUSYBOX_CONFIG_FEATURE_HTTPD_GZIP
  325. bool "Support for GZIP content encoding"
  326. default BUSYBOX_DEFAULT_FEATURE_HTTPD_GZIP
  327. depends on BUSYBOX_CONFIG_HTTPD
  328. help
  329. Makes httpd send files using GZIP content encoding if the
  330. client supports it and a pre-compressed <file>.gz exists.
  331. config BUSYBOX_CONFIG_IFCONFIG
  332. bool "ifconfig"
  333. default BUSYBOX_DEFAULT_IFCONFIG
  334. select BUSYBOX_CONFIG_PLATFORM_LINUX
  335. help
  336. Ifconfig is used to configure the kernel-resident network interfaces.
  337. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS
  338. bool "Enable status reporting output (+7k)"
  339. default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_STATUS
  340. depends on BUSYBOX_CONFIG_IFCONFIG
  341. help
  342. If ifconfig is called with no arguments it will display the status
  343. of the currently active interfaces.
  344. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP
  345. bool "Enable slip-specific options \"keepalive\" and \"outfill\""
  346. default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_SLIP
  347. depends on BUSYBOX_CONFIG_IFCONFIG
  348. help
  349. Allow "keepalive" and "outfill" support for SLIP. If you're not
  350. planning on using serial lines, leave this unchecked.
  351. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
  352. bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
  353. default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
  354. depends on BUSYBOX_CONFIG_IFCONFIG
  355. help
  356. Allow the start address for shared memory, start address for I/O,
  357. and/or the interrupt line used by the specified device.
  358. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW
  359. bool "Enable option \"hw\" (ether only)"
  360. default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_HW
  361. depends on BUSYBOX_CONFIG_IFCONFIG
  362. help
  363. Set the hardware address of this interface, if the device driver
  364. supports this operation. Currently, we only support the 'ether'
  365. class.
  366. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
  367. bool "Set the broadcast automatically"
  368. default BUSYBOX_DEFAULT_FEATURE_IFCONFIG_BROADCAST_PLUS
  369. depends on BUSYBOX_CONFIG_IFCONFIG
  370. help
  371. Setting this will make ifconfig attempt to find the broadcast
  372. automatically if the value '+' is used.
  373. config BUSYBOX_CONFIG_IFENSLAVE
  374. bool "ifenslave"
  375. default BUSYBOX_DEFAULT_IFENSLAVE
  376. select BUSYBOX_CONFIG_PLATFORM_LINUX
  377. help
  378. Userspace application to bind several interfaces
  379. to a logical interface (use with kernel bonding driver).
  380. config BUSYBOX_CONFIG_IFPLUGD
  381. bool "ifplugd"
  382. default BUSYBOX_DEFAULT_IFPLUGD
  383. select BUSYBOX_CONFIG_PLATFORM_LINUX
  384. help
  385. Network interface plug detection daemon.
  386. config BUSYBOX_CONFIG_IFUPDOWN
  387. bool "ifupdown"
  388. default BUSYBOX_DEFAULT_IFUPDOWN
  389. help
  390. Activate or deactivate the specified interfaces. This applet makes
  391. use of either "ifconfig" and "route" or the "ip" command to actually
  392. configure network interfaces. Therefore, you will probably also want
  393. to enable either IFCONFIG and ROUTE, or enable
  394. FEATURE_IFUPDOWN_IP and the various IP options. Of
  395. course you could use non-busybox versions of these programs, so
  396. against my better judgement (since this will surely result in plenty
  397. of support questions on the mailing list), I do not force you to
  398. enable these additional options. It is up to you to supply either
  399. "ifconfig", "route" and "run-parts" or the "ip" command, either
  400. via busybox or via standalone utilities.
  401. config BUSYBOX_CONFIG_IFUPDOWN_IFSTATE_PATH
  402. string "Absolute path to ifstate file"
  403. default BUSYBOX_DEFAULT_IFUPDOWN_IFSTATE_PATH
  404. depends on BUSYBOX_CONFIG_IFUPDOWN
  405. help
  406. ifupdown keeps state information in a file called ifstate.
  407. Typically it is located in /var/run/ifstate, however
  408. some distributions tend to put it in other places
  409. (debian, for example, uses /etc/network/run/ifstate).
  410. This config option defines location of ifstate.
  411. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
  412. bool "Use ip applet"
  413. default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP
  414. depends on BUSYBOX_CONFIG_IFUPDOWN
  415. help
  416. Use the iproute "ip" command to implement "ifup" and "ifdown", rather
  417. than the default of using the older 'ifconfig' and 'route' utilities.
  418. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN
  419. bool "Use busybox ip applet"
  420. default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP_BUILTIN
  421. depends on BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
  422. select BUSYBOX_CONFIG_PLATFORM_LINUX
  423. select BUSYBOX_CONFIG_IP
  424. select BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
  425. select BUSYBOX_CONFIG_FEATURE_IP_LINK
  426. select BUSYBOX_CONFIG_FEATURE_IP_ROUTE
  427. help
  428. Use the busybox iproute "ip" applet to implement "ifupdown".
  429. If left disabled, you must install the full-blown iproute2
  430. utility or the "ifup" and "ifdown" applets will not work.
  431. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
  432. bool "Use busybox ifconfig and route applets"
  433. default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
  434. depends on BUSYBOX_CONFIG_IFUPDOWN && !BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
  435. select BUSYBOX_CONFIG_IFCONFIG
  436. select BUSYBOX_CONFIG_ROUTE
  437. help
  438. Use the busybox iproute "ifconfig" and "route" applets to
  439. implement the "ifup" and "ifdown" utilities.
  440. If left disabled, you must install the full-blown ifconfig
  441. and route utilities, or the "ifup" and "ifdown" applets will not
  442. work.
  443. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV4
  444. bool "Support for IPv4"
  445. default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV4
  446. depends on BUSYBOX_CONFIG_IFUPDOWN
  447. help
  448. If you want ifup/ifdown to talk IPv4, leave this on.
  449. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV6
  450. bool "Support for IPv6"
  451. default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV6
  452. depends on BUSYBOX_CONFIG_IFUPDOWN && BUSYBOX_CONFIG_FEATURE_IPV6
  453. help
  454. If you need support for IPv6, turn this option on.
  455. ### UNUSED
  456. ###config FEATURE_IFUPDOWN_IPX
  457. ### bool "Support for IPX"
  458. ### default y
  459. ### depends on IFUPDOWN
  460. ### help
  461. ### If this option is selected you can use busybox to work with IPX
  462. ### networks.
  463. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_MAPPING
  464. bool "Enable mapping support"
  465. default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_MAPPING
  466. depends on BUSYBOX_CONFIG_IFUPDOWN
  467. help
  468. This enables support for the "mapping" stanza, unless you have
  469. a weird network setup you don't need it.
  470. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP
  471. bool "Support for external dhcp clients"
  472. default BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_EXTERNAL_DHCP
  473. depends on BUSYBOX_CONFIG_IFUPDOWN
  474. help
  475. This enables support for the external dhcp clients. Clients are
  476. tried in the following order: dhcpcd, dhclient, pump and udhcpc.
  477. Otherwise, if udhcpc applet is enabled, it is used.
  478. Otherwise, ifup/ifdown will have no support for DHCP.
  479. config BUSYBOX_CONFIG_INETD
  480. bool "inetd"
  481. default BUSYBOX_DEFAULT_INETD
  482. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  483. help
  484. Internet superserver daemon
  485. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  486. bool "Support echo service"
  487. default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  488. depends on BUSYBOX_CONFIG_INETD
  489. help
  490. Echo received data internal inetd service
  491. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  492. bool "Support discard service"
  493. default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  494. depends on BUSYBOX_CONFIG_INETD
  495. help
  496. Internet /dev/null internal inetd service
  497. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME
  498. bool "Support time service"
  499. default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_TIME
  500. depends on BUSYBOX_CONFIG_INETD
  501. help
  502. Return 32 bit time since 1900 internal inetd service
  503. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  504. bool "Support daytime service"
  505. default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  506. depends on BUSYBOX_CONFIG_INETD
  507. help
  508. Return human-readable time internal inetd service
  509. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  510. bool "Support chargen service"
  511. default BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  512. depends on BUSYBOX_CONFIG_INETD
  513. help
  514. Familiar character generator internal inetd service
  515. config BUSYBOX_CONFIG_FEATURE_INETD_RPC
  516. bool "Support RPC services"
  517. default BUSYBOX_DEFAULT_FEATURE_INETD_RPC
  518. depends on BUSYBOX_CONFIG_INETD
  519. select BUSYBOX_CONFIG_FEATURE_HAVE_RPC
  520. help
  521. Support Sun-RPC based services
  522. config BUSYBOX_CONFIG_IP
  523. bool "ip"
  524. default BUSYBOX_DEFAULT_IP
  525. select BUSYBOX_CONFIG_PLATFORM_LINUX
  526. help
  527. The "ip" applet is a TCP/IP interface configuration and routing
  528. utility. You generally don't need "ip" to use busybox with
  529. TCP/IP.
  530. config BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
  531. bool "ip address"
  532. default BUSYBOX_DEFAULT_FEATURE_IP_ADDRESS
  533. depends on BUSYBOX_CONFIG_IP
  534. help
  535. Address manipulation support for the "ip" applet.
  536. config BUSYBOX_CONFIG_FEATURE_IP_LINK
  537. bool "ip link"
  538. default BUSYBOX_DEFAULT_FEATURE_IP_LINK
  539. depends on BUSYBOX_CONFIG_IP
  540. help
  541. Configure network devices with "ip".
  542. config BUSYBOX_CONFIG_FEATURE_IP_ROUTE
  543. bool "ip route"
  544. default BUSYBOX_DEFAULT_FEATURE_IP_ROUTE
  545. depends on BUSYBOX_CONFIG_IP
  546. help
  547. Add support for routing table management to "ip".
  548. config BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
  549. bool "ip tunnel"
  550. default BUSYBOX_DEFAULT_FEATURE_IP_TUNNEL
  551. depends on BUSYBOX_CONFIG_IP
  552. help
  553. Add support for tunneling commands to "ip".
  554. config BUSYBOX_CONFIG_FEATURE_IP_RULE
  555. bool "ip rule"
  556. default BUSYBOX_DEFAULT_FEATURE_IP_RULE
  557. depends on BUSYBOX_CONFIG_IP
  558. help
  559. Add support for rule commands to "ip".
  560. config BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS
  561. bool "Support short forms of ip commands"
  562. default BUSYBOX_DEFAULT_FEATURE_IP_SHORT_FORMS
  563. depends on BUSYBOX_CONFIG_IP
  564. help
  565. Also support short-form of ip <OBJECT> commands:
  566. ip addr -> ipaddr
  567. ip link -> iplink
  568. ip route -> iproute
  569. ip tunnel -> iptunnel
  570. ip rule -> iprule
  571. Say N unless you desparately need the short form of the ip
  572. object commands.
  573. config BUSYBOX_CONFIG_FEATURE_IP_RARE_PROTOCOLS
  574. bool "Support displaying rarely used link types"
  575. default BUSYBOX_DEFAULT_FEATURE_IP_RARE_PROTOCOLS
  576. depends on BUSYBOX_CONFIG_IP
  577. help
  578. If you are not going to use links of type "frad", "econet",
  579. "bif" etc, you probably don't need to enable this.
  580. Ethernet, wireless, infrared, ppp/slip, ip tunnelling
  581. link types are supported without this option selected.
  582. config BUSYBOX_CONFIG_IPADDR
  583. bool
  584. default BUSYBOX_DEFAULT_IPADDR
  585. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
  586. config BUSYBOX_CONFIG_IPLINK
  587. bool
  588. default BUSYBOX_DEFAULT_IPLINK
  589. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_LINK
  590. config BUSYBOX_CONFIG_IPROUTE
  591. bool
  592. default BUSYBOX_DEFAULT_IPROUTE
  593. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_ROUTE
  594. config BUSYBOX_CONFIG_IPTUNNEL
  595. bool
  596. default BUSYBOX_DEFAULT_IPTUNNEL
  597. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
  598. config BUSYBOX_CONFIG_IPRULE
  599. bool
  600. default BUSYBOX_DEFAULT_IPRULE
  601. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_RULE
  602. config BUSYBOX_CONFIG_IPCALC
  603. bool "ipcalc"
  604. default BUSYBOX_DEFAULT_IPCALC
  605. help
  606. ipcalc takes an IP address and netmask and calculates the
  607. resulting broadcast, network, and host range.
  608. config BUSYBOX_CONFIG_FEATURE_IPCALC_FANCY
  609. bool "Fancy IPCALC, more options, adds 1 kbyte"
  610. default BUSYBOX_DEFAULT_FEATURE_IPCALC_FANCY
  611. depends on BUSYBOX_CONFIG_IPCALC
  612. help
  613. Adds the options hostname, prefix and silent to the output of
  614. "ipcalc".
  615. config BUSYBOX_CONFIG_FEATURE_IPCALC_LONG_OPTIONS
  616. bool "Enable long options"
  617. default BUSYBOX_DEFAULT_FEATURE_IPCALC_LONG_OPTIONS
  618. depends on BUSYBOX_CONFIG_IPCALC && BUSYBOX_CONFIG_LONG_OPTS
  619. help
  620. Support long options for the ipcalc applet.
  621. config BUSYBOX_CONFIG_NETMSG
  622. bool "netmsg"
  623. default BUSYBOX_DEFAULT_NETMSG
  624. help
  625. simple program for sending udp broadcast messages
  626. config BUSYBOX_CONFIG_NETSTAT
  627. bool "netstat"
  628. default BUSYBOX_DEFAULT_NETSTAT
  629. select BUSYBOX_CONFIG_PLATFORM_LINUX
  630. help
  631. netstat prints information about the Linux networking subsystem.
  632. config BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE
  633. bool "Enable wide netstat output"
  634. default BUSYBOX_DEFAULT_FEATURE_NETSTAT_WIDE
  635. depends on BUSYBOX_CONFIG_NETSTAT
  636. help
  637. Add support for wide columns. Useful when displaying IPv6 addresses
  638. (-W option).
  639. config BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG
  640. bool "Enable PID/Program name output"
  641. default BUSYBOX_DEFAULT_FEATURE_NETSTAT_PRG
  642. depends on BUSYBOX_CONFIG_NETSTAT
  643. help
  644. Add support for -p flag to print out PID and program name.
  645. +700 bytes of code.
  646. config BUSYBOX_CONFIG_NSLOOKUP
  647. bool "nslookup"
  648. default BUSYBOX_DEFAULT_NSLOOKUP
  649. help
  650. nslookup is a tool to query Internet name servers.
  651. config BUSYBOX_CONFIG_NTPD
  652. bool "ntpd"
  653. default BUSYBOX_DEFAULT_NTPD
  654. select BUSYBOX_CONFIG_PLATFORM_LINUX
  655. help
  656. The NTP client/server daemon.
  657. config BUSYBOX_CONFIG_FEATURE_NTPD_SERVER
  658. bool "Make ntpd usable as a NTP server"
  659. default BUSYBOX_DEFAULT_FEATURE_NTPD_SERVER
  660. depends on BUSYBOX_CONFIG_NTPD
  661. help
  662. Make ntpd usable as a NTP server. If you disable this option
  663. ntpd will be usable only as a NTP client.
  664. config BUSYBOX_CONFIG_PSCAN
  665. bool "pscan"
  666. default BUSYBOX_DEFAULT_PSCAN
  667. help
  668. Simple network port scanner.
  669. config BUSYBOX_CONFIG_ROUTE
  670. bool "route"
  671. default BUSYBOX_DEFAULT_ROUTE
  672. select BUSYBOX_CONFIG_PLATFORM_LINUX
  673. help
  674. Route displays or manipulates the kernel's IP routing tables.
  675. config BUSYBOX_CONFIG_SLATTACH
  676. bool "slattach"
  677. default BUSYBOX_DEFAULT_SLATTACH
  678. select BUSYBOX_CONFIG_PLATFORM_LINUX
  679. help
  680. slattach is a small utility to attach network interfaces to serial
  681. lines.
  682. #config TC
  683. # bool "tc"
  684. # default y
  685. # help
  686. # show / manipulate traffic control settings
  687. #
  688. #config FEATURE_TC_INGRESS
  689. # def_bool n
  690. # depends on TC
  691. config BUSYBOX_CONFIG_TCPSVD
  692. bool "tcpsvd"
  693. default BUSYBOX_DEFAULT_TCPSVD
  694. help
  695. tcpsvd listens on a TCP port and runs a program for each new
  696. connection.
  697. config BUSYBOX_CONFIG_TELNET
  698. bool "telnet"
  699. default BUSYBOX_DEFAULT_TELNET
  700. help
  701. Telnet is an interface to the TELNET protocol, but is also commonly
  702. used to test other simple protocols.
  703. config BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE
  704. bool "Pass TERM type to remote host"
  705. default BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE
  706. depends on BUSYBOX_CONFIG_TELNET
  707. help
  708. Setting this option will forward the TERM environment variable to the
  709. remote host you are connecting to. This is useful to make sure that
  710. things like ANSI colors and other control sequences behave.
  711. config BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN
  712. bool "Pass USER type to remote host"
  713. default BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN
  714. depends on BUSYBOX_CONFIG_TELNET
  715. help
  716. Setting this option will forward the USER environment variable to the
  717. remote host you are connecting to. This is useful when you need to
  718. log into a machine without telling the username (autologin). This
  719. option enables `-a' and `-l USER' arguments.
  720. config BUSYBOX_CONFIG_TELNETD
  721. bool "telnetd"
  722. default BUSYBOX_DEFAULT_TELNETD
  723. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  724. help
  725. A daemon for the TELNET protocol, allowing you to log onto the host
  726. running the daemon. Please keep in mind that the TELNET protocol
  727. sends passwords in plain text. If you can't afford the space for an
  728. SSH daemon and you trust your network, you may say 'y' here. As a
  729. more secure alternative, you should seriously consider installing the
  730. very small Dropbear SSH daemon instead:
  731. http://matt.ucc.asn.au/dropbear/dropbear.html
  732. Note that for busybox telnetd to work you need several things:
  733. First of all, your kernel needs:
  734. UNIX98_PTYS=y
  735. DEVPTS_FS=y
  736. Next, you need a /dev/pts directory on your root filesystem:
  737. $ ls -ld /dev/pts
  738. drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
  739. Next you need the pseudo terminal master multiplexer /dev/ptmx:
  740. $ ls -la /dev/ptmx
  741. crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
  742. Any /dev/ttyp[0-9]* files you may have can be removed.
  743. Next, you need to mount the devpts filesystem on /dev/pts using:
  744. mount -t devpts devpts /dev/pts
  745. You need to be sure that busybox has LOGIN and
  746. FEATURE_SUID enabled. And finally, you should make
  747. certain that Busybox has been installed setuid root:
  748. chown root.root /bin/busybox
  749. chmod 4755 /bin/busybox
  750. with all that done, telnetd _should_ work....
  751. config BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE
  752. bool "Support standalone telnetd (not inetd only)"
  753. default BUSYBOX_DEFAULT_FEATURE_TELNETD_STANDALONE
  754. depends on BUSYBOX_CONFIG_TELNETD
  755. help
  756. Selecting this will make telnetd able to run standalone.
  757. config BUSYBOX_CONFIG_FEATURE_TELNETD_INETD_WAIT
  758. bool "Support -w SEC option (inetd wait mode)"
  759. default BUSYBOX_DEFAULT_FEATURE_TELNETD_INETD_WAIT
  760. depends on BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE
  761. help
  762. This option allows you to run telnetd in "inet wait" mode.
  763. Example inetd.conf line (note "wait", not usual "nowait"):
  764. telnet stream tcp wait root /bin/telnetd telnetd -w10
  765. In this example, inetd passes _listening_ socket_ as fd 0
  766. to telnetd when connection appears.
  767. telnetd will wait for connections until all existing
  768. connections are closed, and no new connections
  769. appear during 10 seconds. Then it exits, and inetd continues
  770. to listen for new connections.
  771. This option is rarely used. "tcp nowait" is much more usual
  772. way of running tcp services, including telnetd.
  773. You most probably want to say N here.
  774. config BUSYBOX_CONFIG_TFTP
  775. bool "tftp"
  776. default BUSYBOX_DEFAULT_TFTP
  777. help
  778. This enables the Trivial File Transfer Protocol client program. TFTP
  779. is usually used for simple, small transfers such as a root image
  780. for a network-enabled bootloader.
  781. config BUSYBOX_CONFIG_TFTPD
  782. bool "tftpd"
  783. default BUSYBOX_DEFAULT_TFTPD
  784. help
  785. This enables the Trivial File Transfer Protocol server program.
  786. It expects that stdin is a datagram socket and a packet
  787. is already pending on it. It will exit after one transfer.
  788. In other words: it should be run from inetd in nowait mode,
  789. or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
  790. comment "Common options for tftp/tftpd"
  791. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
  792. config BUSYBOX_CONFIG_FEATURE_TFTP_GET
  793. bool "Enable 'tftp get' and/or tftpd upload code"
  794. default BUSYBOX_DEFAULT_FEATURE_TFTP_GET
  795. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
  796. help
  797. Add support for the GET command within the TFTP client. This allows
  798. a client to retrieve a file from a TFTP server.
  799. Also enable upload support in tftpd, if tftpd is selected.
  800. Note: this option does _not_ make tftpd capable of download
  801. (the usual operation people need from it)!
  802. config BUSYBOX_CONFIG_FEATURE_TFTP_PUT
  803. bool "Enable 'tftp put' and/or tftpd download code"
  804. default BUSYBOX_DEFAULT_FEATURE_TFTP_PUT
  805. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
  806. help
  807. Add support for the PUT command within the TFTP client. This allows
  808. a client to transfer a file to a TFTP server.
  809. Also enable download support in tftpd, if tftpd is selected.
  810. config BUSYBOX_CONFIG_FEATURE_TFTP_BLOCKSIZE
  811. bool "Enable 'blksize' and 'tsize' protocol options"
  812. default BUSYBOX_DEFAULT_FEATURE_TFTP_BLOCKSIZE
  813. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
  814. help
  815. Allow tftp to specify block size, and tftpd to understand
  816. "blksize" and "tsize" options.
  817. config BUSYBOX_CONFIG_FEATURE_TFTP_PROGRESS_BAR
  818. bool "Enable tftp progress meter"
  819. default BUSYBOX_DEFAULT_FEATURE_TFTP_PROGRESS_BAR
  820. depends on BUSYBOX_CONFIG_TFTP && BUSYBOX_CONFIG_FEATURE_TFTP_BLOCKSIZE
  821. help
  822. Show progress bar.
  823. config BUSYBOX_CONFIG_TFTP_DEBUG
  824. bool "Enable debug"
  825. default BUSYBOX_DEFAULT_TFTP_DEBUG
  826. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
  827. help
  828. Make tftp[d] print debugging messages on stderr.
  829. This is useful if you are diagnosing a bug in tftp[d].
  830. config BUSYBOX_CONFIG_TRACEROUTE
  831. bool "traceroute"
  832. default BUSYBOX_DEFAULT_TRACEROUTE
  833. select BUSYBOX_CONFIG_PLATFORM_LINUX
  834. help
  835. Utility to trace the route of IP packets.
  836. config BUSYBOX_CONFIG_TRACEROUTE6
  837. bool "traceroute6"
  838. default BUSYBOX_DEFAULT_TRACEROUTE6
  839. depends on BUSYBOX_CONFIG_FEATURE_IPV6 && BUSYBOX_CONFIG_TRACEROUTE
  840. help
  841. Utility to trace the route of IPv6 packets.
  842. config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE
  843. bool "Enable verbose output"
  844. default BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_VERBOSE
  845. depends on BUSYBOX_CONFIG_TRACEROUTE
  846. help
  847. Add some verbosity to traceroute. This includes among other things
  848. hostnames and ICMP response types.
  849. config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
  850. bool "Enable loose source route"
  851. default BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_SOURCE_ROUTE
  852. depends on BUSYBOX_CONFIG_TRACEROUTE
  853. help
  854. Add option to specify a loose source route gateway
  855. (8 maximum).
  856. config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP
  857. bool "Use ICMP instead of UDP"
  858. default BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP
  859. depends on BUSYBOX_CONFIG_TRACEROUTE
  860. help
  861. Add option -I to use ICMP ECHO instead of UDP datagrams.
  862. config BUSYBOX_CONFIG_TUNCTL
  863. bool "tunctl"
  864. default BUSYBOX_DEFAULT_TUNCTL
  865. select BUSYBOX_CONFIG_PLATFORM_LINUX
  866. help
  867. tunctl creates or deletes tun devices.
  868. config BUSYBOX_CONFIG_FEATURE_TUNCTL_UG
  869. bool "Support owner:group assignment"
  870. default BUSYBOX_DEFAULT_FEATURE_TUNCTL_UG
  871. depends on BUSYBOX_CONFIG_TUNCTL
  872. help
  873. Allow to specify owner and group of newly created interface.
  874. 340 bytes of pure bloat. Say no here.
  875. source package/utils/busybox/config/networking/udhcp/Config.in
  876. config BUSYBOX_CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS
  877. string "ifup udhcpc command line options"
  878. default BUSYBOX_DEFAULT_IFUPDOWN_UDHCPC_CMD_OPTIONS
  879. depends on BUSYBOX_CONFIG_IFUPDOWN && BUSYBOX_CONFIG_UDHCPC
  880. help
  881. Command line options to pass to udhcpc from ifup.
  882. Intended to alter options not available in /etc/network/interfaces.
  883. (IE: --syslog --background etc...)
  884. config BUSYBOX_CONFIG_UDPSVD
  885. bool "udpsvd"
  886. default BUSYBOX_DEFAULT_UDPSVD
  887. help
  888. udpsvd listens on an UDP port and runs a program for each new
  889. connection.
  890. config BUSYBOX_CONFIG_VCONFIG
  891. bool "vconfig"
  892. default BUSYBOX_DEFAULT_VCONFIG
  893. select BUSYBOX_CONFIG_PLATFORM_LINUX
  894. help
  895. Creates, removes, and configures VLAN interfaces
  896. config BUSYBOX_CONFIG_WGET
  897. bool "wget"
  898. default BUSYBOX_DEFAULT_WGET
  899. help
  900. wget is a utility for non-interactive download of files from HTTP,
  901. HTTPS, and FTP servers.
  902. config BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR
  903. bool "Enable a nifty process meter (+2k)"
  904. default BUSYBOX_DEFAULT_FEATURE_WGET_STATUSBAR
  905. depends on BUSYBOX_CONFIG_WGET
  906. help
  907. Enable the transfer progress bar for wget transfers.
  908. config BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION
  909. bool "Enable HTTP authentication"
  910. default BUSYBOX_DEFAULT_FEATURE_WGET_AUTHENTICATION
  911. depends on BUSYBOX_CONFIG_WGET
  912. help
  913. Support authenticated HTTP transfers.
  914. config BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS
  915. bool "Enable long options"
  916. default BUSYBOX_DEFAULT_FEATURE_WGET_LONG_OPTIONS
  917. depends on BUSYBOX_CONFIG_WGET && BUSYBOX_CONFIG_LONG_OPTS
  918. help
  919. Support long options for the wget applet.
  920. config BUSYBOX_CONFIG_FEATURE_WGET_TIMEOUT
  921. bool "Enable read timeout option -T SEC"
  922. default BUSYBOX_DEFAULT_FEATURE_WGET_TIMEOUT
  923. depends on BUSYBOX_CONFIG_WGET
  924. help
  925. Supports network read timeout for wget, so that wget will give
  926. up and timeout when reading network data, through the -T command
  927. line option. Currently only network data read timeout is
  928. supported (i.e., timeout is not applied to the DNS nor TCP
  929. connection initialization). When FEATURE_WGET_LONG_OPTIONS is
  930. also enabled, the --timeout option will work in addition to -T.
  931. config BUSYBOX_CONFIG_ZCIP
  932. bool "zcip"
  933. default BUSYBOX_DEFAULT_ZCIP
  934. select BUSYBOX_CONFIG_PLATFORM_LINUX
  935. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  936. help
  937. ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
  938. It's a daemon that allocates and defends a dynamically assigned
  939. address on the 169.254/16 network, requiring no system administrator.
  940. See http://www.zeroconf.org for further details, and "zcip.script"
  941. in the busybox examples.
  942. endmenu