Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #
  2. # IPv6 configuration
  3. #
  4. config IPV6_PRIVACY
  5. bool "IPv6: Privacy Extensions (RFC 3041) support"
  6. depends on IPV6
  7. ---help---
  8. Privacy Extensions for Stateless Address Autoconfiguration in IPv6
  9. support. With this option, additional periodically-alter
  10. pseudo-random global-scope unicast address(es) will assigned to
  11. your interface(s).
  12. By default, kernel do not generate temporary addresses.
  13. To use temporary addresses, do
  14. echo 2 >/proc/sys/net/ipv6/conf/all/use_tempaddr
  15. See <file:Documentation/networking/ip-sysctl.txt> for details.
  16. config INET6_AH
  17. tristate "IPv6: AH transformation"
  18. depends on IPV6
  19. select XFRM
  20. select CRYPTO
  21. select CRYPTO_HMAC
  22. select CRYPTO_MD5
  23. select CRYPTO_SHA1
  24. ---help---
  25. Support for IPsec AH.
  26. If unsure, say Y.
  27. config INET6_ESP
  28. tristate "IPv6: ESP transformation"
  29. depends on IPV6
  30. select XFRM
  31. select CRYPTO
  32. select CRYPTO_HMAC
  33. select CRYPTO_MD5
  34. select CRYPTO_SHA1
  35. select CRYPTO_DES
  36. ---help---
  37. Support for IPsec ESP.
  38. If unsure, say Y.
  39. config INET6_IPCOMP
  40. tristate "IPv6: IPComp transformation"
  41. depends on IPV6
  42. select XFRM
  43. select INET6_TUNNEL
  44. select CRYPTO
  45. select CRYPTO_DEFLATE
  46. ---help---
  47. Support for IP Payload Compression Protocol (IPComp) (RFC3173),
  48. typically needed for IPsec.
  49. If unsure, say Y.
  50. config INET6_TUNNEL
  51. tristate "IPv6: tunnel transformation"
  52. depends on IPV6
  53. select XFRM
  54. ---help---
  55. Support for generic IPv6-in-IPv6 tunnel transformation, which is
  56. required by the IPv6-in-IPv6 tunneling module as well as tunnel mode
  57. IPComp.
  58. If unsure, say Y.
  59. config IPV6_TUNNEL
  60. tristate "IPv6: IPv6-in-IPv6 tunnel"
  61. depends on IPV6
  62. select INET6_TUNNEL
  63. ---help---
  64. Support for IPv6-in-IPv6 tunnels described in RFC 2473.
  65. If unsure, say N.