diff --git a/scapy/layers/vxlan.py b/scapy/layers/vxlan.py index 287c41a0f..1d1d9ae4f 100644 --- a/scapy/layers/vxlan.py +++ b/scapy/layers/vxlan.py @@ -64,7 +64,8 @@ class VXLAN(Packet): else: 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=8472) # Linux implementation port bind_layers(VXLAN, Ether, {'flags': 0x8})