Enable/Disable Order ECMP feature. (#9651)

Updated Jinja2 Template in switch.json.j2 for enabling/disabling Order ECMP feature based on device role.
Changes as per design: Azure/SONiC#896
This commit is contained in:
abdosi 2022-01-06 16:40:50 -08:00 committed by GitHub
parent bdfe89c4ad
commit 6c507329b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 5 deletions

View File

@ -20,7 +20,12 @@
"SWITCH_TABLE:switch": {
"ecmp_hash_seed": "{{ hash_seed_value }}",
"lag_hash_seed": "{{ hash_seed_value }}",
"fdb_aging_time": "600"
"fdb_aging_time": "600",
{% if DEVICE_METADATA.localhost.type and "LeafRouter" in DEVICE_METADATA.localhost.type %}
"ordered_ecmp": "true"
{% else %}
"ordered_ecmp": "false"
{% endif %}
},
"OP": "SET"
}

View File

@ -3,7 +3,8 @@
"SWITCH_TABLE:switch": {
"ecmp_hash_seed": "11",
"lag_hash_seed": "11",
"fdb_aging_time": "600"
"fdb_aging_time": "600",
"ordered_ecmp": "true"
},
"OP": "SET"
}

View File

@ -3,7 +3,8 @@
"SWITCH_TABLE:switch": {
"ecmp_hash_seed": "13",
"lag_hash_seed": "13",
"fdb_aging_time": "600"
"fdb_aging_time": "600",
"ordered_ecmp": "true"
},
"OP": "SET"
}

View File

@ -3,7 +3,8 @@
"SWITCH_TABLE:switch": {
"ecmp_hash_seed": "0",
"lag_hash_seed": "0",
"fdb_aging_time": "600"
"fdb_aging_time": "600",
"ordered_ecmp": "false"
},
"OP": "SET"
}

View File

@ -3,7 +3,8 @@
"SWITCH_TABLE:switch": {
"ecmp_hash_seed": "10",
"lag_hash_seed": "10",
"fdb_aging_time": "600"
"fdb_aging_time": "600",
"ordered_ecmp": "true"
},
"OP": "SET"
}