Config.in 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. config BUSYBOX_UDHCPC6
  7. bool "udhcp client for DHCPv6 (udhcpc6)"
  8. default n # not yet ready
  9. help
  10. udhcpc6 is a DHCPv6 client
  11. config BUSYBOX_UDHCPD
  12. bool "udhcp server (udhcpd)"
  13. default n
  14. select BUSYBOX_PLATFORM_LINUX
  15. help
  16. udhcpd is a DHCP server geared primarily toward embedded systems,
  17. while striving to be fully functional and RFC compliant.
  18. config BUSYBOX_DHCPRELAY
  19. bool "dhcprelay"
  20. default y
  21. depends on BUSYBOX_UDHCPD
  22. help
  23. dhcprelay listens for dhcp requests on one or more interfaces
  24. and forwards these requests to a different interface or dhcp
  25. server.
  26. config BUSYBOX_DUMPLEASES
  27. bool "Lease display utility (dumpleases)"
  28. default y
  29. depends on BUSYBOX_UDHCPD
  30. help
  31. dumpleases displays the leases written out by the udhcpd server.
  32. Lease times are stored in the file by time remaining in lease, or
  33. by the absolute time that it expires in seconds from epoch.
  34. config BUSYBOX_FEATURE_UDHCPD_WRITE_LEASES_EARLY
  35. bool "Rewrite the lease file at every new acknowledge"
  36. default y
  37. depends on BUSYBOX_UDHCPD
  38. help
  39. If selected, udhcpd will write a new file with leases every
  40. time a new lease has been accepted, thus eliminating the need
  41. to send SIGUSR1 for the initial writing or updating. Any timed
  42. rewriting remains undisturbed.
  43. config BUSYBOX_FEATURE_UDHCPD_BASE_IP_ON_MAC
  44. bool "Select IP address based on client MAC"
  45. default n
  46. depends on BUSYBOX_UDHCPD
  47. help
  48. If selected, udhcpd will base its selection of IP address to offer
  49. on the client's hardware address. Otherwise udhcpd uses the next
  50. consecutive free address.
  51. This reduces the frequency of IP address changes for clients
  52. which let their lease expire, and makes consecutive DHCPOFFERS
  53. for the same client to (almost always) contain the same
  54. IP address.
  55. config BUSYBOX_DHCPD_LEASES_FILE
  56. string "Absolute path to lease file"
  57. default "/var/lib/misc/udhcpd.leases"
  58. depends on BUSYBOX_UDHCPD
  59. help
  60. udhcpd stores addresses in a lease file. This is the absolute path
  61. of the file. Normally it is safe to leave it untouched.
  62. config BUSYBOX_UDHCPC
  63. bool "udhcp client (udhcpc)"
  64. default y
  65. select BUSYBOX_PLATFORM_LINUX
  66. help
  67. udhcpc is a DHCP client geared primarily toward embedded systems,
  68. while striving to be fully functional and RFC compliant.
  69. The udhcp client negotiates a lease with the DHCP server and
  70. runs a script when a lease is obtained or lost.
  71. config BUSYBOX_FEATURE_UDHCPC_ARPING
  72. bool "Verify that the offered address is free, using ARP ping"
  73. default y
  74. depends on BUSYBOX_UDHCPC
  75. help
  76. If selected, udhcpc will send ARP probes and make sure
  77. the offered address is really not in use by anyone. The client
  78. will DHCPDECLINE the offer if the address is in use,
  79. and restart the discover process.
  80. config BUSYBOX_FEATURE_UDHCPC_SANITIZEOPT
  81. bool "Do not pass malformed host and domain names"
  82. default y
  83. depends on BUSYBOX_UDHCPC
  84. help
  85. If selected, udhcpc will check some options (such as option 12 -
  86. hostname) and if they don't look like valid hostnames
  87. (for example, if they start with dash or contain spaces),
  88. they will be replaced with string "bad" when exporting
  89. to the environment.
  90. config BUSYBOX_FEATURE_UDHCP_PORT
  91. bool "Enable '-P port' option for udhcpd and udhcpc"
  92. default n
  93. depends on BUSYBOX_UDHCPD || BUSYBOX_UDHCPC
  94. help
  95. At the cost of ~300 bytes, enables -P port option.
  96. This feature is typically not needed.
  97. config BUSYBOX_UDHCP_DEBUG
  98. int "Maximum verbosity level for udhcp applets (0..9)"
  99. default 9
  100. range 0 9
  101. depends on BUSYBOX_UDHCPD || BUSYBOX_UDHCPC || BUSYBOX_DHCPRELAY
  102. help
  103. Verbosity can be increased with multiple -v options.
  104. This option controls how high it can be cranked up.
  105. Bigger values result in bigger code. Levels above 1
  106. are very verbose and useful for debugging only.
  107. config BUSYBOX_FEATURE_UDHCP_RFC3397
  108. bool "Support for RFC3397 domain search (experimental)"
  109. default y
  110. depends on BUSYBOX_UDHCPD || BUSYBOX_UDHCPC
  111. help
  112. If selected, both client and server will support passing of domain
  113. search lists via option 119, specified in RFC 3397,
  114. and SIP servers option 120, specified in RFC 3361.
  115. config BUSYBOX_FEATURE_UDHCP_8021Q
  116. bool "Support for 802.1Q VLAN parameters"
  117. default y
  118. depends on BUSYBOX_UDHCPD || BUSYBOX_UDHCPC
  119. help
  120. If selected, both client and server will support passing of VLAN
  121. ID and priority via options 132 and 133 as per 802.1Q.
  122. config BUSYBOX_UDHCPC_DEFAULT_SCRIPT
  123. string "Absolute path to config script"
  124. default "/usr/share/udhcpc/default.script"
  125. depends on BUSYBOX_UDHCPC
  126. help
  127. This script is called after udhcpc receives an answer. See
  128. examples/udhcp for a working example. Normally it is safe
  129. to leave this untouched.
  130. config BUSYBOX_UDHCPC_SLACK_FOR_BUGGY_SERVERS
  131. int "DHCP options slack buffer size"
  132. default 80
  133. range 0 924
  134. depends on BUSYBOX_UDHCPD || BUSYBOX_UDHCPC
  135. help
  136. Some buggy DHCP servers send DHCP offer packets with option
  137. field larger than we expect (which might also be considered a
  138. buffer overflow attempt). These packets are normally discarded.
  139. If circumstances beyond your control force you to support such
  140. servers, this may help. The upper limit (924) makes dhcpc accept
  141. even 1500 byte packets (maximum-sized ethernet packets).
  142. This option does not make dhcp[cd] emit non-standard
  143. sized packets.
  144. Known buggy DHCP servers:
  145. 3Com OfficeConnect Remote 812 ADSL Router:
  146. seems to confuse maximum allowed UDP packet size with
  147. maximum size of entire IP packet, and sends packets which are
  148. 28 bytes too large.
  149. Seednet (ISP) VDSL: sends packets 2 bytes too large.