I need to generate and STP traffic using scapy and when I visualize it via wireshark
I get an output similar to the caption shown below:
when I run this code:
from scapy.all import STP
import scapy
from scapy.all import *
data='STP'
sendp(Ether(dst="01:80:c2:00:00:00")/LLC(dsap=0xaa, ssap=0xaa)/STP(bpdutype=0x00, bpduflags=0x01, portid=0x8002)/data, iface="eth1", count=200)
this is my wireshark output
I don't know how to change the organization code to 00:00:0c, because I believe it's the one who is making this problem
you forgot the layer SNAP
here are 2 exemples taht helped me debug:
for both exemples:
exemple number1:
output:
Do you see how scapy decode a layer named SNAP right after the LLC layer? that makes the decoding all wrong after
so let's add it, so all the decoding will true:
exemple 2: add the SNAP layer
output:
it seems to look a lot better. I didn't try with wireshark, but at the least scapy seems happy with it.