Reputation: 1111
I want to analyze packet capture file, but it has some duplicate packets.
I would like to know if there is any way (command line option) using which I can discard duplicate packets and make new pcap with all unique packets.
Upvotes: 1
Views: 9127
Reputation: 137
You can use editcap which is part of the Wireshark package with the -d flag. More info here: http://www.wireshark.org/docs/man-pages/editcap.html#d
Upvotes: 2