Config.in 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Networking Utilities"
  6. config BUSYBOX_CONFIG_FEATURE_IPV6
  7. bool "Enable IPv6 support"
  8. default y
  9. help
  10. Enable IPv6 support in busybox.
  11. This adds IPv6 support in the networking applets.
  12. config BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS
  13. bool "Preferentially use IPv4 addresses from DNS queries"
  14. default y
  15. depends on BUSYBOX_CONFIG_FEATURE_IPV6
  16. help
  17. Use IPv4 address of network host if it has one.
  18. If this option is off, the first returned address will be used.
  19. This may cause problems when your DNS server is IPv6-capable and
  20. is returning IPv6 host addresses too. If IPv6 address
  21. precedes IPv4 one in DNS reply, busybox network applets
  22. (e.g. wget) will use IPv6 address. On an IPv6-incapable host
  23. or network applets will fail to connect to the host
  24. using IPv6 address.
  25. config BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS
  26. bool "Verbose resolution errors"
  27. default y
  28. help
  29. Enable if you are not satisfied with simplistic
  30. "can't resolve 'hostname.com'" and want to know more.
  31. This may increase size of your executable a bit.
  32. config BUSYBOX_CONFIG_ARP
  33. bool "arp"
  34. default n
  35. help
  36. Manipulate the system ARP cache.
  37. config BUSYBOX_CONFIG_ARPING
  38. bool "arping"
  39. default y
  40. help
  41. Ping hosts by ARP packets.
  42. config BUSYBOX_CONFIG_BRCTL
  43. bool "brctl"
  44. default y
  45. help
  46. Manage ethernet bridges.
  47. Supports addbr/delbr and addif/delif.
  48. config BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY
  49. bool "Fancy options"
  50. default y
  51. depends on BUSYBOX_CONFIG_BRCTL
  52. help
  53. Add support for extended option like:
  54. setageing, setfd, sethello, setmaxage,
  55. setpathcost, setportprio, setbridgeprio,
  56. stp
  57. This adds about 600 bytes.
  58. config BUSYBOX_CONFIG_FEATURE_BRCTL_SHOW
  59. bool "Support show"
  60. default y
  61. depends on BUSYBOX_CONFIG_BRCTL && BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY
  62. help
  63. Add support for option which prints the current config:
  64. show
  65. config BUSYBOX_CONFIG_DNSD
  66. bool "dnsd"
  67. default n
  68. help
  69. Small and static DNS server daemon.
  70. config BUSYBOX_CONFIG_ETHER_WAKE
  71. bool "ether-wake"
  72. default n
  73. help
  74. Send a magic packet to wake up sleeping machines.
  75. config BUSYBOX_CONFIG_FAKEIDENTD
  76. bool "fakeidentd"
  77. default n
  78. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  79. help
  80. fakeidentd listens on the ident port and returns a predefined
  81. fake value on any query.
  82. config BUSYBOX_CONFIG_FTPGET
  83. bool "ftpget"
  84. default n
  85. help
  86. Retrieve a remote file via FTP.
  87. config BUSYBOX_CONFIG_FTPPUT
  88. bool "ftpput"
  89. default n
  90. help
  91. Store a remote file via FTP.
  92. config BUSYBOX_CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS
  93. bool "Enable long options in ftpget/ftpput"
  94. default n
  95. depends on BUSYBOX_CONFIG_GETOPT_LONG && (BUSYBOX_CONFIG_FTPGET || BUSYBOX_CONFIG_FTPPUT)
  96. help
  97. Support long options for the ftpget/ftpput applet.
  98. config BUSYBOX_CONFIG_HOSTNAME
  99. bool "hostname"
  100. default n
  101. help
  102. Show or set the system's host name.
  103. config BUSYBOX_CONFIG_HTTPD
  104. bool "httpd"
  105. default y
  106. help
  107. Serve web pages via an HTTP server.
  108. config BUSYBOX_CONFIG_FEATURE_HTTPD_RANGES
  109. bool "Support 'Ranges:' header"
  110. default y
  111. depends on BUSYBOX_CONFIG_HTTPD
  112. help
  113. Makes httpd emit "Accept-Ranges: bytes" header and understand
  114. "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
  115. downloads, seeking in multimedia players etc.
  116. config BUSYBOX_CONFIG_FEATURE_HTTPD_USE_SENDFILE
  117. bool "Use sendfile system call"
  118. default n
  119. depends on BUSYBOX_CONFIG_HTTPD
  120. help
  121. When enabled, httpd will use the kernel sendfile() function
  122. instead of read/write loop.
  123. config BUSYBOX_CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
  124. bool "Support reloading of global config file on HUP signal"
  125. default y
  126. depends on BUSYBOX_CONFIG_HTTPD
  127. help
  128. This option enables processing of SIGHUP to reload cached
  129. configuration settings.
  130. config BUSYBOX_CONFIG_FEATURE_HTTPD_SETUID
  131. bool "Enable -u <user> option"
  132. default n
  133. depends on BUSYBOX_CONFIG_HTTPD
  134. help
  135. This option allows the server to run as a specific user
  136. rather than defaulting to the user that starts the server.
  137. Use of this option requires special privileges to change to a
  138. different user.
  139. config BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
  140. bool "Enable Basic http Authentication"
  141. default y
  142. depends on BUSYBOX_CONFIG_HTTPD
  143. help
  144. Utilizes password settings from /etc/httpd.conf for basic
  145. authentication on a per url basis.
  146. config BUSYBOX_CONFIG_FEATURE_HTTPD_AUTH_MD5
  147. bool "Support MD5 crypted passwords for http Authentication"
  148. default y
  149. depends on BUSYBOX_CONFIG_FEATURE_HTTPD_BASIC_AUTH
  150. help
  151. Enables basic per URL authentication from /etc/httpd.conf
  152. using md5 passwords.
  153. config BUSYBOX_CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
  154. bool "Support loading additional MIME types at run-time"
  155. default y
  156. depends on BUSYBOX_CONFIG_HTTPD
  157. help
  158. This option enables support for additional MIME types at
  159. run-time to be specified in the configuration file.
  160. config BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
  161. bool "Support Common Gateway Interface (CGI)"
  162. default y
  163. depends on BUSYBOX_CONFIG_HTTPD
  164. help
  165. This option allows scripts and executables to be invoked
  166. when specific URLs are requested.
  167. config BUSYBOX_CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
  168. bool "Support for running scripts through an interpreter"
  169. default y
  170. depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
  171. help
  172. This option enables support for running scripts through an
  173. interpreter. Turn this on if you want PHP scripts to work
  174. properly. You need to supply an additional line in your httpd
  175. config file:
  176. *.php:/path/to/your/php
  177. config BUSYBOX_CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
  178. bool "Set REMOTE_PORT environment variable for CGI"
  179. default y
  180. depends on BUSYBOX_CONFIG_FEATURE_HTTPD_CGI
  181. help
  182. Use of this option can assist scripts in generating
  183. references that contain a unique port number.
  184. config BUSYBOX_CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
  185. bool "Enable -e option (useful for CGIs written as shell scripts)"
  186. default y
  187. depends on BUSYBOX_CONFIG_HTTPD
  188. help
  189. This option allows html encoding of arbitrary strings for display
  190. by the browser. Output goes to stdout.
  191. For example, httpd -e "<Hello World>" produces
  192. "&#60Hello&#32World&#62".
  193. config BUSYBOX_CONFIG_FEATURE_HTTPD_ERROR_PAGES
  194. bool "Support for custom error pages"
  195. default y
  196. depends on BUSYBOX_CONFIG_HTTPD
  197. help
  198. This option allows you to define custom error pages in
  199. the configuration file instead of the default HTTP status
  200. error pages. For instance, if you add the line:
  201. E404:/path/e404.html
  202. in the config file, the server will respond the specified
  203. '/path/e404.html' file instead of the terse '404 NOT FOUND'
  204. message.
  205. config BUSYBOX_CONFIG_FEATURE_HTTPD_PROXY
  206. bool "Support for reverse proxy"
  207. default y
  208. depends on BUSYBOX_CONFIG_HTTPD
  209. help
  210. This option allows you to define URLs that will be forwarded
  211. to another HTTP server. To setup add the following line to the
  212. configuration file
  213. P:/url/:http://hostname[:port]/new/path/
  214. Then a request to /url/myfile will be forwarded to
  215. http://hostname[:port]/new/path/myfile.
  216. config BUSYBOX_CONFIG_IFCONFIG
  217. bool "ifconfig"
  218. default y
  219. help
  220. Ifconfig is used to configure the kernel-resident network interfaces.
  221. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS
  222. bool "Enable status reporting output (+7k)"
  223. default y
  224. depends on BUSYBOX_CONFIG_IFCONFIG
  225. help
  226. If ifconfig is called with no arguments it will display the status
  227. of the currently active interfaces.
  228. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP
  229. bool "Enable slip-specific options \"keepalive\" and \"outfill\""
  230. default n
  231. depends on BUSYBOX_CONFIG_IFCONFIG
  232. help
  233. Allow "keepalive" and "outfill" support for SLIP. If you're not
  234. planning on using serial lines, leave this unchecked.
  235. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
  236. bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
  237. default n
  238. depends on BUSYBOX_CONFIG_IFCONFIG
  239. help
  240. Allow the start address for shared memory, start address for I/O,
  241. and/or the interrupt line used by the specified device.
  242. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW
  243. bool "Enable option \"hw\" (ether only)"
  244. default y
  245. depends on BUSYBOX_CONFIG_IFCONFIG
  246. help
  247. Set the hardware address of this interface, if the device driver
  248. supports this operation. Currently, we only support the 'ether'
  249. class.
  250. config BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
  251. bool "Set the broadcast automatically"
  252. default y
  253. depends on BUSYBOX_CONFIG_IFCONFIG
  254. help
  255. Setting this will make ifconfig attempt to find the broadcast
  256. automatically if the value '+' is used.
  257. config BUSYBOX_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 BUSYBOX_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 BUSYBOX_CONFIG_IFUPDOWN_IFSTATE_PATH
  279. string "Absolute path to ifstate file"
  280. default n
  281. depends on BUSYBOX_CONFIG_IFUPDOWN
  282. help
  283. ifupdown keeps state information in a file called ifstate.
  284. Typically it is located in /var/run/ifstate, however
  285. some distributions tend to put it in other places
  286. (debian, for example, uses /etc/network/run/ifstate).
  287. This config option defines location of ifstate.
  288. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
  289. bool "Use ip applet"
  290. default n
  291. depends on BUSYBOX_CONFIG_IFUPDOWN
  292. help
  293. Use the iproute "ip" command to implement "ifup" and "ifdown", rather
  294. than the default of using the older 'ifconfig' and 'route' utilities.
  295. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN
  296. bool "Use busybox ip applet"
  297. default n
  298. depends on BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
  299. select BUSYBOX_CONFIG_IP
  300. select BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
  301. select BUSYBOX_CONFIG_FEATURE_IP_LINK
  302. select BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
  308. bool "Use busybox ifconfig and route applets"
  309. default n
  310. depends on BUSYBOX_CONFIG_IFUPDOWN && !BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IP
  311. select BUSYBOX_CONFIG_IFCONFIG
  312. select BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV4
  320. bool "Support for IPv4"
  321. default n
  322. depends on BUSYBOX_CONFIG_IFUPDOWN
  323. help
  324. If you want ifup/ifdown to talk IPv4, leave this on.
  325. config BUSYBOX_CONFIG_FEATURE_IFUPDOWN_IPV6
  326. bool "Support for IPv6"
  327. default n
  328. depends on BUSYBOX_CONFIG_IFUPDOWN && BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_IFUPDOWN_MAPPING
  340. bool "Enable mapping support"
  341. default n
  342. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP
  347. bool "Support for external dhcp clients"
  348. default n
  349. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_INETD
  356. bool "inetd"
  357. default n
  358. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  359. help
  360. Internet superserver daemon
  361. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  362. bool "Support echo service"
  363. default n
  364. depends on BUSYBOX_CONFIG_INETD
  365. help
  366. Echo received data internal inetd service
  367. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  368. bool "Support discard service"
  369. default n
  370. depends on BUSYBOX_CONFIG_INETD
  371. help
  372. Internet /dev/null internal inetd service
  373. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME
  374. bool "Support time service"
  375. default n
  376. depends on BUSYBOX_CONFIG_INETD
  377. help
  378. Return 32 bit time since 1900 internal inetd service
  379. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  380. bool "Support daytime service"
  381. default n
  382. depends on BUSYBOX_CONFIG_INETD
  383. help
  384. Return human-readable time internal inetd service
  385. config BUSYBOX_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  386. bool "Support chargen service"
  387. default n
  388. depends on BUSYBOX_CONFIG_INETD
  389. help
  390. Familiar character generator internal inetd service
  391. config BUSYBOX_CONFIG_FEATURE_INETD_RPC
  392. bool "Support RPC services"
  393. default n
  394. depends on BUSYBOX_CONFIG_INETD
  395. select BUSYBOX_CONFIG_FEATURE_HAVE_RPC
  396. help
  397. Support Sun-RPC based services
  398. config BUSYBOX_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 BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
  406. bool "ip address"
  407. default n
  408. depends on BUSYBOX_CONFIG_IP
  409. help
  410. Address manipulation support for the "ip" applet.
  411. config BUSYBOX_CONFIG_FEATURE_IP_LINK
  412. bool "ip link"
  413. default n
  414. depends on BUSYBOX_CONFIG_IP
  415. help
  416. Configure network devices with "ip".
  417. config BUSYBOX_CONFIG_FEATURE_IP_ROUTE
  418. bool "ip route"
  419. default n
  420. depends on BUSYBOX_CONFIG_IP
  421. help
  422. Add support for routing table management to "ip".
  423. config BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
  424. bool "ip tunnel"
  425. default n
  426. depends on BUSYBOX_CONFIG_IP
  427. help
  428. Add support for tunneling commands to "ip".
  429. config BUSYBOX_CONFIG_FEATURE_IP_RULE
  430. bool "ip rule"
  431. default n
  432. depends on BUSYBOX_CONFIG_IP
  433. help
  434. Add support for rule commands to "ip".
  435. config BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS
  436. bool "Support short forms of ip commands"
  437. default n
  438. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_IP_RARE_PROTOCOLS
  449. bool "Support displaying rarely used link types"
  450. default n
  451. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_IPADDR
  458. bool
  459. default n
  460. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
  461. config BUSYBOX_CONFIG_IPLINK
  462. bool
  463. default n
  464. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_LINK
  465. config BUSYBOX_CONFIG_IPROUTE
  466. bool
  467. default n
  468. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_ROUTE
  469. config BUSYBOX_CONFIG_IPTUNNEL
  470. bool
  471. default n
  472. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
  473. config BUSYBOX_CONFIG_IPRULE
  474. bool
  475. default n
  476. depends on BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS && BUSYBOX_CONFIG_FEATURE_IP_RULE
  477. config BUSYBOX_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 BUSYBOX_CONFIG_FEATURE_IPCALC_FANCY
  484. bool "Fancy IPCALC, more options, adds 1 kbyte"
  485. default n
  486. depends on BUSYBOX_CONFIG_IPCALC
  487. help
  488. Adds the options hostname, prefix and silent to the output of "ipcalc".
  489. config BUSYBOX_CONFIG_FEATURE_IPCALC_LONG_OPTIONS
  490. bool "Enable long options"
  491. default n
  492. depends on BUSYBOX_CONFIG_IPCALC && BUSYBOX_CONFIG_GETOPT_LONG
  493. help
  494. Support long options for the ipcalc applet.
  495. config BUSYBOX_CONFIG_NAMEIF
  496. bool "nameif"
  497. default n
  498. select BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_NAMEIF_EXTENDED
  510. bool "Extended nameif"
  511. default n
  512. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_NC
  522. bool "nc"
  523. default y
  524. help
  525. A simple Unix utility which reads and writes data across network
  526. connections.
  527. config BUSYBOX_CONFIG_NETMSG
  528. bool "netmsg"
  529. default y
  530. help
  531. simple program for sending udp broadcast messages
  532. config BUSYBOX_CONFIG_NC_SERVER
  533. bool "Netcat server options (-l)"
  534. default n
  535. depends on BUSYBOX_CONFIG_NC
  536. help
  537. Allow netcat to act as a server.
  538. config BUSYBOX_CONFIG_NC_EXTRA
  539. bool "Netcat extensions (-eiw and filename)"
  540. default n
  541. depends on BUSYBOX_CONFIG_NC
  542. help
  543. Add -e (support for executing the rest of the command line after
  544. making or receiving a successful connection), -i (delay interval for
  545. lines sent), -w (timeout for initial connection).
  546. config BUSYBOX_CONFIG_NETSTAT
  547. bool "netstat"
  548. default y
  549. help
  550. netstat prints information about the Linux networking subsystem.
  551. config BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE
  552. bool "Enable wide netstat output"
  553. default y
  554. depends on BUSYBOX_CONFIG_NETSTAT
  555. help
  556. Add support for wide columns. Useful when displaying IPv6 addresses
  557. (-W option).
  558. config BUSYBOX_CONFIG_NSLOOKUP
  559. bool "nslookup"
  560. default y
  561. help
  562. nslookup is a tool to query Internet name servers.
  563. config BUSYBOX_CONFIG_PING
  564. bool "ping"
  565. default y
  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 BUSYBOX_CONFIG_PING6
  570. bool "ping6"
  571. default y
  572. depends on BUSYBOX_CONFIG_FEATURE_IPV6 && BUSYBOX_CONFIG_PING
  573. help
  574. This will give you a ping that can talk IPv6.
  575. config BUSYBOX_CONFIG_FEATURE_FANCY_PING
  576. bool "Enable fancy ping output"
  577. default y
  578. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_PSCAN
  583. bool "pscan"
  584. default n
  585. help
  586. Simple network port scanner.
  587. config BUSYBOX_CONFIG_ROUTE
  588. bool "route"
  589. default y
  590. help
  591. Route displays or manipulates the kernel's IP routing tables.
  592. config BUSYBOX_CONFIG_SENDMAIL
  593. bool "sendmail"
  594. default n
  595. help
  596. Barebones sendmail.
  597. config BUSYBOX_CONFIG_FETCHMAIL
  598. bool "fetchmail"
  599. default n
  600. help
  601. Barebones fetchmail.
  602. config BUSYBOX_CONFIG_SLATTACH
  603. bool "slattach"
  604. default n
  605. help
  606. slattach is a small utility to attach network interfaces to serial lines.
  607. config BUSYBOX_CONFIG_TELNET
  608. bool "telnet"
  609. default y
  610. help
  611. Telnet is an interface to the TELNET protocol, but is also commonly
  612. used to test other simple protocols.
  613. config BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE
  614. bool "Pass TERM type to remote host"
  615. default y
  616. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN
  622. bool "Pass USER type to remote host"
  623. default n
  624. depends on BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_TELNETD
  631. bool "telnetd"
  632. default y
  633. select BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_TELNETD_STANDALONE
  662. bool "Support standalone telnetd (not inetd only)"
  663. default y
  664. depends on BUSYBOX_CONFIG_TELNETD
  665. help
  666. Selecting this will make telnetd able to run standalone.
  667. config BUSYBOX_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 BUSYBOX_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 BUSYBOX_CONFIG_FEATURE_TFTP_GET
  684. bool "Enable \"get\" command"
  685. default n
  686. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_TFTP_PUT
  692. bool "Enable \"put\" command"
  693. default n
  694. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_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 BUSYBOX_CONFIG_FEATURE_TFTP_BLOCKSIZE
  700. bool "Enable \"blksize\" protocol option"
  701. default n
  702. depends on BUSYBOX_CONFIG_TFTP || BUSYBOX_CONFIG_TFTPD
  703. help
  704. Allow tftp to specify block size, and tftpd to understand
  705. "blksize" option.
  706. config BUSYBOX_CONFIG_DEBUG_TFTP
  707. bool "Enable debug"
  708. default n
  709. depends on BUSYBOX_CONFIG_TFTP
  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 BUSYBOX_CONFIG_TRACEROUTE
  715. bool "traceroute"
  716. default y
  717. help
  718. Utility to trace the route of IP packets
  719. config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE
  720. bool "Enable verbose output"
  721. default y
  722. depends on BUSYBOX_CONFIG_TRACEROUTE
  723. help
  724. Add some verbosity to traceroute. This includes amongst other things
  725. hostnames and ICMP response types.
  726. config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
  727. bool "Enable loose source route"
  728. default n
  729. depends on BUSYBOX_CONFIG_TRACEROUTE
  730. help
  731. Add option to specify a loose source route gateway
  732. (8 maximum).
  733. config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP
  734. bool "Use ICMP instead of UDP"
  735. default n
  736. depends on BUSYBOX_CONFIG_TRACEROUTE
  737. help
  738. Add feature to allow for ICMP ECHO instead of UDP datagrams.
  739. source package/busybox/config/networking/udhcp/Config.in
  740. config BUSYBOX_CONFIG_VCONFIG
  741. bool "vconfig"
  742. default y
  743. help
  744. Creates, removes, and configures VLAN interfaces
  745. config BUSYBOX_CONFIG_WGET
  746. bool "wget"
  747. default y
  748. help
  749. wget is a utility for non-interactive download of files from HTTP,
  750. HTTPS, and FTP servers.
  751. config BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR
  752. bool "Enable a nifty process meter (+2k)"
  753. default y
  754. depends on BUSYBOX_CONFIG_WGET
  755. help
  756. Enable the transfer progress bar for wget transfers.
  757. config BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION
  758. bool "Enable HTTP authentication"
  759. default y
  760. depends on BUSYBOX_CONFIG_WGET
  761. help
  762. Support authenticated HTTP transfers.
  763. config BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS
  764. bool "Enable long options"
  765. default y
  766. depends on BUSYBOX_CONFIG_WGET && BUSYBOX_CONFIG_GETOPT_LONG
  767. help
  768. Support long options for the wget applet.
  769. config BUSYBOX_CONFIG_ZCIP
  770. bool "zcip"
  771. default n
  772. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  773. help
  774. ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
  775. It's a daemon that allocates and defends a dynamically assigned
  776. address on the 169.254/16 network, requiring no system administrator.
  777. See http://www.zeroconf.org for further details, and "zcip.script"
  778. in the busybox examples.
  779. config BUSYBOX_CONFIG_TCPSVD
  780. bool "tcpsvd"
  781. default n
  782. help
  783. tcpsvd listens on a TCP port and runs a program for each new connection
  784. config BUSYBOX_CONFIG_UDPSVD
  785. bool "udpsvd"
  786. default n
  787. help
  788. udpsvd listens on an UDP port and runs a program for each new connection
  789. endmenu