This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

udp packet loss

0

how do i find packet loss in this udp packets can i merge 2 files and then with compare option and ip.id filter,is it possible?Thanks

asked 09 May '13, 23:15

kishan%20pandey's gravatar image

kishan pandey
221282936
accept rate: 28%


One Answer:

0

You can do this:

tshark -ni file_1.pcap -T fields -e ip.id -e frame.number | sort > file_1.txt
tshark -ni file_2.pcap -T fields -e ip.id -e frame.number | sort > file_2.txt

Then compare file_1.txt and file_2.txt (diff on Unix or WinMerge on Windows).

Regards
Kurt

answered 10 May '13, 02:26

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%