- ``capacity`` = n [packets] - this is the maximum number of packets the
queue can hold before packets are discarded. The optimal value for
- this is extremely site-dependent. The default value is 500 for both
+ this is extremely site-dependent. The default value is 64 for both
kea-ring4 and kea-ring6.
The following example enables the default packet queue for kea-dhcp4,
const SimpleDefaults SimpleParser4::DHCP_QUEUE_CONTROL4_DEFAULTS = {
{ "enable-queue", Element::boolean, "false"},
{ "queue-type", Element::string, "kea-ring4"},
- { "capacity", Element::integer, "500"}
+ { "capacity", Element::integer, "64"}
};
/// @brief This table defines default values for multi-threading in DHCPv4.
const SimpleDefaults SimpleParser6::DHCP_QUEUE_CONTROL6_DEFAULTS = {
{ "enable-queue", Element::boolean, "false"},
{ "queue-type", Element::string, "kea-ring6"},
- { "capacity", Element::integer, "500"}
+ { "capacity", Element::integer, "64"}
};
/// @brief This table defines default values for multi-threading in DHCPv6.