Kconfig 2.3 KB

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