Skip to content
Snippets Groups Projects
Commit 6d8c8089 authored by Gabriel Ganne's avatar Gabriel Ganne Committed by Guillaume Valadon
Browse files

bind vxlan-gpe over udp on port 4790 (#424)

* bind vxlan-gpe over udp on port 4790

As defined here :
https://tools.ietf.org/html/draft-ietf-nvo3-vxlan-gpe-03#section-5.3



Signed-off-by: default avatarGabriel Ganne <gabriel.ganne@qosmos.com>

* Typo fixed
parent ae05856b
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,8 @@ class VXLAN(Packet): ...@@ -64,7 +64,8 @@ class VXLAN(Packet):
else: else:
return self.sprintf("VXLAN (vni=%VXLAN.vni%)") return self.sprintf("VXLAN (vni=%VXLAN.vni%)")
bind_layers(UDP, VXLAN, dport=4789) # RFC standard port bind_layers(UDP, VXLAN, dport=4789) # RFC standard vxlan port
bind_layers(UDP, VXLAN, dport=4790) # RFC standard vxlan-gpe port
bind_layers(UDP, VXLAN, dport=6633) # New IANA assigned port for use with NSH bind_layers(UDP, VXLAN, dport=6633) # New IANA assigned port for use with NSH
bind_layers(UDP, VXLAN, dport=8472) # Linux implementation port bind_layers(UDP, VXLAN, dport=8472) # Linux implementation port
bind_layers(VXLAN, Ether, {'flags': 0x8}) bind_layers(VXLAN, Ether, {'flags': 0x8})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment