Config.in 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  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 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 VERBOSE_RESOLUTION_ERRORS
  13. bool "Verbose resolution errors"
  14. default n
  15. help
  16. Enable if you are not satisfied with simplistic
  17. "can't resolve 'hostname.com'" and want to know more.
  18. This may increase size of your executable a bit.
  19. config ARP
  20. bool "arp"
  21. default n
  22. help
  23. Manipulate the system ARP cache.
  24. config ARPING
  25. bool "arping"
  26. default n
  27. help
  28. Ping hosts by ARP packets.
  29. config DNSD
  30. bool "dnsd"
  31. default n
  32. help
  33. Small and static DNS server daemon.
  34. config ETHER_WAKE
  35. bool "ether-wake"
  36. default n
  37. help
  38. Send a magic packet to wake up sleeping machines.
  39. config FAKEIDENTD
  40. bool "fakeidentd"
  41. default n
  42. select FEATURE_SYSLOG
  43. help
  44. fakeidentd listens on the ident port and returns a predefined
  45. fake value on any query.
  46. config FTPGET
  47. bool "ftpget"
  48. default n
  49. help
  50. Retrieve a remote file via FTP.
  51. config FTPPUT
  52. bool "ftpput"
  53. default n
  54. help
  55. Store a remote file via FTP.
  56. config FEATURE_FTPGETPUT_LONG_OPTIONS
  57. bool "Enable long options in ftpget/ftpput"
  58. default n
  59. depends on GETOPT_LONG && (FTPGET || FTPPUT)
  60. help
  61. Support long options for the ftpget/ftpput applet.
  62. config HOSTNAME
  63. bool "hostname"
  64. default n
  65. help
  66. Show or set the system's host name.
  67. config HTTPD
  68. bool "httpd"
  69. default n
  70. help
  71. Serve web pages via an HTTP server.
  72. config FEATURE_HTTPD_RANGES
  73. bool "Support 'Ranges:' header"
  74. default n
  75. depends on HTTPD
  76. help
  77. Makes httpd emit "Accept-Ranges: bytes" header and understand
  78. "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
  79. downloads, seeking in multimedia players etc.
  80. config FEATURE_HTTPD_USE_SENDFILE
  81. bool "Use sendfile system call"
  82. default n
  83. depends on HTTPD
  84. help
  85. When enabled, httpd will use the kernel sendfile() function
  86. instead of read/write loop.
  87. config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
  88. bool "Support reloading the global config file using hup signal"
  89. default n
  90. depends on HTTPD
  91. help
  92. This option enables processing of SIGHUP to reload cached
  93. configuration settings.
  94. config FEATURE_HTTPD_SETUID
  95. bool "Enable -u <user> option"
  96. default n
  97. depends on HTTPD
  98. help
  99. This option allows the server to run as a specific user
  100. rather than defaulting to the user that starts the server.
  101. Use of this option requires special privileges to change to a
  102. different user.
  103. config FEATURE_HTTPD_BASIC_AUTH
  104. bool "Enable Basic http Authentication"
  105. default y
  106. depends on HTTPD
  107. help
  108. Utilizes password settings from /etc/httpd.conf for basic
  109. authentication on a per url basis.
  110. config FEATURE_HTTPD_AUTH_MD5
  111. bool "Support MD5 crypted passwords for http Authentication"
  112. default n
  113. depends on FEATURE_HTTPD_BASIC_AUTH
  114. help
  115. Enables basic per URL authentication from /etc/httpd.conf
  116. using md5 passwords.
  117. config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
  118. bool "Support loading additional MIME types at run-time"
  119. default n
  120. depends on HTTPD
  121. help
  122. This option enables support for additional MIME types at
  123. run-time to be specified in the configuration file.
  124. config FEATURE_HTTPD_CGI
  125. bool "Support Common Gateway Interface (CGI)"
  126. default y
  127. depends on HTTPD
  128. help
  129. This option allows scripts and executables to be invoked
  130. when specific URLs are requested.
  131. config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
  132. bool "Enable support for running scripts through an interpreter"
  133. default n
  134. depends on FEATURE_HTTPD_CGI
  135. help
  136. This option enables support for running scripts through an
  137. interpreter. Turn this on if you want PHP scripts to work
  138. properly. You need to supply an additional line in your httpd
  139. config file:
  140. *.php:/path/to/your/php
  141. config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
  142. bool "Support the REMOTE_PORT environment variable for CGI"
  143. default n
  144. depends on FEATURE_HTTPD_CGI
  145. help
  146. Use of this option can assist scripts in generating
  147. references that contain a unique port number.
  148. config FEATURE_HTTPD_ENCODE_URL_STR
  149. bool "Enable the -e option for shell script CGI simplification."
  150. default y
  151. depends on HTTPD
  152. help
  153. This option allows html encoding arbitrary
  154. strings for display of the browser. Output goes to stdout.
  155. For example, httpd -e "<Hello World>" as
  156. "&#60Hello&#32World&#62".
  157. config FEATURE_HTTPD_ERROR_PAGES
  158. bool "Enable support for custom error pages"
  159. default n
  160. depends on HTTPD
  161. help
  162. This option allows you to define custom error pages in
  163. the configuration file instead of the default HTTP status
  164. error pages. For instance, if you add the line:
  165. E404:/path/e404.html
  166. in the config file, the server will respond the specified
  167. '/path/e404.html' file instead of the terse '404 NOT FOUND'
  168. message.
  169. config FEATURE_HTTPD_PROXY
  170. bool "Enable support for reverse proxy"
  171. default n
  172. depends on HTTPD
  173. help
  174. This option allows you to define URLs that will be forwarded
  175. to another HTTP server. To setup add the following line to the
  176. configuration file
  177. P:/url/:http://hostname[:port]/new/path/
  178. Then a request to /url/myfile will be forwarded to
  179. http://hostname[:port]/new/path/myfile.
  180. config IFCONFIG
  181. bool "ifconfig"
  182. default n
  183. help
  184. Ifconfig is used to configure the kernel-resident network interfaces.
  185. config FEATURE_IFCONFIG_STATUS
  186. bool "Enable status reporting output (+7k)"
  187. default y
  188. depends on IFCONFIG
  189. help
  190. If ifconfig is called with no arguments it will display the status
  191. of the currently active interfaces.
  192. config FEATURE_IFCONFIG_SLIP
  193. bool "Enable slip-specific options \"keepalive\" and \"outfill\""
  194. default n
  195. depends on IFCONFIG
  196. help
  197. Allow "keepalive" and "outfill" support for SLIP. If you're not
  198. planning on using serial lines, leave this unchecked.
  199. config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
  200. bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
  201. default n
  202. depends on IFCONFIG
  203. help
  204. Allow the start address for shared memory, start address for I/O,
  205. and/or the interrupt line used by the specified device.
  206. config FEATURE_IFCONFIG_HW
  207. bool "Enable option \"hw\" (ether only)"
  208. default y
  209. depends on IFCONFIG
  210. help
  211. Set the hardware address of this interface, if the device driver
  212. supports this operation. Currently, we only support the 'ether'
  213. class.
  214. config FEATURE_IFCONFIG_BROADCAST_PLUS
  215. bool "Set the broadcast automatically"
  216. default n
  217. depends on IFCONFIG
  218. help
  219. Setting this will make ifconfig attempt to find the broadcast
  220. automatically if the value '+' is used.
  221. config IFUPDOWN
  222. bool "ifupdown"
  223. default n
  224. help
  225. Activate or deactivate the specified interfaces. This applet makes
  226. use of either "ifconfig" and "route" or the "ip" command to actually
  227. configure network interfaces. Therefore, you will probably also want
  228. to enable either IFCONFIG and ROUTE, or enable
  229. FEATURE_IFUPDOWN_IP and the various IP options. Of
  230. course you could use non-busybox versions of these programs, so
  231. against my better judgement (since this will surely result in plenty
  232. of support questions on the mailing list), I do not force you to
  233. enable these additional options. It is up to you to supply either
  234. "ifconfig", "route" and "run-parts" or the "ip" command, either
  235. via busybox or via standalone utilities.
  236. config IFUPDOWN_IFSTATE_PATH
  237. string "Absolute path to ifstate file"
  238. default "/var/run/ifstate"
  239. depends on IFUPDOWN
  240. help
  241. ifupdown keeps state information in a file called ifstate.
  242. Typically it is located in /var/run/ifstate, however
  243. some distributions tend to put it in other places
  244. (debian, for example, uses /etc/network/run/ifstate).
  245. This config option defines location of ifstate.
  246. config FEATURE_IFUPDOWN_IP
  247. bool "Use ip applet"
  248. default n
  249. depends on IFUPDOWN
  250. help
  251. Use the iproute "ip" command to implement "ifup" and "ifdown", rather
  252. than the default of using the older 'ifconfig' and 'route' utilities.
  253. config FEATURE_IFUPDOWN_IP_BUILTIN
  254. bool "Use busybox ip applet"
  255. default y
  256. depends on FEATURE_IFUPDOWN_IP
  257. select IP
  258. select FEATURE_IP_ADDRESS
  259. select FEATURE_IP_LINK
  260. select FEATURE_IP_ROUTE
  261. help
  262. Use the busybox iproute "ip" applet to implement "ifupdown".
  263. If left disabled, you must install the full-blown iproute2
  264. utility or the "ifup" and "ifdown" applets will not work.
  265. config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
  266. bool "Use busybox ifconfig and route applets"
  267. default y
  268. depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
  269. select IFCONFIG
  270. select ROUTE
  271. help
  272. Use the busybox iproute "ifconfig" and "route" applets to
  273. implement the "ifup" and "ifdown" utilities.
  274. If left disabled, you must install the full-blown ifconfig
  275. and route utilities, or the "ifup" and "ifdown" applets will not
  276. work.
  277. config FEATURE_IFUPDOWN_IPV4
  278. bool "Enable support for IPv4"
  279. default y
  280. depends on IFUPDOWN
  281. help
  282. If you want ifup/ifdown to talk IPv4, leave this on.
  283. config FEATURE_IFUPDOWN_IPV6
  284. bool "Enable support for IPv6"
  285. default n
  286. depends on IFUPDOWN && FEATURE_IPV6
  287. help
  288. If you need support for IPv6, turn this option on.
  289. ### UNUSED
  290. ###config FEATURE_IFUPDOWN_IPX
  291. ### bool "Enable support for IPX"
  292. ### default n
  293. ### depends on IFUPDOWN
  294. ### help
  295. ### If this option is selected you can use busybox to work with IPX
  296. ### networks.
  297. config FEATURE_IFUPDOWN_MAPPING
  298. bool "Enable mapping support"
  299. default n
  300. depends on IFUPDOWN
  301. help
  302. This enables support for the "mapping" stanza, unless you have
  303. a weird network setup you don't need it.
  304. config FEATURE_IFUPDOWN_EXTERNAL_DHCP
  305. bool "Enable support for external dhcp clients"
  306. default n
  307. depends on IFUPDOWN
  308. help
  309. This enables support for the external dhcp clients. Clients are
  310. tried in the following order: dhcpcd, dhclient, pump and udhcpc.
  311. Otherwise, if udhcpc applet is enabled, it is used.
  312. Otherwise, ifup/ifdown will have no support for DHCP.
  313. config INETD
  314. bool "inetd"
  315. default n
  316. select FEATURE_SYSLOG
  317. help
  318. Internet superserver daemon
  319. config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  320. bool "Support echo service"
  321. default y
  322. depends on INETD
  323. help
  324. Echo received data internal inetd service
  325. config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  326. bool "Support discard service"
  327. default y
  328. depends on INETD
  329. help
  330. Internet /dev/null internal inetd service
  331. config FEATURE_INETD_SUPPORT_BUILTIN_TIME
  332. bool "Support time service"
  333. default y
  334. depends on INETD
  335. help
  336. Return 32 bit time since 1900 internal inetd service
  337. config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  338. bool "Support daytime service"
  339. default y
  340. depends on INETD
  341. help
  342. Return human-readable time internal inetd service
  343. config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  344. bool "Support chargen service"
  345. default y
  346. depends on INETD
  347. help
  348. Familiar character generator internal inetd service
  349. config FEATURE_INETD_RPC
  350. bool "Support RPC services"
  351. default n
  352. depends on INETD
  353. select FEATURE_HAVE_RPC
  354. help
  355. Support Sun-RPC based services
  356. config IP
  357. bool "ip"
  358. default n
  359. help
  360. The "ip" applet is a TCP/IP interface configuration and routing
  361. utility. You generally don't need "ip" to use busybox with
  362. TCP/IP.
  363. config FEATURE_IP_ADDRESS
  364. bool "ip address"
  365. default y
  366. depends on IP
  367. help
  368. Address manipulation support for the "ip" applet.
  369. config FEATURE_IP_LINK
  370. bool "ip link"
  371. default y
  372. depends on IP
  373. help
  374. Configure network devices with "ip".
  375. config FEATURE_IP_ROUTE
  376. bool "ip route"
  377. default y
  378. depends on IP
  379. help
  380. Add support for routing table management to "ip".
  381. config FEATURE_IP_TUNNEL
  382. bool "ip tunnel"
  383. default n
  384. depends on IP
  385. help
  386. Add support for tunneling commands to "ip".
  387. config FEATURE_IP_RULE
  388. bool "ip rule"
  389. default n
  390. depends on IP
  391. help
  392. Add support for rule commands to "ip".
  393. config FEATURE_IP_SHORT_FORMS
  394. bool "Support short forms of ip commands."
  395. default n
  396. depends on IP
  397. help
  398. Also support short-form of ip <OBJECT> commands:
  399. ip addr -> ipaddr
  400. ip link -> iplink
  401. ip route -> iproute
  402. ip tunnel -> iptunnel
  403. ip rule -> iprule
  404. Say N unless you desparately need the short form of the ip
  405. object commands.
  406. config FEATURE_IP_RARE_PROTOCOLS
  407. bool "Support displaying rarely used link types"
  408. default n
  409. depends on IP
  410. help
  411. If you are not going to use links of type "frad", "econet",
  412. "bif" etc, you probably don't need to enable this.
  413. Ethernet, wireless, infrared, ppp/slip, ip tunnelling
  414. link types are supported without this option selected.
  415. config IPADDR
  416. bool
  417. default y
  418. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
  419. config IPLINK
  420. bool
  421. default y
  422. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
  423. config IPROUTE
  424. bool
  425. default y
  426. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
  427. config IPTUNNEL
  428. bool
  429. default y
  430. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
  431. config IPRULE
  432. bool
  433. default y
  434. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
  435. config IPCALC
  436. bool "ipcalc"
  437. default n
  438. help
  439. ipcalc takes an IP address and netmask and calculates the
  440. resulting broadcast, network, and host range.
  441. config FEATURE_IPCALC_FANCY
  442. bool "Fancy IPCALC, more options, adds 1 kbyte"
  443. default y
  444. depends on IPCALC
  445. help
  446. Adds the options hostname, prefix and silent to the output of "ipcalc".
  447. config FEATURE_IPCALC_LONG_OPTIONS
  448. bool "Enable long options"
  449. default n
  450. depends on IPCALC && GETOPT_LONG
  451. help
  452. Support long options for the ipcalc applet.
  453. config NAMEIF
  454. bool "nameif"
  455. default n
  456. select FEATURE_SYSLOG
  457. help
  458. nameif is used to rename network interface by its MAC address.
  459. Renamed interfaces MUST be in the down state.
  460. It is possible to use a file (default: /etc/mactab)
  461. with list of new interface names and MACs.
  462. Maximum interface name length: IF_NAMESIZE = 16
  463. File fields are separated by space or tab.
  464. File format:
  465. # Comment
  466. new_interface_name XX:XX:XX:XX:XX:XX
  467. config NC
  468. bool "nc"
  469. default n
  470. help
  471. A simple Unix utility which reads and writes data across network
  472. connections.
  473. config NC_SERVER
  474. bool "Netcat server options (-l)"
  475. default n
  476. depends on NC
  477. help
  478. Allow netcat to act as a server.
  479. config NC_EXTRA
  480. bool "Netcat extensions (-eiw and filename)"
  481. default n
  482. depends on NC
  483. help
  484. Add -e (support for executing the rest of the command line after
  485. making or receiving a successful connection), -i (delay interval for
  486. lines sent), -w (timeout for initial connection).
  487. config NETSTAT
  488. bool "netstat"
  489. default n
  490. help
  491. netstat prints information about the Linux networking subsystem.
  492. config FEATURE_NETSTAT_WIDE
  493. bool " Enable wide netstat output"
  494. default n
  495. depends on NETSTAT
  496. help
  497. Add support for wide columns. Useful when displaying IPv6 addresses
  498. (-W option).
  499. config NSLOOKUP
  500. bool "nslookup"
  501. default n
  502. help
  503. nslookup is a tool to query Internet name servers.
  504. config PING
  505. bool "ping"
  506. default n
  507. help
  508. ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
  509. elicit an ICMP ECHO_RESPONSE from a host or gateway.
  510. config PING6
  511. bool "ping6"
  512. default n
  513. depends on FEATURE_IPV6 && PING
  514. help
  515. This will give you a ping that can talk IPv6.
  516. config PSCAN
  517. bool "pscan"
  518. default n
  519. help
  520. Simple network port scanner.
  521. config FEATURE_FANCY_PING
  522. bool "Enable fancy ping output"
  523. default y
  524. depends on PING
  525. help
  526. Make the output from the ping applet include statistics, and at the
  527. same time provide full support for ICMP packets.
  528. config ROUTE
  529. bool "route"
  530. default n
  531. help
  532. Route displays or manipulates the kernel's IP routing tables.
  533. config SLATTACH
  534. bool "slattach"
  535. default n
  536. help
  537. slattach is a small utility to attach network interfaces to serial lines.
  538. config TELNET
  539. bool "telnet"
  540. default n
  541. help
  542. Telnet is an interface to the TELNET protocol, but is also commonly
  543. used to test other simple protocols.
  544. config FEATURE_TELNET_TTYPE
  545. bool "Pass TERM type to remote host"
  546. default y
  547. depends on TELNET
  548. help
  549. Setting this option will forward the TERM environment variable to the
  550. remote host you are connecting to. This is useful to make sure that
  551. things like ANSI colors and other control sequences behave.
  552. config FEATURE_TELNET_AUTOLOGIN
  553. bool "Pass USER type to remote host"
  554. default y
  555. depends on TELNET
  556. help
  557. Setting this option will forward the USER environment variable to the
  558. remote host you are connecting to. This is useful when you need to
  559. log into a machine without telling the username (autologin). This
  560. option enables `-a' and `-l USER' arguments.
  561. config TELNETD
  562. bool "telnetd"
  563. default n
  564. select FEATURE_SYSLOG
  565. help
  566. A daemon for the TELNET protocol, allowing you to log onto the host
  567. running the daemon. Please keep in mind that the TELNET protocol
  568. sends passwords in plain text. If you can't afford the space for an
  569. SSH daemon and you trust your network, you may say 'y' here. As a
  570. more secure alternative, you should seriously consider installing the
  571. very small Dropbear SSH daemon instead:
  572. http://matt.ucc.asn.au/dropbear/dropbear.html
  573. Note that for busybox telnetd to work you need several things:
  574. First of all, your kernel needs:
  575. UNIX98_PTYS=y
  576. DEVPTS_FS=y
  577. Next, you need a /dev/pts directory on your root filesystem:
  578. $ ls -ld /dev/pts
  579. drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
  580. Next you need the pseudo terminal master multiplexer /dev/ptmx:
  581. $ ls -la /dev/ptmx
  582. crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
  583. Any /dev/ttyp[0-9]* files you may have can be removed.
  584. Next, you need to mount the devpts filesystem on /dev/pts using:
  585. mount -t devpts devpts /dev/pts
  586. You need to be sure that Busybox has LOGIN and
  587. FEATURE_SUID enabled. And finally, you should make
  588. certain that Busybox has been installed setuid root:
  589. chown root.root /bin/busybox
  590. chmod 4755 /bin/busybox
  591. with all that done, telnetd _should_ work....
  592. config FEATURE_TELNETD_STANDALONE
  593. bool "Support standalone telnetd (not inetd only)"
  594. default n
  595. depends on TELNETD
  596. help
  597. Selecting this will make telnetd able to run standalone.
  598. config TFTP
  599. bool "tftp"
  600. default n
  601. help
  602. This enables the Trivial File Transfer Protocol client program. TFTP
  603. is usually used for simple, small transfers such as a root image
  604. for a network-enabled bootloader.
  605. config FEATURE_TFTP_GET
  606. bool "Enable \"get\" command"
  607. default y
  608. depends on TFTP
  609. help
  610. Add support for the GET command within the TFTP client. This allows
  611. a client to retrieve a file from a TFTP server.
  612. config FEATURE_TFTP_PUT
  613. bool "Enable \"put\" command"
  614. default y
  615. depends on TFTP
  616. help
  617. Add support for the PUT command within the TFTP client. This allows
  618. a client to transfer a file to a TFTP server.
  619. config FEATURE_TFTP_BLOCKSIZE
  620. bool "Enable \"blocksize\" command"
  621. default n
  622. depends on TFTP
  623. help
  624. Allow the client to specify the desired block size for transfers.
  625. config DEBUG_TFTP
  626. bool "Enable debug"
  627. default n
  628. depends on TFTP
  629. help
  630. Enable debug settings for tftp. This is useful if you're running
  631. into problems with tftp as the protocol doesn't help you much when
  632. you run into problems.
  633. config TRACEROUTE
  634. bool "traceroute"
  635. default n
  636. help
  637. Utility to trace the route of IP packets
  638. config FEATURE_TRACEROUTE_VERBOSE
  639. bool "Enable verbose output"
  640. default n
  641. depends on TRACEROUTE
  642. help
  643. Add some verbosity to traceroute. This includes amongst other things
  644. hostnames and ICMP response types.
  645. config FEATURE_TRACEROUTE_SOURCE_ROUTE
  646. bool "Enable loose source route"
  647. default n
  648. depends on TRACEROUTE
  649. help
  650. Add option to specify a loose source route gateway
  651. (8 maximum).
  652. config FEATURE_TRACEROUTE_USE_ICMP
  653. bool "Use ICMP instead of UDP"
  654. default n
  655. depends on TRACEROUTE
  656. help
  657. Add feature to allow for ICMP ECHO instead of UDP datagrams.
  658. source networking/udhcp/Config.in
  659. config VCONFIG
  660. bool "vconfig"
  661. default n
  662. help
  663. Creates, removes, and configures VLAN interfaces
  664. config WGET
  665. bool "wget"
  666. default n
  667. help
  668. wget is a utility for non-interactive download of files from HTTP,
  669. HTTPS, and FTP servers.
  670. config FEATURE_WGET_STATUSBAR
  671. bool "Enable a nifty process meter (+2k)"
  672. default y
  673. depends on WGET
  674. help
  675. Enable the transfer progress bar for wget transfers.
  676. config FEATURE_WGET_AUTHENTICATION
  677. bool "Enable HTTP authentication"
  678. default y
  679. depends on WGET
  680. help
  681. Support authenticated HTTP transfers.
  682. config FEATURE_WGET_LONG_OPTIONS
  683. bool "Enable long options"
  684. default n
  685. depends on WGET && GETOPT_LONG
  686. help
  687. Support long options for the wget applet.
  688. config ZCIP
  689. bool "zcip"
  690. default n
  691. select FEATURE_SYSLOG
  692. help
  693. ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
  694. It's a daemon that allocates and defends a dynamically assigned
  695. address on the 169.254/16 network, requiring no system administrator.
  696. See http://www.zeroconf.org for further details, and "zcip.script"
  697. in the busybox examples.
  698. endmenu