Merge pull request #1231 from mrjana/overlay

Allow maximum possible VNI
This commit is contained in:
Alessandro Boch 2016-06-09 12:56:27 -07:00
commit faf290f69e
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ const (
vethPrefix = "veth"
vethLen = 7
vxlanIDStart = 256
vxlanIDEnd = 1000
vxlanIDEnd = (1 << 24) - 1
vxlanPort = 4789
vxlanVethMTU = 1450
)