Kconfig 2.2 KB

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