Merge pull request #1293 from mrjana/overlay

Update ovmanager to support maximum vni
This commit is contained in:
Alessandro Boch 2016-06-24 18:50:28 -07:00 committed by GitHub
commit b766159f38

View file

@ -20,7 +20,7 @@ import (
const (
networkType = "overlay"
vxlanIDStart = 256
vxlanIDEnd = 1000
vxlanIDEnd = (1 << 24) - 1
)
type networkTable map[string]*network