I found this --> link text and I would like to use tshark for spitting bandwidth/IP on the command line. Is this possible? asked 02 Mar '16, 03:13 altdrugzgene |
One Answer:
Maybe you should also look at the answer to this question. It says that it is currently not possible to sort the output list of e.g. answered 02 Mar '16, 03:42 sindy |
Thanks sindy. I am doing 2 separate analyses at the moment one using the output from the TCP flows and one counting the bandwidth per intervals. However I cant find a way to correlate these two which is sad :P Anyways thanks
I'm not sure I've understood what you mean by "counting the bandwidth per intervals", but you can use a so-called "read" filter like
-2 -R frame.time_relative >= t1 and frame.time_relative < t2
to get the statistics only for a time slice t1..t2 of the capture file. You can not use-Y
for the purpose as it does not affect the statistics calculation. Currently,-R
can only be used together with-2
, so the-2
is there only as a "-R
enabler", you do not need two-pass handling to calculate statistics.