Skip to content

Commit 230e9e7

Browse files
author
shaleman
committed
copy dscp from inner to outer ip header
1 parent 40b58cb commit 230e9e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/ovsdbDriver.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,8 @@ func (d *OvsdbDriver) CreateVtep(intfName string, vtepRemoteIP string) error {
432432
// Special handling for VTEP ports
433433
intfOptions := make(map[string]interface{})
434434
intfOptions["remote_ip"] = vtepRemoteIP
435-
intfOptions["key"] = "flow" // Insert VNI per flow
435+
intfOptions["key"] = "flow" // Insert VNI per flow
436+
intfOptions["tos"] = "inherit" // Copy DSCP from inner to outer IP header
436437

437438
intf["options"], err = libovsdb.NewOvsMap(intfOptions)
438439
if err != nil {

0 commit comments

Comments
 (0)