Home | History | Annotate | Download | only in layers

Lines Matching refs:bind_layers

10 from scapy.packet import Packet, bind_layers
67 bind_layers(UDP, VXLAN, dport=4789) # RFC standard vxlan port
68 bind_layers(UDP, VXLAN, dport=4790) # RFC standard vxlan-gpe port
69 bind_layers(UDP, VXLAN, dport=6633) # New IANA assigned port for use with NSH
70 bind_layers(UDP, VXLAN, dport=8472) # Linux implementation port
71 bind_layers(UDP, VXLAN, sport=4789)
72 bind_layers(UDP, VXLAN, sport=4790)
73 bind_layers(UDP, VXLAN, sport=6633)
74 bind_layers(UDP, VXLAN, sport=8472)
76 bind_layers(UDP, VXLAN, sport=4789, dport=4789)
78 bind_layers(VXLAN, Ether)
79 bind_layers(VXLAN, IP, NextProtocol=1)
80 bind_layers(VXLAN, IPv6, NextProtocol=2)
81 bind_layers(VXLAN, Ether, flags=4, NextProtocol=0)
82 bind_layers(VXLAN, IP, flags=4, NextProtocol=1)
83 bind_layers(VXLAN, IPv6, flags=4, NextProtocol=2)
84 bind_layers(VXLAN, Ether, flags=4, NextProtocol=3)