Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #
  2. # XFRM configuration
  3. #
  4. config XFRM
  5. bool
  6. depends on NET
  7. select GRO_CELLS
  8. config XFRM_OFFLOAD
  9. bool
  10. config XFRM_ALGO
  11. tristate
  12. select XFRM
  13. select CRYPTO
  14. config XFRM_USER
  15. tristate "Transformation user configuration interface"
  16. depends on INET
  17. select XFRM_ALGO
  18. ---help---
  19. Support for Transformation(XFRM) user configuration interface
  20. like IPsec used by native Linux tools.
  21. If unsure, say Y.
  22. config XFRM_INTERFACE
  23. tristate "Transformation virtual interface"
  24. depends on XFRM && IPV6
  25. ---help---
  26. This provides a virtual interface to route IPsec traffic.
  27. If unsure, say N.
  28. config XFRM_SUB_POLICY
  29. bool "Transformation sub policy support"
  30. depends on XFRM
  31. ---help---
  32. Support sub policy for developers. By using sub policy with main
  33. one, two policies can be applied to the same packet at once.
  34. Policy which lives shorter time in kernel should be a sub.
  35. If unsure, say N.
  36. config XFRM_MIGRATE
  37. bool "Transformation migrate database"
  38. depends on XFRM
  39. ---help---
  40. A feature to update locator(s) of a given IPsec security
  41. association dynamically. This feature is required, for
  42. instance, in a Mobile IPv6 environment with IPsec configuration
  43. where mobile nodes change their attachment point to the Internet.
  44. If unsure, say N.
  45. config XFRM_STATISTICS
  46. bool "Transformation statistics"
  47. depends on INET && XFRM && PROC_FS
  48. ---help---
  49. This statistics is not a SNMP/MIB specification but shows
  50. statistics about transformation error (or almost error) factor
  51. at packet processing for developer.
  52. If unsure, say N.
  53. config XFRM_IPCOMP
  54. tristate
  55. select XFRM_ALGO
  56. select CRYPTO
  57. select CRYPTO_DEFLATE
  58. config NET_KEY
  59. tristate "PF_KEY sockets"
  60. select XFRM_ALGO
  61. ---help---
  62. PF_KEYv2 socket family, compatible to KAME ones.
  63. They are required if you are going to use IPsec tools ported
  64. from KAME.
  65. Say Y unless you know what you are doing.
  66. config NET_KEY_MIGRATE
  67. bool "PF_KEY MIGRATE"
  68. depends on NET_KEY
  69. select XFRM_MIGRATE
  70. ---help---
  71. Add a PF_KEY MIGRATE message to PF_KEYv2 socket family.
  72. The PF_KEY MIGRATE message is used to dynamically update
  73. locator(s) of a given IPsec security association.
  74. This feature is required, for instance, in a Mobile IPv6
  75. environment with IPsec configuration where mobile nodes
  76. change their attachment point to the Internet. Detail
  77. information can be found in the internet-draft
  78. <draft-sugimoto-mip6-pfkey-migrate>.
  79. If unsure, say N.