I am using wireshark 1.6.11 on Fedora 17. I can see summary of packets grouped by their size from statistics --> packet lengths --> create state (without any filter) Is there a way to get this on command line or any script that you might be aware of ? I tried using various options with -z but no luck till now. Thanks in advance. asked 28 Nov '12, 01:23 nehaldattani edited 28 Nov '12, 01:23 |
One Answer:
with built-in commands:
if your distribution supports gsl-histogram:
Please check the man page of gsl-histogram for the options. To install gsl-histogram, I had to run this command on Ubuntu: If that's not exactly what you need, you could write a short script (perl/python). Regards answered 28 Nov '12, 03:27 Kurt Knochner ♦ edited 28 Nov '12, 03:28 |
I got what I wanted. I think using sum with awk will give me the values in % . but thank you for pointing me in right direction.