Config.in 2.0 KB

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