how can we find the packet loss and time delay using wireshark asked 06 Jun '14, 03:10 teju |
One Answer:
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 answered 09 Jun '14, 10:25 Kurt Knochner ♦ |
script means on what way we have to develop that.
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..).