Config.in 27 KB

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