Comparing Two Wireshark Capture Files

I want to use iperf to send some packets and receive them on the client (which could go through different OSI level processes). I want to check that the sent packets match the received ones.

  • Can I use Wireshark to capture threads?
  • Is there any way to compare them with wirehark?

Or is there any other better way to do this?

+5
source share
2 answers
  • yes, you can, but it will be difficult, since the goal of iPerf is to send a lot of packets, the capture will include a large stream.
  • , . doc [1] : .

NB: , , , Wireshark.

[1] : http://www.wireshark.org/docs/wsug_html_chunked/ChStatCompareCaptureFiles.html

+1

Wireshark , ( ):

File -> Export -> as "Plain Text" file:
    - Check "Selected packet only"
    - Check "Packet summary line"
    - Check "Packet details: All expanded"

diff gnu diff, WinMerge gvimdiff.

+1

All Articles