blob: 71493dd742c0ec0752b5ee7ebcac248f1171f316 [file] [log] [blame]
Gabriel Ganne3904a0c2017-11-15 10:55:22 +01001diff --git a/scapy/layers/vxlan.py b/scapy/layers/vxlan.py
2--- a/scapy/layers/vxlan.py
3+++ b/scapy/layers/vxlan.py
4@@ -65,6 +65,7 @@
5 return self.sprintf("VXLAN (vni=%VXLAN.vni%)")
6
7 bind_layers(UDP, VXLAN, dport=4789) # RFC standard port
8+bind_layers(UDP, VXLAN, dport=4790) # RFC standard vxlan-gpe port
9 bind_layers(UDP, VXLAN, dport=6633) # New IANA assigned port for use with NSH
10 bind_layers(UDP, VXLAN, dport=8472) # Linux implementation port
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020011+bind_layers(UDP, VXLAN, dport=48879) # RFC standard vxlan-gbp port
Gabriel Ganne3904a0c2017-11-15 10:55:22 +010012 bind_layers(VXLAN, Ether, {'flags': 0x8})