npatel
npatel

Reputation: 1111

Removing duplicate packets from pcap

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

Answers (1)

nelson.t.cunha
nelson.t.cunha

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

Related Questions