Kconfig 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. #
  2. # IPv6 configuration
  3. #
  4. # IPv6 as module will cause a CRASH if you try to unload it
  5. config IPV6
  6. tristate "The IPv6 protocol"
  7. default m
  8. ---help---
  9. This is complemental support for the IP version 6.
  10. You will still be able to do traditional IPv4 networking as well.
  11. For general information about IPv6, see
  12. <http://playground.sun.com/pub/ipng/html/ipng-main.html>.
  13. For Linux IPv6 development information, see <http://www.linux-ipv6.org>.
  14. For specific information about IPv6 under Linux, read the HOWTO at
  15. <http://www.bieringer.de/linux/IPv6/>.
  16. To compile this protocol support as a module, choose M here: the
  17. module will be called ipv6.
  18. config IPV6_PRIVACY
  19. bool "IPv6: Privacy Extensions support"
  20. depends on IPV6
  21. ---help---
  22. Privacy Extensions for Stateless Address Autoconfiguration in IPv6
  23. support. With this option, additional periodically-alter
  24. pseudo-random global-scope unicast address(es) will assigned to
  25. your interface(s).
  26. We use our standard pseudo random algorithm to generate randomized
  27. interface identifier, instead of one described in RFC 3041.
  28. By default, kernel do not generate temporary addresses.
  29. To use temporary addresses, do
  30. echo 2 >/proc/sys/net/ipv6/conf/all/use_tempaddr
  31. See <file:Documentation/networking/ip-sysctl.txt> for details.
  32. config IPV6_ROUTER_PREF
  33. bool "IPv6: Router Preference (RFC 4191) support"
  34. depends on IPV6
  35. ---help---
  36. Router Preference is an optional extension to the Router
  37. Advertisement message to improve the ability of hosts
  38. to pick more appropriate router, especially when the hosts
  39. is placed in a multi-homed network.
  40. If unsure, say N.
  41. config IPV6_ROUTE_INFO
  42. bool "IPv6: Route Information (RFC 4191) support (EXPERIMENTAL)"
  43. depends on IPV6_ROUTER_PREF && EXPERIMENTAL
  44. ---help---
  45. This is experimental support of Route Information.
  46. If unsure, say N.
  47. config IPV6_OPTIMISTIC_DAD
  48. bool "IPv6: Enable RFC 4429 Optimistic DAD (EXPERIMENTAL)"
  49. depends on IPV6 && EXPERIMENTAL
  50. ---help---
  51. This is experimental support for optimistic Duplicate
  52. Address Detection. It allows for autoconfigured addresses
  53. to be used more quickly.
  54. If unsure, say N.
  55. config INET6_AH
  56. tristate "IPv6: AH transformation"
  57. depends on IPV6
  58. select XFRM
  59. select CRYPTO
  60. select CRYPTO_HMAC
  61. select CRYPTO_MD5
  62. select CRYPTO_SHA1
  63. ---help---
  64. Support for IPsec AH.
  65. If unsure, say Y.
  66. config INET6_ESP
  67. tristate "IPv6: ESP transformation"
  68. depends on IPV6
  69. select XFRM
  70. select CRYPTO
  71. select CRYPTO_HMAC
  72. select CRYPTO_MD5
  73. select CRYPTO_CBC
  74. select CRYPTO_SHA1
  75. select CRYPTO_DES
  76. ---help---
  77. Support for IPsec ESP.
  78. If unsure, say Y.
  79. config INET6_IPCOMP
  80. tristate "IPv6: IPComp transformation"
  81. depends on IPV6
  82. select XFRM
  83. select INET6_XFRM_TUNNEL
  84. select CRYPTO
  85. select CRYPTO_DEFLATE
  86. ---help---
  87. Support for IP Payload Compression Protocol (IPComp) (RFC3173),
  88. typically needed for IPsec.
  89. If unsure, say Y.
  90. config IPV6_MIP6
  91. tristate "IPv6: Mobility (EXPERIMENTAL)"
  92. depends on IPV6 && EXPERIMENTAL
  93. select XFRM
  94. ---help---
  95. Support for IPv6 Mobility described in RFC 3775.
  96. If unsure, say N.
  97. config INET6_XFRM_TUNNEL
  98. tristate
  99. select INET6_TUNNEL
  100. default n
  101. config INET6_TUNNEL
  102. tristate
  103. default n
  104. config INET6_XFRM_MODE_TRANSPORT
  105. tristate "IPv6: IPsec transport mode"
  106. depends on IPV6
  107. default IPV6
  108. select XFRM
  109. ---help---
  110. Support for IPsec transport mode.
  111. If unsure, say Y.
  112. config INET6_XFRM_MODE_TUNNEL
  113. tristate "IPv6: IPsec tunnel mode"
  114. depends on IPV6
  115. default IPV6
  116. select XFRM
  117. ---help---
  118. Support for IPsec tunnel mode.
  119. If unsure, say Y.
  120. config INET6_XFRM_MODE_BEET
  121. tristate "IPv6: IPsec BEET mode"
  122. depends on IPV6
  123. default IPV6
  124. select XFRM
  125. ---help---
  126. Support for IPsec BEET mode.
  127. If unsure, say Y.
  128. config INET6_XFRM_MODE_ROUTEOPTIMIZATION
  129. tristate "IPv6: MIPv6 route optimization mode (EXPERIMENTAL)"
  130. depends on IPV6 && EXPERIMENTAL
  131. select XFRM
  132. ---help---
  133. Support for MIPv6 route optimization mode.
  134. config IPV6_SIT
  135. tristate "IPv6: IPv6-in-IPv4 tunnel (SIT driver)"
  136. depends on IPV6
  137. select INET_TUNNEL
  138. default y
  139. ---help---
  140. Tunneling means encapsulating data of one protocol type within
  141. another protocol and sending it over a channel that understands the
  142. encapsulating protocol. This driver implements encapsulation of IPv6
  143. into IPv4 packets. This is useful if you want to connect two IPv6
  144. networks over an IPv4-only path.
  145. Saying M here will produce a module called sit.ko. If unsure, say Y.
  146. config IPV6_TUNNEL
  147. tristate "IPv6: IPv6-in-IPv6 tunnel"
  148. select INET6_TUNNEL
  149. depends on IPV6
  150. ---help---
  151. Support for IPv6-in-IPv6 tunnels described in RFC 2473.
  152. If unsure, say N.
  153. config IPV6_MULTIPLE_TABLES
  154. bool "IPv6: Multiple Routing Tables"
  155. depends on IPV6 && EXPERIMENTAL
  156. select FIB_RULES
  157. ---help---
  158. Support multiple routing tables.
  159. config IPV6_SUBTREES
  160. bool "IPv6: source address based routing"
  161. depends on IPV6_MULTIPLE_TABLES
  162. ---help---
  163. Enable routing by source address or prefix.
  164. The destination address is still the primary routing key, so mixing
  165. normal and source prefix specific routes in the same routing table
  166. may sometimes lead to unintended routing behavior. This can be
  167. avoided by defining different routing tables for the normal and
  168. source prefix specific routes.
  169. If unsure, say N.