Config.in 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. config BR2_PACKAGE_IPSEC_TOOLS
  2. bool "ipsec-tools"
  3. select BR2_PACKAGE_OPENSSL
  4. select BR2_PACKAGE_FLEX
  5. select BR2_PACKAGE_FLEX_LIBFL
  6. help
  7. This package is required to support IPSec for Linux 2.6+
  8. config BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT
  9. default y
  10. depends on BR2_PACKAGE_IPSEC_TOOLS
  11. bool "Enable racoonctl(8)."
  12. help
  13. Lets racoon to listen to racoon admin port, which is to
  14. be contacted by racoonctl(8).
  15. config BR2_PACKAGE_IPSEC_TOOLS_NATT
  16. depends on BR2_PACKAGE_IPSEC_TOOLS
  17. bool "Enable NAT-Traversal"
  18. help
  19. This needs kernel support, which is available on Linux. On
  20. NetBSD, NAT-Traversal kernel support has not been integrated
  21. yet, you can get it from here:
  22. http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you
  23. live in a country where software patents are legal, using
  24. NAT-Traversal might infringe a patent.
  25. config BR2_PACKAGE_IPSEC_TOOLS_FRAG
  26. depends on BR2_PACKAGE_IPSEC_TOOLS
  27. bool "Enable IKE fragmentation."
  28. help
  29. Enable IKE fragmentation, which is a workaround for
  30. broken routers that drop fragmented packets
  31. config BR2_PACKAGE_IPSEC_TOOLS_STATS
  32. default y
  33. depends on BR2_PACKAGE_IPSEC_TOOLS
  34. bool "Enable statistics logging function."
  35. config BR2_PACKAGE_IPSEC_TOOLS_IPV6
  36. default y
  37. depends on BR2_PACKAGE_IPSEC_TOOLS && BR2_INET_IPV6
  38. bool "Enable IPv6 support"
  39. help
  40. This option has no effect if uClibc has been compiled without
  41. IPv6 support.
  42. config BR2_PACKAGE_IPSEC_TOOLS_READLINE
  43. depends on BR2_PACKAGE_IPSEC_TOOLS
  44. select BR2_PACKAGE_READLINE
  45. bool "Enable readline input support if available."
  46. config BR2_PACKAGE_IPSEC_TOOLS_LIBS
  47. bool "Install IPSec libraries under staging_dir/lib"
  48. default y
  49. depends on BR2_PACKAGE_IPSEC_TOOLS
  50. help
  51. Install libipsec.a and libracoon.a under staging_dir/lib for further
  52. development on a host machine.