Use IANA assigned VXLAN port

Fixes #358

Signed-off-by: Dave Tucker <dt@docker.com>
This commit is contained in:
Dave Tucker
2015-07-03 03:43:02 +01:00
parent 0e8c92c140
commit f5df0c6bbd
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -54,6 +54,7 @@ func createVxlan(vni uint32) (string, error) {
LinkAttrs: netlink.LinkAttrs{Name: name},
VxlanId: int(vni),
Learning: true,
Port: vxlanPort,
Proxy: true,
L3miss: true,
L2miss: true,
+1
View File
@@ -21,6 +21,7 @@ const (
vethLen = 7
vxlanIDStart = 256
vxlanIDEnd = 1000
vxlanPort = 4789
)
type driver struct {