Config.in 26 KB

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