I'm having a problem with one of our customers' embedded computers. They seem to discard some network packets which they should not. I can capture the TCP communication from a managed switch outside the box using Wireshark and I can probably also manage to capture all data from within using tcpdump. I could load both dumps into Wireshark and compare them myself. But is there an easier way to only see the differences between two such dump files?
Asked
Active
Viewed 1.4k times
2 Answers
0
Open both files with vimdiff in hexadecimal mode:
$ vimdiff file1.pcap file2.pcap
Once in vim, switch each window to hexadecimal mode:
:%!xxd
Diego Pino
- 101

