Kconfig 2.4 KB

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