tcpdump overlapping packets
Hello everyone,
I am making some 30 seconds tcp measurements and I'm capturing the packets using tcpdump. When I open the pcap-file I notice that packet 11709 was captured at time 7.557846 seconds after tcpdump start whereas packet 11710 was captured after 188.463532 seconds. This can not be true as my measuremets is only 30 seconds long and I'm really capturing only the traffic between my server and my client. On the other side packet 12445 has a time of 188.935306 seconds whereas packet 12446 the time of 8.031106 seconds. Do you have any Idea what the problem could be?
the pcap file: https://drive.google.com/file/d/1cUmX...
The file is not available for download. Suggest you make access 'Public' for others to look at.
Are you reading the file on an other machine than where it was captured?
Is the time correct when you read the file on the capture machine itself with
tcpdump -n -ttttt -r file
?This sounds like a big endian / little endian swap. ( https://wiki.wireshark.org/Developmen... )
here is the new link, I hope this time will work https://drive.google.com/file/d/1cUmX...
@Andre I capture the pcap file on an other device using the following command: tcpdump -n -i eno1 -w server.pcap -s 66 "tcp port 5201"
then I import this file via SSH to my computer
Is the outputted time correct when you run this command on the 'other device'?