Config.in 24 KB

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