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

how can we find the packet loss and time delay using wireshark

0

how can we find the packet loss and time delay using wireshark

asked 06 Jun '14, 03:10

teju's gravatar image

teju
11223
accept rate: 0%


One Answer:

0

By capturing at two places, one near the client and one near the server.

Then compare the two capture files. Unfortunately there is no functionality in Wireshark that does that kind of comparison in a fully automatic way. So, you'll have to do it manually or use a script.

Regards
Kurt

answered 09 Jun '14, 10:25

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

script means on what way we have to develop that.

(09 Jun '14, 22:29) teju

script means, you will print the content of the two capture files with tshark (see man page of tshark - option -e) and then you will process the output with a script in your preferred scripting language (perl, python, etc..).

(10 Jun '14, 03:30) Kurt Knochner ♦