Config.in 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. config BR2_PACKAGE_IPSEC_TOOLS
  2. bool "ipsec-tools"
  3. default n
  4. select BR2_PACKAGE_OPENSSL
  5. help
  6. This package is required to support IPSec for Linux 2.6+
  7. config BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT
  8. default y
  9. depends on BR2_PACKAGE_IPSEC_TOOLS
  10. bool "Enable racoonctl(8)."
  11. help
  12. Lets racoon to listen to racoon admin port, which is to
  13. be contacted by racoonctl(8).
  14. config BR2_PACKAGE_IPSEC_TOOLS_NATT
  15. default n
  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. default n
  27. depends on BR2_PACKAGE_IPSEC_TOOLS
  28. bool "Enable IKE fragmentation."
  29. help
  30. Enable IKE fragmentation, which is a workaround for
  31. broken routers that drop fragmented packets
  32. config BR2_PACKAGE_IPSEC_TOOLS_STATS
  33. default y
  34. depends on BR2_PACKAGE_IPSEC_TOOLS
  35. bool "Enable statistics logging function."
  36. config BR2_PACKAGE_IPSEC_TOOLS_IPV6
  37. default y
  38. depends on BR2_PACKAGE_IPSEC_TOOLS
  39. bool "Enable IPv6 support"
  40. help
  41. This option has no effect if uClibc has been compiled without
  42. IPv6 support.
  43. config BR2_PACKAGE_IPSEC_TOOLS_READLINE
  44. default n
  45. depends on BR2_PACKAGE_IPSEC_TOOLS
  46. select BR2_READLINE
  47. bool "Enable readline input support if available."
  48. config BR2_PACKAGE_IPSEC_TOOLS_LIBS
  49. bool "Install IPSec libraries under staging_dir/lib"
  50. default y
  51. depends on BR2_PACKAGE_IPSEC_TOOLS
  52. help
  53. Install libipsec.a and libracoon.a under staging_dir/lib for further
  54. development on a host machine.