How can we calculate Round Trip Time (RTT) from a passive traffic manually using the formula? I can obtain RTT values using tcptrace but it takes ONLy discrete values as it is shown in the graph below. For example, using tcptrace, we can get RTT values as in the following (the first column is time in seconds and the second column is RTT in milli seconds (ms)).
It seems TCP takes only the real values for RTT. Is there any way to export the values returned from tcp.analysis.ack_rtt to a file and apply the formula for an RTT? I tried with statistics -> RTT StreamGraph -> RTT Graph where I can plot the RTT graph but i can't export the values (X and Y coordinates as in the previous format from tcptrace) to a file. When we plot RTT in Wireshark, it shows the values as continuous but it doesn't seem possible to export the values to a file. Or is there anyway to extract these values using tcpdump or any other tool? asked 27 Jun '17, 02:27 armodes |
One Answer:
You could probably use tshark to do something like that, printing relative time of each frame with the ACK_RTT as columns, e.g.
redirecting that output to a file should be simple enough. answered 27 Jun '17, 07:10 Jasper ♦♦ |
Thank you so much Jasper. How about if we want to calculate SRTT (Smoothed Round Trip Time) from this?