Hello I captured file download logs in wireshark. Now I want calculate this metrics :
I don't find this metrics values in wireshark. How I can calculate this metrics by my TCP logs in wireshark ? please help me completely , because I am beginner in wireshark. Thank You asked 08 Apr '16, 13:37 abdorreza edited 09 Apr '16, 03:58 grahamb ♦ |
One Answer:
Hi, I'll try to give you some guidance. I'll assume that you are using Wireshark 2. TCP Throughput I'm not completely sure what you mean by this but if you want to know the data rate on a particular TCP connection you can do this by selecting a particular TCP stream. As an example I'll use TCP Stream 0 to an SMB file server (on TCP Port 445):
Capacity Not sure what you mean. You could measure apparent capacity by plotting Bits/s in the Tx and Rx directions and looking for the maximum value. Round Trip Time I think most people measure this by looking at the delta between a SYN and a SYN/ACK. You can do this by sorting the trace by tcp.stream, filtering for packets with the SYN flag set and adding the column Time delta from previously displayed frame. Export the Summary Line into CSV and then fiddling around with the CSV in Excel. A much quicker way is to use the TRANSUM plugin - see http://www.tribelab.com/transum:
I'll deal with the remaining points in little later - have to get off the train I'm on. answered 11 Apr '16, 07:39 PaulOfford Download Time, Response Time, Time to Complete Task Many of the dissectors include response time values. Look out for values in headers such as Time from request. To study I would add the value as a column and then export to CSV, although you can probably also do a lot with the built-in graphing. TRANSUM is also a big help here and the TRANSUM User Guide gives a lot of detail about extracting response time information from Wireshark traces. (11 Apr '16, 07:45) PaulOfford |
HELP me please !