I have tcpdump and scapy running sniff()
on the same interface. There is a scp file transfer happening.
tcpdump: I see the tcp packets with the seq and acks going over.
scapy sniff()
returned list: All I see in each packet summary() is (MAC addr1 ) > (Mac addr 2) (0x800) / Raw
. Even in the packet .show()
, all I see is a link layer stuff with "## [ Ethernet ] ##", src and dst.
I ran this with a timeout of 30 so I know I would capture the scp transfer of an empty text file so I know I timed it right.
There are definitely TCP packets going over, but none of them are being detected. Is there an issue with Scapy?
Thank you
sniff()
and of apkt.show()
. – Pierre