I'm desperately trying to determine which clients (IP) are causing a large amount of lag to my server. I have been able to manually scan packet data with IP filters to determine which ones have a large bad packets / total packet ratio, but this is a very labor intensive process. Is there a way to display all clients simultaneously and their "bad" packets / their total packets ratio? Thanks in advance! Michael asked 17 Sep '11, 02:32 mikebriggs2k |
One Answer:
I'm not sure what "you" mean by bad packets, but I assume you are able to create a display filter that will match only the bad packets. In that case, there are two ways of doing this. In Wireshark:
In tshark:The steps are basically the same, but now use the following to commands to create the output:
This assumes the destination address is always the server-ip as tshark will create conversation overviews, not endpoint overviews. answered 17 Sep '11, 03:32 SYN-bit ♦♦ |