Config.in.ipvs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "IPVS support"
  4. config ADK_WALDUX_KERNEL_IP_VS
  5. tristate "IPVS support"
  6. select ADK_WALDUX_KERNEL_NETFILTER
  7. select ADK_WALDUX_KERNEL_NF_CONNTRACK
  8. default n
  9. config ADK_WALDUX_KERNEL_IP_VS_DEBUG
  10. bool "enable debugging support"
  11. depends on ADK_WALDUX_KERNEL_IP_VS
  12. default n
  13. menu "IPVS transport protocol load balancing support"
  14. depends on ADK_WALDUX_KERNEL_IP_VS
  15. config ADK_WALDUX_KERNEL_IP_VS_PROTO_TCP
  16. bool "TCP load balancing support"
  17. default n
  18. help
  19. This option enables support for load balancing TCP transport
  20. protocol. Say Y if unsure.
  21. config ADK_WALDUX_KERNEL_IP_VS_PROTO_UDP
  22. bool "UDP load balancing support"
  23. default n
  24. help
  25. This option enables support for load balancing UDP transport
  26. protocol. Say Y if unsure.
  27. config ADK_WALDUX_KERNEL_IP_VS_PROTO_ESP
  28. bool "ESP load balancing support"
  29. default n
  30. help
  31. This option enables support for load balancing ESP (Encapsulation
  32. Security Payload) transport protocol. Say Y if unsure.
  33. config ADK_WALDUX_KERNEL_IP_VS_PROTO_AH
  34. bool "AH load balancing support"
  35. default n
  36. help
  37. This option enables support for load balancing AH (Authentication
  38. Header) transport protocol. Say Y if unsure.
  39. endmenu
  40. menu "IPVS Scheduler"
  41. depends on ADK_WALDUX_KERNEL_IP_VS
  42. config ADK_WALDUX_KERNEL_IP_VS_RR
  43. tristate "round-robin"
  44. default n
  45. config ADK_WALDUX_KERNEL_IP_VS_WRR
  46. tristate "weighted round-robin"
  47. default n
  48. config ADK_WALDUX_KERNEL_IP_VS_LC
  49. tristate "least-connection"
  50. default n
  51. config ADK_WALDUX_KERNEL_IP_VS_WLC
  52. tristate "weighted least-connection"
  53. default n
  54. config ADK_WALDUX_KERNEL_IP_VS_LBLC
  55. tristate "locality-based least-connection"
  56. default n
  57. config ADK_WALDUX_KERNEL_IP_VS_LBLCR
  58. tristate "locality-based least-connection with replication"
  59. default n
  60. config ADK_WALDUX_KERNEL_IP_VS_DH
  61. tristate "destination hashing"
  62. default n
  63. config ADK_WALDUX_KERNEL_IP_VS_SH
  64. tristate "source hashing"
  65. default n
  66. config ADK_WALDUX_KERNEL_IP_VS_SED
  67. tristate "shortest expected delay"
  68. default n
  69. config ADK_WALDUX_KERNEL_IP_VS_NQ
  70. tristate "never queue"
  71. default n
  72. endmenu
  73. menu "IPVS application helper"
  74. depends on ADK_WALDUX_KERNEL_IP_VS
  75. config ADK_WALDUX_KERNEL_IP_VS_FTP
  76. tristate "FTP protocol"
  77. select ADK_WALDUX_KERNEL_IP_VS_PROTO_TCP
  78. default n
  79. endmenu
  80. endmenu