From a given pcap
file how do I filter mac frames and display the result in the terminal window?
So far, I have the following code that iterates through all frames
import pyshark
cap = pyshark.FileCapture('filename.pcap')
for pkt in cap:
print pkt
I would like to filter out the mac frames.