Config.in.ipvs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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_KERNEL_IP_VS
  5. prompt "IPVS support"
  6. tristate
  7. select ADK_KERNEL_NETFILTER
  8. select ADK_KERNEL_NF_CONNTRACK
  9. default n
  10. config ADK_KERNEL_IP_VS_DEBUG
  11. prompt "enable debugging support"
  12. boolean
  13. default n
  14. depends on ADK_KERNEL_IP_VS
  15. menu "IPVS transport protocol load balancing support"
  16. depends on ADK_KERNEL_IP_VS
  17. config ADK_KERNEL_IP_VS_PROTO_TCP
  18. prompt "TCP load balancing support"
  19. boolean
  20. default n
  21. help
  22. This option enables support for load balancing TCP transport
  23. protocol. Say Y if unsure.
  24. config ADK_KERNEL_IP_VS_PROTO_UDP
  25. prompt "UDP load balancing support"
  26. boolean
  27. default n
  28. help
  29. This option enables support for load balancing UDP transport
  30. protocol. Say Y if unsure.
  31. config ADK_KERNEL_IP_VS_PROTO_ESP
  32. prompt "ESP load balancing support"
  33. boolean
  34. default n
  35. help
  36. This option enables support for load balancing ESP (Encapsulation
  37. Security Payload) transport protocol. Say Y if unsure.
  38. config ADK_KERNEL_IP_VS_PROTO_AH
  39. prompt "AH load balancing support"
  40. boolean
  41. default n
  42. help
  43. This option enables support for load balancing AH (Authentication
  44. Header) transport protocol. Say Y if unsure.
  45. endmenu
  46. menu "IPVS Scheduler"
  47. depends on ADK_KERNEL_IP_VS
  48. config ADK_KERNEL_IP_VS_RR
  49. prompt "round-robin"
  50. tristate
  51. default n
  52. config ADK_KERNEL_IP_VS_WRR
  53. prompt "weighted round-robin"
  54. tristate
  55. default n
  56. config ADK_KERNEL_IP_VS_LC
  57. prompt "least-connection"
  58. tristate
  59. default n
  60. config ADK_KERNEL_IP_VS_WLC
  61. prompt "weighted least-connection"
  62. tristate
  63. default n
  64. config ADK_KERNEL_IP_VS_LBLC
  65. prompt "locality-based least-connection"
  66. tristate
  67. default n
  68. config ADK_KERNEL_IP_VS_LBLCR
  69. prompt "locality-based least-connection with replication"
  70. tristate
  71. default n
  72. config ADK_KERNEL_IP_VS_DH
  73. prompt "destination hashing"
  74. tristate
  75. default n
  76. config ADK_KERNEL_IP_VS_SH
  77. prompt "source hashing"
  78. tristate
  79. default n
  80. config ADK_KERNEL_IP_VS_SED
  81. prompt "shortest expected delay"
  82. tristate
  83. default n
  84. config ADK_KERNEL_IP_VS_NQ
  85. prompt "never queue"
  86. tristate
  87. default n
  88. endmenu
  89. menu "IPVS application helper"
  90. depends on ADK_KERNEL_IP_VS
  91. config ADK_KERNEL_IP_VS_FTP
  92. prompt "FTP protocol"
  93. tristate
  94. default n
  95. select ADK_KERNEL_IP_VS_PROTO_TCP
  96. endmenu
  97. endmenu