Kconfig 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. #
  2. # IPv6 configuration
  3. #
  4. # IPv6 as module will cause a CRASH if you try to unload it
  5. menuconfig 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. if IPV6
  19. config IPV6_PRIVACY
  20. bool "IPv6: Privacy Extensions support"
  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. ---help---
  35. Router Preference is an optional extension to the Router
  36. Advertisement message to improve the ability of hosts
  37. to pick more appropriate router, especially when the hosts
  38. is placed in a multi-homed network.
  39. If unsure, say N.
  40. config IPV6_ROUTE_INFO
  41. bool "IPv6: Route Information (RFC 4191) support (EXPERIMENTAL)"
  42. depends on IPV6_ROUTER_PREF && EXPERIMENTAL
  43. ---help---
  44. This is experimental support of Route Information.
  45. If unsure, say N.
  46. config IPV6_OPTIMISTIC_DAD
  47. bool "IPv6: Enable RFC 4429 Optimistic DAD (EXPERIMENTAL)"
  48. depends on EXPERIMENTAL
  49. ---help---
  50. This is experimental support for optimistic Duplicate
  51. Address Detection. It allows for autoconfigured addresses
  52. to be used more quickly.
  53. If unsure, say N.
  54. config INET6_AH
  55. tristate "IPv6: AH transformation"
  56. select XFRM
  57. select CRYPTO
  58. select CRYPTO_HMAC
  59. select CRYPTO_MD5
  60. select CRYPTO_SHA1
  61. ---help---
  62. Support for IPsec AH.
  63. If unsure, say Y.
  64. config INET6_ESP
  65. tristate "IPv6: ESP transformation"
  66. select XFRM
  67. select CRYPTO
  68. select CRYPTO_AUTHENC
  69. select CRYPTO_HMAC
  70. select CRYPTO_MD5
  71. select CRYPTO_CBC
  72. select CRYPTO_SHA1
  73. select CRYPTO_DES
  74. ---help---
  75. Support for IPsec ESP.
  76. If unsure, say Y.
  77. config INET6_IPCOMP
  78. tristate "IPv6: IPComp transformation"
  79. select XFRM
  80. select INET6_XFRM_TUNNEL
  81. select CRYPTO
  82. select CRYPTO_DEFLATE
  83. ---help---
  84. Support for IP Payload Compression Protocol (IPComp) (RFC3173),
  85. typically needed for IPsec.
  86. If unsure, say Y.
  87. config IPV6_MIP6
  88. tristate "IPv6: Mobility (EXPERIMENTAL)"
  89. depends on EXPERIMENTAL
  90. select XFRM
  91. ---help---
  92. Support for IPv6 Mobility described in RFC 3775.
  93. If unsure, say N.
  94. config INET6_XFRM_TUNNEL
  95. tristate
  96. select INET6_TUNNEL
  97. default n
  98. config INET6_TUNNEL
  99. tristate
  100. default n
  101. config INET6_XFRM_MODE_TRANSPORT
  102. tristate "IPv6: IPsec transport mode"
  103. default IPV6
  104. select XFRM
  105. ---help---
  106. Support for IPsec transport mode.
  107. If unsure, say Y.
  108. config INET6_XFRM_MODE_TUNNEL
  109. tristate "IPv6: IPsec tunnel mode"
  110. default IPV6
  111. select XFRM
  112. ---help---
  113. Support for IPsec tunnel mode.
  114. If unsure, say Y.
  115. config INET6_XFRM_MODE_BEET
  116. tristate "IPv6: IPsec BEET mode"
  117. default IPV6
  118. select XFRM
  119. ---help---
  120. Support for IPsec BEET mode.
  121. If unsure, say Y.
  122. config INET6_XFRM_MODE_ROUTEOPTIMIZATION
  123. tristate "IPv6: MIPv6 route optimization mode (EXPERIMENTAL)"
  124. depends on EXPERIMENTAL
  125. select XFRM
  126. ---help---
  127. Support for MIPv6 route optimization mode.
  128. config IPV6_SIT
  129. tristate "IPv6: IPv6-in-IPv4 tunnel (SIT driver)"
  130. select INET_TUNNEL
  131. select IPV6_NDISC_NODETYPE
  132. default y
  133. ---help---
  134. Tunneling means encapsulating data of one protocol type within
  135. another protocol and sending it over a channel that understands the
  136. encapsulating protocol. This driver implements encapsulation of IPv6
  137. into IPv4 packets. This is useful if you want to connect two IPv6
  138. networks over an IPv4-only path.
  139. Saying M here will produce a module called sit.ko. If unsure, say Y.
  140. config IPV6_NDISC_NODETYPE
  141. bool
  142. config IPV6_TUNNEL
  143. tristate "IPv6: IP-in-IPv6 tunnel (RFC2473)"
  144. select INET6_TUNNEL
  145. ---help---
  146. Support for IPv6-in-IPv6 and IPv4-in-IPv6 tunnels described in
  147. RFC 2473.
  148. If unsure, say N.
  149. config IPV6_MULTIPLE_TABLES
  150. bool "IPv6: Multiple Routing Tables"
  151. depends on EXPERIMENTAL
  152. select FIB_RULES
  153. ---help---
  154. Support multiple routing tables.
  155. config IPV6_SUBTREES
  156. bool "IPv6: source address based routing"
  157. depends on IPV6_MULTIPLE_TABLES
  158. ---help---
  159. Enable routing by source address or prefix.
  160. The destination address is still the primary routing key, so mixing
  161. normal and source prefix specific routes in the same routing table
  162. may sometimes lead to unintended routing behavior. This can be
  163. avoided by defining different routing tables for the normal and
  164. source prefix specific routes.
  165. If unsure, say N.
  166. config IPV6_MROUTE
  167. bool "IPv6: multicast routing (EXPERIMENTAL)"
  168. depends on IPV6 && EXPERIMENTAL
  169. ---help---
  170. Experimental support for IPv6 multicast forwarding.
  171. If unsure, say N.
  172. config IPV6_PIMSM_V2
  173. bool "IPv6: PIM-SM version 2 support (EXPERIMENTAL)"
  174. depends on IPV6_MROUTE
  175. ---help---
  176. Support for IPv6 PIM multicast routing protocol PIM-SMv2.
  177. If unsure, say N.
  178. endif # IPV6