Config.in 6.4 KB

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