Skip to content

Commit 9a2f925

Browse files
committedMar 17, 2025·
[202412]Changing dscp mode in tunnel decap table to pipe for Nvidia platforms
1 parent 4f08dbf commit 9a2f925

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎dockers/docker-orchagent/ipinip.json.j2

+8
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,11 @@
8888
{
8989
"TUNNEL_DECAP_TABLE:IPINIP_TUNNEL" : {
9090
"tunnel_type":"IPINIP",
91+
{% if "nvidia" in DEVICE_METADATA.localhost.platform %}
92+
"dscp_mode":"pipe",
93+
{% else %}
9194
"dscp_mode":"uniform",
95+
{% endif %}
9296
{% if "mlnx" in DEVICE_METADATA.localhost.platform %}
9397
"ecn_mode":"standard",
9498
{% else %}
@@ -141,7 +145,11 @@
141145
{
142146
"TUNNEL_DECAP_TABLE:IPINIP_V6_TUNNEL" : {
143147
"tunnel_type":"IPINIP",
148+
{% if "nvidia" in DEVICE_METADATA.localhost.platform %}
149+
"dscp_mode":"pipe",
150+
{% else %}
144151
"dscp_mode":"uniform",
152+
{% endif %}
145153
{% if "mlnx" in DEVICE_METADATA.localhost.platform %}
146154
"ecn_mode":"standard",
147155
{% else %}

0 commit comments

Comments
 (0)
Please sign in to comment.