Config.in 24 KB

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