Kconfig 2.5 KB

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