cd3cc7e908
This patch implements the L3 agent side router gateway IP rate limit. For routers in centralized snat node (network node), the tc rules will be set on the corresponding device in router namespace: 1. Legacy and HA router, qrouter-namespace and qg-device 2. Dvr (edge) router, snat namespace and qg-device If gateway IP rate limit was set, then under the same router, all the VMs without floating IP will share the bandwidth. Partially-Implements blueprint: router-gateway-ip-qos Closes-Bug: #1757044 Change-Id: Ie92ff0d4df0e85ce71c7d50f34ea6ff973812af8
29 lines
584 B
Plaintext
29 lines
584 B
Plaintext
function configure_qos_service_plugin {
|
|
neutron_service_plugin_class_add "qos"
|
|
}
|
|
|
|
|
|
function configure_qos_core_plugin {
|
|
configure_qos_$NEUTRON_CORE_PLUGIN
|
|
}
|
|
|
|
|
|
function configure_qos_l2_agent {
|
|
plugin_agent_add_l2_agent_extension "qos"
|
|
}
|
|
|
|
|
|
function configure_qos {
|
|
configure_qos_service_plugin
|
|
configure_qos_core_plugin
|
|
configure_qos_l2_agent
|
|
}
|
|
|
|
function configure_l3_agent_extension_fip_qos {
|
|
plugin_agent_add_l3_agent_extension "fip_qos"
|
|
}
|
|
|
|
function configure_l3_agent_extension_gateway_ip_qos {
|
|
plugin_agent_add_l3_agent_extension "gateway_ip_qos"
|
|
}
|