Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/sonic-yang-models/doc/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1271,7 +1271,8 @@ The configuration is applied globally for each ECMP and LAG on a switch.
"INNER_DST_IP",
"INNER_SRC_IP",
"INNER_L4_DST_PORT",
"INNER_L4_SRC_PORT"
"INNER_L4_SRC_PORT",
"IPV6_FLOW_LABEL"
],
"lag_hash": [
"DST_MAC",
Expand All @@ -1289,7 +1290,8 @@ The configuration is applied globally for each ECMP and LAG on a switch.
"INNER_DST_IP",
"INNER_SRC_IP",
"INNER_L4_DST_PORT",
"INNER_L4_SRC_PORT"
"INNER_L4_SRC_PORT",
"IPV6_FLOW_LABEL"
],
"ecmp_hash_algorithm": "CRC",
"lag_hash_algorithm": "CRC"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"L4_DST_PORT",
"L4_SRC_PORT",
"INNER_DST_IP",
"INNER_SRC_IP"
"INNER_SRC_IP",
"IPV6_FLOW_LABEL"
],
"lag_hash": [
"DST_IP",
Expand All @@ -19,7 +20,8 @@
"L4_DST_PORT",
"L4_SRC_PORT",
"INNER_DST_IP",
"INNER_SRC_IP"
"INNER_SRC_IP",
"IPV6_FLOW_LABEL"
],
"ecmp_hash_algorithm": "CRC",
"lag_hash_algorithm": "XOR"
Expand Down
1 change: 1 addition & 0 deletions src/sonic-yang-models/yang-models/sonic-hash.yang
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ module sonic-hash {
enum INNER_SRC_IP;
enum INNER_L4_DST_PORT;
enum INNER_L4_SRC_PORT;
enum IPV6_FLOW_LABEL;
}
}

Expand Down
1 change: 1 addition & 0 deletions src/sonic-yang-models/yang-templates/sonic-types.yang.j2
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ module sonic-types {
enum INNER_SRC_IPV6;
enum INNER_L4_DST_PORT;
enum INNER_L4_SRC_PORT;
enum IPV6_FLOW_LABEL;
}
}

Expand Down
Loading