Home
last modified time | relevance | path

Searched refs:Dot1Q (Results 1 – 5 of 5) sorted by relevance

/external/scapy/scapy/layers/
Dl2.py229 class Dot1Q(Packet): class
237 if isinstance(other,Dot1Q):
259 conf.neighbor.register_l3(Ether, Dot1Q, l2_register_l3)
411 class Dot1AD(Dot1Q):
418 bind_layers( Ether, Dot1Q, type=33024)
421 bind_layers( Dot1AD, Dot1Q, type=0x8100)
422 bind_layers( Dot1Q, Dot1AD, type=0x88a8)
426 bind_layers( CookedLinux, Dot1Q, proto=33024)
431 bind_layers( GRE, Dot1Q, proto=33024)
440 bind_layers( SNAP, Dot1Q, code=33024)
/external/scapy/scapy/contrib/
Dspbm.py41 from scapy.layers.l2 import Ether, Dot1Q
55 bind_layers(Dot1Q, SPBM, type=0x88e7)
Dlldp.py46 from scapy.layers.l2 import Ether, Dot1Q, bind_layers, \
140 while under_layer and isinstance(under_layer, Dot1Q):
713 bind_layers(Dot1Q, LLDPDU, type=LLDP_ETHER_TYPE)
Dmacsec.py17 from scapy.layers.l2 import Ether, Dot1AD, Dot1Q
214 bind_layers( Dot1Q, MACsec, type=ETH_P_MACSEC)
/external/scapy/doc/scapy/
Dusage.rst1216 >>> send( Ether(dst=clientMAC)/Dot1Q(vlan=1)/Dot1Q(vlan=2)
1337 >>> sendp(Ether()/Dot1Q(vlan=2)/Dot1Q(vlan=7)/IP(dst=target)/ICMP())