3
0

Config.in 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911
  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 FEATURE_PREFER_IPV4_ADDRESS
  13. bool "Preferentially use IPv4 addresses from DNS queries"
  14. default y
  15. depends on 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 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 ARP
  33. bool "arp"
  34. default n
  35. help
  36. Manipulate the system ARP cache.
  37. config ARPING
  38. bool "arping"
  39. default n
  40. help
  41. Ping hosts by ARP packets.
  42. config BRCTL
  43. bool "brctl"
  44. default n
  45. help
  46. Manage ethernet bridges.
  47. Supports addbr/delbr and addif/delif.
  48. config FEATURE_BRCTL_FANCY
  49. bool "Fancy options"
  50. default n
  51. depends on 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 FEATURE_BRCTL_SHOW
  59. bool "Support show, showmac and showstp"
  60. default n
  61. depends on BRCTL && FEATURE_BRCTL_FANCY
  62. help
  63. Add support for option which prints the current config:
  64. showmacs, showstp, show
  65. config DNSD
  66. bool "dnsd"
  67. default n
  68. help
  69. Small and static DNS server daemon.
  70. config ETHER_WAKE
  71. bool "ether-wake"
  72. default n
  73. help
  74. Send a magic packet to wake up sleeping machines.
  75. config FAKEIDENTD
  76. bool "fakeidentd"
  77. default n
  78. select FEATURE_SYSLOG
  79. help
  80. fakeidentd listens on the ident port and returns a predefined
  81. fake value on any query.
  82. config FTPGET
  83. bool "ftpget"
  84. default n
  85. help
  86. Retrieve a remote file via FTP.
  87. config FTPPUT
  88. bool "ftpput"
  89. default n
  90. help
  91. Store a remote file via FTP.
  92. config FEATURE_FTPGETPUT_LONG_OPTIONS
  93. bool "Enable long options in ftpget/ftpput"
  94. default n
  95. depends on GETOPT_LONG && (FTPGET || FTPPUT)
  96. help
  97. Support long options for the ftpget/ftpput applet.
  98. config HOSTNAME
  99. bool "hostname"
  100. default n
  101. help
  102. Show or set the system's host name.
  103. config HTTPD
  104. bool "httpd"
  105. default n
  106. help
  107. Serve web pages via an HTTP server.
  108. config FEATURE_HTTPD_RANGES
  109. bool "Support 'Ranges:' header"
  110. default n
  111. depends on 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 FEATURE_HTTPD_USE_SENDFILE
  117. bool "Use sendfile system call"
  118. default n
  119. depends on HTTPD
  120. help
  121. When enabled, httpd will use the kernel sendfile() function
  122. instead of read/write loop.
  123. config FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
  124. bool "Support reloading of global config file on HUP signal"
  125. default n
  126. depends on HTTPD
  127. help
  128. This option enables processing of SIGHUP to reload cached
  129. configuration settings.
  130. config FEATURE_HTTPD_SETUID
  131. bool "Enable -u <user> option"
  132. default n
  133. depends on 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 FEATURE_HTTPD_BASIC_AUTH
  140. bool "Enable Basic http Authentication"
  141. default y
  142. depends on HTTPD
  143. help
  144. Utilizes password settings from /etc/httpd.conf for basic
  145. authentication on a per url basis.
  146. config FEATURE_HTTPD_AUTH_MD5
  147. bool "Support MD5 crypted passwords for http Authentication"
  148. default n
  149. depends on FEATURE_HTTPD_BASIC_AUTH
  150. help
  151. Enables basic per URL authentication from /etc/httpd.conf
  152. using md5 passwords.
  153. config FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
  154. bool "Support loading additional MIME types at run-time"
  155. default n
  156. depends on 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 FEATURE_HTTPD_CGI
  161. bool "Support Common Gateway Interface (CGI)"
  162. default y
  163. depends on HTTPD
  164. help
  165. This option allows scripts and executables to be invoked
  166. when specific URLs are requested.
  167. config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
  168. bool "Support for running scripts through an interpreter"
  169. default n
  170. depends on 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 FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
  178. bool "Set REMOTE_PORT environment variable for CGI"
  179. default n
  180. depends on 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 FEATURE_HTTPD_ENCODE_URL_STR
  185. bool "Enable -e option (useful for CGIs written as shell scripts)"
  186. default y
  187. depends on 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 FEATURE_HTTPD_ERROR_PAGES
  194. bool "Support for custom error pages"
  195. default n
  196. depends on 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 FEATURE_HTTPD_PROXY
  206. bool "Support for reverse proxy"
  207. default n
  208. depends on 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 IFCONFIG
  217. bool "ifconfig"
  218. default n
  219. help
  220. Ifconfig is used to configure the kernel-resident network interfaces.
  221. config FEATURE_IFCONFIG_STATUS
  222. bool "Enable status reporting output (+7k)"
  223. default y
  224. depends on IFCONFIG
  225. help
  226. If ifconfig is called with no arguments it will display the status
  227. of the currently active interfaces.
  228. config FEATURE_IFCONFIG_SLIP
  229. bool "Enable slip-specific options \"keepalive\" and \"outfill\""
  230. default n
  231. depends on 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 FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
  236. bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
  237. default n
  238. depends on 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 FEATURE_IFCONFIG_HW
  243. bool "Enable option \"hw\" (ether only)"
  244. default y
  245. depends on 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 FEATURE_IFCONFIG_BROADCAST_PLUS
  251. bool "Set the broadcast automatically"
  252. default n
  253. depends on IFCONFIG
  254. help
  255. Setting this will make ifconfig attempt to find the broadcast
  256. automatically if the value '+' is used.
  257. config 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 IFUPDOWN
  264. bool "ifupdown"
  265. default n
  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 IFUPDOWN_IFSTATE_PATH
  279. string "Absolute path to ifstate file"
  280. default "/var/run/ifstate"
  281. depends on 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 FEATURE_IFUPDOWN_IP
  289. bool "Use ip applet"
  290. default n
  291. depends on 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 FEATURE_IFUPDOWN_IP_BUILTIN
  296. bool "Use busybox ip applet"
  297. default y
  298. depends on FEATURE_IFUPDOWN_IP
  299. select IP
  300. select FEATURE_IP_ADDRESS
  301. select FEATURE_IP_LINK
  302. select FEATURE_IP_ROUTE
  303. help
  304. Use the busybox iproute "ip" applet to implement "ifupdown".
  305. If left disabled, you must install the full-blown iproute2
  306. utility or the "ifup" and "ifdown" applets will not work.
  307. config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
  308. bool "Use busybox ifconfig and route applets"
  309. default y
  310. depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
  311. select IFCONFIG
  312. select ROUTE
  313. help
  314. Use the busybox iproute "ifconfig" and "route" applets to
  315. implement the "ifup" and "ifdown" utilities.
  316. If left disabled, you must install the full-blown ifconfig
  317. and route utilities, or the "ifup" and "ifdown" applets will not
  318. work.
  319. config FEATURE_IFUPDOWN_IPV4
  320. bool "Support for IPv4"
  321. default y
  322. depends on IFUPDOWN
  323. help
  324. If you want ifup/ifdown to talk IPv4, leave this on.
  325. config FEATURE_IFUPDOWN_IPV6
  326. bool "Support for IPv6"
  327. default n
  328. depends on IFUPDOWN && FEATURE_IPV6
  329. help
  330. If you need support for IPv6, turn this option on.
  331. ### UNUSED
  332. ###config FEATURE_IFUPDOWN_IPX
  333. ### bool "Support for IPX"
  334. ### default n
  335. ### depends on IFUPDOWN
  336. ### help
  337. ### If this option is selected you can use busybox to work with IPX
  338. ### networks.
  339. config FEATURE_IFUPDOWN_MAPPING
  340. bool "Enable mapping support"
  341. default n
  342. depends on IFUPDOWN
  343. help
  344. This enables support for the "mapping" stanza, unless you have
  345. a weird network setup you don't need it.
  346. config FEATURE_IFUPDOWN_EXTERNAL_DHCP
  347. bool "Support for external dhcp clients"
  348. default n
  349. depends on IFUPDOWN
  350. help
  351. This enables support for the external dhcp clients. Clients are
  352. tried in the following order: dhcpcd, dhclient, pump and udhcpc.
  353. Otherwise, if udhcpc applet is enabled, it is used.
  354. Otherwise, ifup/ifdown will have no support for DHCP.
  355. config INETD
  356. bool "inetd"
  357. default n
  358. select FEATURE_SYSLOG
  359. help
  360. Internet superserver daemon
  361. config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  362. bool "Support echo service"
  363. default y
  364. depends on INETD
  365. help
  366. Echo received data internal inetd service
  367. config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  368. bool "Support discard service"
  369. default y
  370. depends on INETD
  371. help
  372. Internet /dev/null internal inetd service
  373. config FEATURE_INETD_SUPPORT_BUILTIN_TIME
  374. bool "Support time service"
  375. default y
  376. depends on INETD
  377. help
  378. Return 32 bit time since 1900 internal inetd service
  379. config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  380. bool "Support daytime service"
  381. default y
  382. depends on INETD
  383. help
  384. Return human-readable time internal inetd service
  385. config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  386. bool "Support chargen service"
  387. default y
  388. depends on INETD
  389. help
  390. Familiar character generator internal inetd service
  391. config FEATURE_INETD_RPC
  392. bool "Support RPC services"
  393. default n
  394. depends on INETD
  395. select FEATURE_HAVE_RPC
  396. help
  397. Support Sun-RPC based services
  398. config IP
  399. bool "ip"
  400. default n
  401. help
  402. The "ip" applet is a TCP/IP interface configuration and routing
  403. utility. You generally don't need "ip" to use busybox with
  404. TCP/IP.
  405. config FEATURE_IP_ADDRESS
  406. bool "ip address"
  407. default y
  408. depends on IP
  409. help
  410. Address manipulation support for the "ip" applet.
  411. config FEATURE_IP_LINK
  412. bool "ip link"
  413. default y
  414. depends on IP
  415. help
  416. Configure network devices with "ip".
  417. config FEATURE_IP_ROUTE
  418. bool "ip route"
  419. default y
  420. depends on IP
  421. help
  422. Add support for routing table management to "ip".
  423. config FEATURE_IP_TUNNEL
  424. bool "ip tunnel"
  425. default n
  426. depends on IP
  427. help
  428. Add support for tunneling commands to "ip".
  429. config FEATURE_IP_RULE
  430. bool "ip rule"
  431. default n
  432. depends on IP
  433. help
  434. Add support for rule commands to "ip".
  435. config FEATURE_IP_SHORT_FORMS
  436. bool "Support short forms of ip commands"
  437. default n
  438. depends on IP
  439. help
  440. Also support short-form of ip <OBJECT> commands:
  441. ip addr -> ipaddr
  442. ip link -> iplink
  443. ip route -> iproute
  444. ip tunnel -> iptunnel
  445. ip rule -> iprule
  446. Say N unless you desparately need the short form of the ip
  447. object commands.
  448. config FEATURE_IP_RARE_PROTOCOLS
  449. bool "Support displaying rarely used link types"
  450. default n
  451. depends on IP
  452. help
  453. If you are not going to use links of type "frad", "econet",
  454. "bif" etc, you probably don't need to enable this.
  455. Ethernet, wireless, infrared, ppp/slip, ip tunnelling
  456. link types are supported without this option selected.
  457. config IPADDR
  458. bool
  459. default y
  460. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ADDRESS
  461. config IPLINK
  462. bool
  463. default y
  464. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_LINK
  465. config IPROUTE
  466. bool
  467. default y
  468. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_ROUTE
  469. config IPTUNNEL
  470. bool
  471. default y
  472. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_TUNNEL
  473. config IPRULE
  474. bool
  475. default y
  476. depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
  477. config IPCALC
  478. bool "ipcalc"
  479. default n
  480. help
  481. ipcalc takes an IP address and netmask and calculates the
  482. resulting broadcast, network, and host range.
  483. config FEATURE_IPCALC_FANCY
  484. bool "Fancy IPCALC, more options, adds 1 kbyte"
  485. default y
  486. depends on IPCALC
  487. help
  488. Adds the options hostname, prefix and silent to the output of "ipcalc".
  489. config FEATURE_IPCALC_LONG_OPTIONS
  490. bool "Enable long options"
  491. default n
  492. depends on IPCALC && GETOPT_LONG
  493. help
  494. Support long options for the ipcalc applet.
  495. config NAMEIF
  496. bool "nameif"
  497. default n
  498. select FEATURE_SYSLOG
  499. help
  500. nameif is used to rename network interface by its MAC address.
  501. Renamed interfaces MUST be in the down state.
  502. It is possible to use a file (default: /etc/mactab)
  503. with list of new interface names and MACs.
  504. Maximum interface name length: IFNAMSIZ = 16
  505. File fields are separated by space or tab.
  506. File format:
  507. # Comment
  508. new_interface_name XX:XX:XX:XX:XX:XX
  509. config FEATURE_NAMEIF_EXTENDED
  510. bool "Extended nameif"
  511. default n
  512. depends on NAMEIF
  513. help
  514. This extends the nameif syntax to support the bus_info and driver
  515. checks. The syntax is compatible to the normal nameif.
  516. File format:
  517. new_interface_name driver=asix bus=usb-0000:00:08.2-3
  518. new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
  519. new_interface_name mac=00:80:C8:38:91:B5
  520. new_interface_name 00:80:C8:38:91:B5
  521. config NC
  522. bool "nc"
  523. default n
  524. help
  525. A simple Unix utility which reads and writes data across network
  526. connections.
  527. config NC_SERVER
  528. bool "Netcat server options (-l)"
  529. default n
  530. depends on NC
  531. help
  532. Allow netcat to act as a server.
  533. config NC_EXTRA
  534. bool "Netcat extensions (-eiw and filename)"
  535. default n
  536. depends on NC
  537. help
  538. Add -e (support for executing the rest of the command line after
  539. making or receiving a successful connection), -i (delay interval for
  540. lines sent), -w (timeout for initial connection).
  541. config NETSTAT
  542. bool "netstat"
  543. default n
  544. help
  545. netstat prints information about the Linux networking subsystem.
  546. config FEATURE_NETSTAT_WIDE
  547. bool "Enable wide netstat output"
  548. default n
  549. depends on NETSTAT
  550. help
  551. Add support for wide columns. Useful when displaying IPv6 addresses
  552. (-W option).
  553. config NSLOOKUP
  554. bool "nslookup"
  555. default n
  556. help
  557. nslookup is a tool to query Internet name servers.
  558. config PING
  559. bool "ping"
  560. default n
  561. help
  562. ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
  563. elicit an ICMP ECHO_RESPONSE from a host or gateway.
  564. config PING6
  565. bool "ping6"
  566. default n
  567. depends on FEATURE_IPV6 && PING
  568. help
  569. This will give you a ping that can talk IPv6.
  570. config FEATURE_FANCY_PING
  571. bool "Enable fancy ping output"
  572. default y
  573. depends on PING
  574. help
  575. Make the output from the ping applet include statistics, and at the
  576. same time provide full support for ICMP packets.
  577. config PSCAN
  578. bool "pscan"
  579. default n
  580. help
  581. Simple network port scanner.
  582. config ROUTE
  583. bool "route"
  584. default n
  585. help
  586. Route displays or manipulates the kernel's IP routing tables.
  587. config SENDMAIL
  588. bool "sendmail"
  589. default n
  590. help
  591. Barebones sendmail.
  592. config FETCHMAIL
  593. bool "fetchmail"
  594. default n
  595. help
  596. Barebones fetchmail.
  597. config SLATTACH
  598. bool "slattach"
  599. default n
  600. help
  601. slattach is a small utility to attach network interfaces to serial lines.
  602. config TELNET
  603. bool "telnet"
  604. default n
  605. help
  606. Telnet is an interface to the TELNET protocol, but is also commonly
  607. used to test other simple protocols.
  608. config FEATURE_TELNET_TTYPE
  609. bool "Pass TERM type to remote host"
  610. default y
  611. depends on TELNET
  612. help
  613. Setting this option will forward the TERM environment variable to the
  614. remote host you are connecting to. This is useful to make sure that
  615. things like ANSI colors and other control sequences behave.
  616. config FEATURE_TELNET_AUTOLOGIN
  617. bool "Pass USER type to remote host"
  618. default y
  619. depends on TELNET
  620. help
  621. Setting this option will forward the USER environment variable to the
  622. remote host you are connecting to. This is useful when you need to
  623. log into a machine without telling the username (autologin). This
  624. option enables `-a' and `-l USER' arguments.
  625. config TELNETD
  626. bool "telnetd"
  627. default n
  628. select FEATURE_SYSLOG
  629. help
  630. A daemon for the TELNET protocol, allowing you to log onto the host
  631. running the daemon. Please keep in mind that the TELNET protocol
  632. sends passwords in plain text. If you can't afford the space for an
  633. SSH daemon and you trust your network, you may say 'y' here. As a
  634. more secure alternative, you should seriously consider installing the
  635. very small Dropbear SSH daemon instead:
  636. http://matt.ucc.asn.au/dropbear/dropbear.html
  637. Note that for busybox telnetd to work you need several things:
  638. First of all, your kernel needs:
  639. UNIX98_PTYS=y
  640. DEVPTS_FS=y
  641. Next, you need a /dev/pts directory on your root filesystem:
  642. $ ls -ld /dev/pts
  643. drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
  644. Next you need the pseudo terminal master multiplexer /dev/ptmx:
  645. $ ls -la /dev/ptmx
  646. crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
  647. Any /dev/ttyp[0-9]* files you may have can be removed.
  648. Next, you need to mount the devpts filesystem on /dev/pts using:
  649. mount -t devpts devpts /dev/pts
  650. You need to be sure that Busybox has LOGIN and
  651. FEATURE_SUID enabled. And finally, you should make
  652. certain that Busybox has been installed setuid root:
  653. chown root.root /bin/busybox
  654. chmod 4755 /bin/busybox
  655. with all that done, telnetd _should_ work....
  656. config FEATURE_TELNETD_STANDALONE
  657. bool "Support standalone telnetd (not inetd only)"
  658. default n
  659. depends on TELNETD
  660. help
  661. Selecting this will make telnetd able to run standalone.
  662. config TFTP
  663. bool "tftp"
  664. default n
  665. help
  666. This enables the Trivial File Transfer Protocol client program. TFTP
  667. is usually used for simple, small transfers such as a root image
  668. for a network-enabled bootloader.
  669. config TFTPD
  670. bool "tftpd"
  671. default n
  672. help
  673. This enables the Trivial File Transfer Protocol server program.
  674. It expects that stdin is a datagram socket and a packet
  675. is already pending on it. It will exit after one transfer.
  676. In other words: it should be run from inetd in nowait mode,
  677. or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
  678. config FEATURE_TFTP_GET
  679. bool "Enable \"get\" command"
  680. default y
  681. depends on TFTP || TFTPD
  682. help
  683. Add support for the GET command within the TFTP client. This allows
  684. a client to retrieve a file from a TFTP server.
  685. Also enable upload support in tftpd, if tftpd is selected.
  686. config FEATURE_TFTP_PUT
  687. bool "Enable \"put\" command"
  688. default y
  689. depends on TFTP || TFTPD
  690. help
  691. Add support for the PUT command within the TFTP client. This allows
  692. a client to transfer a file to a TFTP server.
  693. Also enable download support in tftpd, if tftpd is selected.
  694. config FEATURE_TFTP_BLOCKSIZE
  695. bool "Enable \"blksize\" protocol option"
  696. default n
  697. depends on TFTP || TFTPD
  698. help
  699. Allow tftp to specify block size, and tftpd to understand
  700. "blksize" option.
  701. config DEBUG_TFTP
  702. bool "Enable debug"
  703. default n
  704. depends on TFTP
  705. help
  706. Enable debug settings for tftp. This is useful if you're running
  707. into problems with tftp as the protocol doesn't help you much when
  708. you run into problems.
  709. config TRACEROUTE
  710. bool "traceroute"
  711. default n
  712. help
  713. Utility to trace the route of IP packets
  714. config FEATURE_TRACEROUTE_VERBOSE
  715. bool "Enable verbose output"
  716. default n
  717. depends on TRACEROUTE
  718. help
  719. Add some verbosity to traceroute. This includes amongst other things
  720. hostnames and ICMP response types.
  721. config FEATURE_TRACEROUTE_SOURCE_ROUTE
  722. bool "Enable loose source route"
  723. default n
  724. depends on TRACEROUTE
  725. help
  726. Add option to specify a loose source route gateway
  727. (8 maximum).
  728. config FEATURE_TRACEROUTE_USE_ICMP
  729. bool "Use ICMP instead of UDP"
  730. default n
  731. depends on TRACEROUTE
  732. help
  733. Add feature to allow for ICMP ECHO instead of UDP datagrams.
  734. source networking/udhcp/Config.in
  735. config VCONFIG
  736. bool "vconfig"
  737. default n
  738. help
  739. Creates, removes, and configures VLAN interfaces
  740. config WGET
  741. bool "wget"
  742. default n
  743. help
  744. wget is a utility for non-interactive download of files from HTTP,
  745. HTTPS, and FTP servers.
  746. config FEATURE_WGET_STATUSBAR
  747. bool "Enable a nifty process meter (+2k)"
  748. default y
  749. depends on WGET
  750. help
  751. Enable the transfer progress bar for wget transfers.
  752. config FEATURE_WGET_AUTHENTICATION
  753. bool "Enable HTTP authentication"
  754. default y
  755. depends on WGET
  756. help
  757. Support authenticated HTTP transfers.
  758. config FEATURE_WGET_LONG_OPTIONS
  759. bool "Enable long options"
  760. default n
  761. depends on WGET && GETOPT_LONG
  762. help
  763. Support long options for the wget applet.
  764. config ZCIP
  765. bool "zcip"
  766. default n
  767. select FEATURE_SYSLOG
  768. help
  769. ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
  770. It's a daemon that allocates and defends a dynamically assigned
  771. address on the 169.254/16 network, requiring no system administrator.
  772. See http://www.zeroconf.org for further details, and "zcip.script"
  773. in the busybox examples.
  774. config TCPSVD
  775. bool "tcpsvd"
  776. default n
  777. help
  778. tcpsvd listens on a TCP port and runs a program for each new connection
  779. config UDPSVD
  780. bool "udpsvd"
  781. default n
  782. help
  783. udpsvd listens on an UDP port and runs a program for each new connection
  784. endmenu