Config.in 25 KB

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