Config.in 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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_CONFIG_UDHCPC6
  7. bool "udhcpc6 (DHCPv6 client, EXPERIMENTAL)"
  8. default BUSYBOX_DEFAULT_UDHCPC6 # not yet ready
  9. depends on BUSYBOX_CONFIG_FEATURE_IPV6
  10. help
  11. udhcpc6 is a DHCPv6 client
  12. config BUSYBOX_CONFIG_FEATURE_UDHCPC6_RFC3646
  13. bool "Support RFC 3646 (DNS server and search list)"
  14. default BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC3646
  15. depends on BUSYBOX_CONFIG_UDHCPC6
  16. help
  17. List of DNS servers and domain search list can be requested with
  18. "-O dns" and "-O search". If server gives these values,
  19. they will be set in environment variables "dns" and "search".
  20. config BUSYBOX_CONFIG_FEATURE_UDHCPC6_RFC4704
  21. bool "Support RFC 4704 (Client FQDN)"
  22. default BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC4704
  23. depends on BUSYBOX_CONFIG_UDHCPC6
  24. help
  25. You can request FQDN to be given by server using "-O fqdn".
  26. config BUSYBOX_CONFIG_FEATURE_UDHCPC6_RFC4833
  27. bool "Support RFC 4833 (Timezones)"
  28. default BUSYBOX_DEFAULT_FEATURE_UDHCPC6_RFC4833
  29. depends on BUSYBOX_CONFIG_UDHCPC6
  30. help
  31. You can request POSIX timezone with "-O tz" and timezone name
  32. with "-O timezone".
  33. config BUSYBOX_CONFIG_UDHCPD
  34. bool "udhcpd (DHCP server)"
  35. default BUSYBOX_DEFAULT_UDHCPD
  36. select BUSYBOX_CONFIG_PLATFORM_LINUX
  37. help
  38. udhcpd is a DHCP server geared primarily toward embedded systems,
  39. while striving to be fully functional and RFC compliant.
  40. config BUSYBOX_CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY
  41. bool "Rewrite the lease file at every new acknowledge"
  42. default BUSYBOX_DEFAULT_FEATURE_UDHCPD_WRITE_LEASES_EARLY
  43. depends on BUSYBOX_CONFIG_UDHCPD
  44. help
  45. If selected, udhcpd will write a new file with leases every
  46. time a new lease has been accepted, thus eliminating the need
  47. to send SIGUSR1 for the initial writing or updating. Any timed
  48. rewriting remains undisturbed.
  49. config BUSYBOX_CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC
  50. bool "Select IP address based on client MAC"
  51. default BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC
  52. depends on BUSYBOX_CONFIG_UDHCPD
  53. help
  54. If selected, udhcpd will base its selection of IP address to offer
  55. on the client's hardware address. Otherwise udhcpd uses the next
  56. consecutive free address.
  57. This reduces the frequency of IP address changes for clients
  58. which let their lease expire, and makes consecutive DHCPOFFERS
  59. for the same client to (almost always) contain the same
  60. IP address.
  61. config BUSYBOX_CONFIG_DHCPD_LEASES_FILE
  62. string "Absolute path to lease file"
  63. default BUSYBOX_DEFAULT_DHCPD_LEASES_FILE
  64. depends on BUSYBOX_CONFIG_UDHCPD
  65. help
  66. udhcpd stores addresses in a lease file. This is the absolute path
  67. of the file. Normally it is safe to leave it untouched.
  68. config BUSYBOX_CONFIG_DUMPLEASES
  69. bool "dumpleases"
  70. default BUSYBOX_DEFAULT_DUMPLEASES
  71. help
  72. dumpleases displays the leases written out by the udhcpd.
  73. Lease times are stored in the file by time remaining in lease, or
  74. by the absolute time that it expires in seconds from epoch.
  75. config BUSYBOX_CONFIG_DHCPRELAY
  76. bool "dhcprelay"
  77. default BUSYBOX_DEFAULT_DHCPRELAY
  78. help
  79. dhcprelay listens for dhcp requests on one or more interfaces
  80. and forwards these requests to a different interface or dhcp
  81. server.
  82. config BUSYBOX_CONFIG_UDHCPC
  83. bool "udhcpc (DHCP client)"
  84. default BUSYBOX_DEFAULT_UDHCPC
  85. select BUSYBOX_CONFIG_PLATFORM_LINUX
  86. help
  87. udhcpc is a DHCP client geared primarily toward embedded systems,
  88. while striving to be fully functional and RFC compliant.
  89. The udhcp client negotiates a lease with the DHCP server and
  90. runs a script when a lease is obtained or lost.
  91. config BUSYBOX_CONFIG_FEATURE_UDHCPC_ARPING
  92. bool "Verify that the offered address is free, using ARP ping"
  93. default BUSYBOX_DEFAULT_FEATURE_UDHCPC_ARPING
  94. depends on BUSYBOX_CONFIG_UDHCPC
  95. help
  96. If selected, udhcpc will send ARP probes and make sure
  97. the offered address is really not in use by anyone. The client
  98. will DHCPDECLINE the offer if the address is in use,
  99. and restart the discover process.
  100. config BUSYBOX_CONFIG_FEATURE_UDHCPC_SANITIZEOPT
  101. bool "Do not pass malformed host and domain names"
  102. default BUSYBOX_DEFAULT_FEATURE_UDHCPC_SANITIZEOPT
  103. depends on BUSYBOX_CONFIG_UDHCPC
  104. help
  105. If selected, udhcpc will check some options (such as option 12 -
  106. hostname) and if they don't look like valid hostnames
  107. (for example, if they start with dash or contain spaces),
  108. they will be replaced with string "bad" when exporting
  109. to the environment.
  110. config BUSYBOX_CONFIG_UDHCPC_DEFAULT_SCRIPT
  111. string "Absolute path to config script"
  112. default BUSYBOX_DEFAULT_UDHCPC_DEFAULT_SCRIPT
  113. depends on BUSYBOX_CONFIG_UDHCPC
  114. help
  115. This script is called after udhcpc receives an answer. See
  116. examples/udhcp for a working example. Normally it is safe
  117. to leave this untouched.
  118. config BUSYBOX_CONFIG_FEATURE_UDHCP_PORT
  119. bool "Enable '-P port' option for udhcpd and udhcpc"
  120. default BUSYBOX_DEFAULT_FEATURE_UDHCP_PORT
  121. depends on BUSYBOX_CONFIG_UDHCPD || BUSYBOX_CONFIG_UDHCPC
  122. help
  123. At the cost of ~300 bytes, enables -P port option.
  124. This feature is typically not needed.
  125. config BUSYBOX_CONFIG_UDHCP_DEBUG
  126. int "Maximum verbosity level for udhcp applets (0..9)"
  127. default BUSYBOX_DEFAULT_UDHCP_DEBUG
  128. range 0 9
  129. depends on BUSYBOX_CONFIG_UDHCPD || BUSYBOX_CONFIG_UDHCPC || BUSYBOX_CONFIG_DHCPRELAY
  130. help
  131. Verbosity can be increased with multiple -v options.
  132. This option controls how high it can be cranked up.
  133. Bigger values result in bigger code. Levels above 1
  134. are very verbose and useful for debugging only.
  135. config BUSYBOX_CONFIG_FEATURE_UDHCP_RFC3397
  136. bool "Support RFC3397 domain search (experimental)"
  137. default BUSYBOX_DEFAULT_FEATURE_UDHCP_RFC3397
  138. depends on BUSYBOX_CONFIG_UDHCPD || BUSYBOX_CONFIG_UDHCPC
  139. help
  140. If selected, both client and server will support passing of domain
  141. search lists via option 119, specified in RFC 3397,
  142. and SIP servers option 120, specified in RFC 3361.
  143. config BUSYBOX_CONFIG_FEATURE_UDHCP_8021Q
  144. bool "Support 802.1Q VLAN parameters"
  145. default BUSYBOX_DEFAULT_FEATURE_UDHCP_8021Q
  146. depends on BUSYBOX_CONFIG_UDHCPD || BUSYBOX_CONFIG_UDHCPC
  147. help
  148. If selected, both client and server will support passing of VLAN
  149. ID and priority via options 132 and 133 as per 802.1Q.
  150. config BUSYBOX_CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS
  151. int "DHCP options slack buffer size"
  152. default BUSYBOX_DEFAULT_UDHCPC_SLACK_FOR_BUGGY_SERVERS
  153. range 0 924
  154. depends on BUSYBOX_CONFIG_UDHCPD || BUSYBOX_CONFIG_UDHCPC
  155. help
  156. Some buggy DHCP servers send DHCP offer packets with option
  157. field larger than we expect (which might also be considered a
  158. buffer overflow attempt). These packets are normally discarded.
  159. If circumstances beyond your control force you to support such
  160. servers, this may help. The upper limit (924) makes dhcpc accept
  161. even 1500 byte packets (maximum-sized ethernet packets).
  162. This option does not make dhcp[cd] emit non-standard
  163. sized packets.
  164. Known buggy DHCP servers:
  165. 3Com OfficeConnect Remote 812 ADSL Router:
  166. seems to confuse maximum allowed UDP packet size with
  167. maximum size of entire IP packet, and sends packets which are
  168. 28 bytes too large.
  169. Seednet (ISP) VDSL: sends packets 2 bytes too large.