PDA

View Full Version : Question Latency/RTT



Weiland86
2014-06-25, 11:25 PM
Hello mates,

Can someone explain what are the diferrences between this two terms?


Thanks in advance.

auto_art
2014-06-26, 12:39 AM
in brief.

latency= time taken by a packet from tx(originating point) to rx(terminating point) ---in a single direction!

RTT= round trip time- time taken by a packet from tx to rx and back to tx

Weiland86
2014-06-26, 02:02 AM
Thanks i think that there was something else in between

PD i am trying to thanks your post but it is not possible i do not why :/


in brief.

latency= time taken by a packet from tx(originating point) to rx(terminating point) ---in a single direction!

RTT= round trip time- time taken by a packet from tx to rx and back to tx

electron
2014-06-26, 02:56 AM
Hi,

First of all both RTT and Latency are indexes to measure packet delay. Latency defined as a single direction but RTT is duplex (Round Trip Time).


Cheers
Hello mates,

Can someone explain what are the diferrences between this two terms?


Thanks in advance.

ivankokorin
2014-06-26, 03:44 PM
Some interesting

*****
What is your current latency or round trip time reported by a ping test with payload?

Run this command:
ping –n 50 –l 512 <ipaddress>
This will send 50 packets of size 512 bytes to the ip address provided. The resulting summary information at the end of the ping test will provide an average RTT which can then be used to determine the Maximum Theoretical Throughput.
As an example:
When using a Windows client with a 256KB TCPSendReceive window (RHA Default TCP Send/Recv Window is 256K) over a 100 Mbps WAN with a 50 ms delay/RTT, the maximum throughput for a single TCP connection would be:
Max. throughput = 256 KB * (8 bits/byte) / 0.050 sec = 40,960 Kbps = 40.960 Mbps – This is less than your available bandwidth which means multiple streams would help.
If you assume 72 ms delay/RTT:
Max. throughput = 256 KB * (8 bits/byte) / 0.072 sec = 28,444 Kbps = 28.44 Mbps – This is less than your available bandwidth which means multiple streams would help.
If you assume a 10 ms delay/RTT:

Max. throughput = 256 KB * (8 bits/byte) / 0.010 sec = 204,800 Kbps = 204.80 Mbps – This exceeds available throughout and more streams would not help.

*****