Kconfig 899 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #
  2. # XFRM configuration
  3. #
  4. config XFRM
  5. bool
  6. depends on NET
  7. config XFRM_USER
  8. tristate "Transformation user configuration interface"
  9. depends on INET && XFRM
  10. ---help---
  11. Support for Transformation(XFRM) user configuration interface
  12. like IPsec used by native Linux tools.
  13. If unsure, say Y.
  14. config XFRM_SUB_POLICY
  15. bool "Transformation sub policy support (EXPERIMENTAL)"
  16. depends on XFRM && EXPERIMENTAL
  17. ---help---
  18. Support sub policy for developers. By using sub policy with main
  19. one, two policies can be applied to the same packet at once.
  20. Policy which lives shorter time in kernel should be a sub.
  21. If unsure, say N.
  22. config NET_KEY
  23. tristate "PF_KEY sockets"
  24. select XFRM
  25. ---help---
  26. PF_KEYv2 socket family, compatible to KAME ones.
  27. They are required if you are going to use IPsec tools ported
  28. from KAME.
  29. Say Y unless you know what you are doing.