Skip to content

Commit 53da09d

Browse files
g1ranaunclejack
authored andcommitted
configure Vxlan veth interface mtu based on configured minimum host interface mtu
1 parent 4aec51c commit 53da09d

File tree

2 files changed

+41
-7
lines changed

2 files changed

+41
-7
lines changed

drivers/ovsd/ovsSwitch.go

100755100644
+17-7
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,13 @@ const (
5050

5151
// OvsSwitch represents on OVS bridge instance
5252
type OvsSwitch struct {
53-
bridgeName string
54-
netType string
55-
uplinkDb cmap.ConcurrentMap
56-
ovsdbDriver *OvsdbDriver
57-
ofnetAgent *ofnet.OfnetAgent
58-
hostPvtNW int
53+
bridgeName string
54+
netType string
55+
uplinkDb cmap.ConcurrentMap
56+
ovsdbDriver *OvsdbDriver
57+
ofnetAgent *ofnet.OfnetAgent
58+
hostPvtNW int
59+
vxlanEncapMtu int
5960
}
6061

6162
// getPvtIP returns a private IP for the port
@@ -100,6 +101,10 @@ func NewOvsSwitch(bridgeName, netType, localIP, fwdMode string,
100101
sw.netType = netType
101102
sw.uplinkDb = cmap.New()
102103
sw.hostPvtNW = hostPvtNW
104+
sw.vxlanEncapMtu, err = netutils.GetHostLowestLinkMtu()
105+
if err != nil {
106+
log.Fatalf("Failed to get Host Node MTU. Err: %v", err)
107+
}
103108

104109
// Create OVS db driver
105110
sw.ovsdbDriver, err = NewOvsdbDriver(bridgeName, "secure", vxlanUDPPort)
@@ -359,7 +364,12 @@ func (sw *OvsSwitch) CreatePort(intfName string, cfgEp *mastercfg.CfgEndpointSta
359364

360365
// Set the link mtu to 1450 to allow for 50 bytes vxlan encap
361366
// (inner eth header(14) + outer IP(20) outer UDP(8) + vxlan header(8))
362-
err = setLinkMtu(intfName, vxlanEndpointMtu)
367+
if sw.netType == "vxlan" {
368+
correctMtu := sw.vxlanEncapMtu - 50 //Include Vxlan header size
369+
err = setLinkMtu(intfName, correctMtu)
370+
} else {
371+
err = setLinkMtu(intfName, sw.vxlanEncapMtu)
372+
}
363373
if err != nil {
364374
log.Errorf("Error setting link %s mtu. Err: %v", intfName, err)
365375
return err

utils/netutils/netutils.go

+24
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,30 @@ func GetLocalAddrList() ([]string, error) {
755755
return addrList, err
756756
}
757757

758+
//GetHostLowestLinkMtu return lowest mtu for host interface(excluding ovs
759+
//interface
760+
func GetHostLowestLinkMtu() (int, error) {
761+
762+
lowestMTU := 9000 //Jumbo frame MTU
763+
intfList, err := net.Interfaces()
764+
if err != nil {
765+
return 0, err
766+
}
767+
// Loop thru each interface and add its ip addr to list
768+
for _, intf := range intfList {
769+
if strings.HasPrefix(intf.Name, "docker") || strings.HasPrefix(intf.Name, "veth") ||
770+
strings.HasPrefix(intf.Name, "vport") || strings.HasPrefix(intf.Name, "lo") {
771+
continue
772+
}
773+
774+
lowestMTU = int(math.Min(float64(lowestMTU), float64(intf.MTU)))
775+
}
776+
if lowestMTU == 0 {
777+
return 0, errors.New("Failed to find minimum MTU")
778+
}
779+
return lowestMTU, nil
780+
}
781+
758782
// IsAddrLocal check if an address is local
759783
func IsAddrLocal(findAddr string) bool {
760784
// get the local addr list

0 commit comments

Comments
 (0)