mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Update ovmanager to support maximum vni
To support maximum possible overlay networks in swarm mode. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
This commit is contained in:
parent
a4f03577b5
commit
d3b8412ac6
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ import (
|
|||
const (
|
||||
networkType = "overlay"
|
||||
vxlanIDStart = 256
|
||||
vxlanIDEnd = 1000
|
||||
vxlanIDEnd = (1 << 24) - 1
|
||||
)
|
||||
|
||||
type networkTable map[string]*network
|
||||
|
|
Loading…
Add table
Reference in a new issue