41cd22d04e
* Updated default ECN settings for T2 chassis (#14388) Why I did it Update ECN settings for T2 chassis How I did it Updated qos config file to load these settings during switch bootup How to verify it Verified on line card on T2 chassis * Fix for test failures * Test case failures * test case fix
22 lines
779 B
Django/Jinja
22 lines
779 B
Django/Jinja
{%- macro generate_wred_profiles() %}
|
|
"WRED_PROFILE": {
|
|
"AZURE_LOSSLESS" : {
|
|
"wred_green_enable" : "true",
|
|
"wred_yellow_enable" : "true",
|
|
"wred_red_enable" : "true",
|
|
"ecn" : "ecn_all",
|
|
"green_max_threshold" : "10000000",
|
|
"green_min_threshold" : "2000000",
|
|
"yellow_max_threshold" : "10000000",
|
|
"yellow_min_threshold" : "2000000",
|
|
"red_max_threshold" : "10000000",
|
|
"red_min_threshold" : "2000000",
|
|
"green_drop_probability" : "5",
|
|
"yellow_drop_probability": "5",
|
|
"red_drop_probability" : "5"
|
|
}
|
|
},
|
|
{%- endmacro %}
|
|
|
|
{%- include 'qos_config.j2' %}
|