Config.in 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. if BR2_PACKAGE_IPSEC_TOOLS
  9. config BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT
  10. default y
  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. bool "Enable NAT-Traversal"
  17. help
  18. This needs kernel support, which is available on Linux. On
  19. NetBSD, NAT-Traversal kernel support has not been integrated
  20. yet, you can get it from here:
  21. http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you
  22. live in a country where software patents are legal, using
  23. NAT-Traversal might infringe a patent.
  24. config BR2_PACKAGE_IPSEC_TOOLS_FRAG
  25. bool "Enable IKE fragmentation"
  26. help
  27. Enable IKE fragmentation, which is a workaround for
  28. broken routers that drop fragmented packets
  29. config BR2_PACKAGE_IPSEC_TOOLS_DPD
  30. bool "Enable DPD (Dead Peer Detection)"
  31. help
  32. Enable dead peer detection support
  33. config BR2_PACKAGE_IPSEC_TOOLS_STATS
  34. default y
  35. bool "Enable statistics logging function"
  36. config BR2_PACKAGE_IPSEC_TOOLS_READLINE
  37. select BR2_PACKAGE_READLINE
  38. bool "Enable readline input support"
  39. choice
  40. prompt "Security context"
  41. default BR2_PACKAGE_IPSEC_SECCTX_DISABLE
  42. help
  43. Selects whether or not to enable security context support.
  44. config BR2_PACKAGE_IPSEC_SECCTX_DISABLE
  45. bool "Disable security context support"
  46. config BR2_PACKAGE_IPSEC_SECCTX_ENABLE
  47. bool "Enable SELinux security context support"
  48. config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
  49. bool "Enable kernel security context"
  50. endchoice
  51. endif