mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Allow maximum possible VNI
Right now there is an artificial limitation at 1000. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
This commit is contained in:
parent
bb4798d669
commit
a95260646a
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ const (
|
|||
vethPrefix = "veth"
|
||||
vethLen = 7
|
||||
vxlanIDStart = 256
|
||||
vxlanIDEnd = 1000
|
||||
vxlanIDEnd = (1 << 24) - 1
|
||||
vxlanPort = 4789
|
||||
vxlanVethMTU = 1450
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue