aboutsummaryrefslogtreecommitdiff
path: root/files/ru/glossary/round_trip_time_(rtt)
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:51:05 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:51:05 +0100
commitc058fa0fb22dc40ef0225b21a97578cddd0aaffa (patch)
treedf20f8b4c724b61cb9c34cdb450a7ac77d690bd0 /files/ru/glossary/round_trip_time_(rtt)
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-c058fa0fb22dc40ef0225b21a97578cddd0aaffa.tar.gz
translated-content-c058fa0fb22dc40ef0225b21a97578cddd0aaffa.tar.bz2
translated-content-c058fa0fb22dc40ef0225b21a97578cddd0aaffa.zip
unslug ru: move
Diffstat (limited to 'files/ru/glossary/round_trip_time_(rtt)')
-rw-r--r--files/ru/glossary/round_trip_time_(rtt)/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/files/ru/glossary/round_trip_time_(rtt)/index.html b/files/ru/glossary/round_trip_time_(rtt)/index.html
new file mode 100644
index 0000000000..f81a2077b9
--- /dev/null
+++ b/files/ru/glossary/round_trip_time_(rtt)/index.html
@@ -0,0 +1,28 @@
+---
+title: Round Trip Time (RTT)
+slug: Словарь/Round_Trip_Time_(RTT)
+translation_of: Glossary/Round_Trip_Time_(RTT)
+---
+<p><strong>Время приема-передачи</strong> (англ. Round Trip Time, RTT) - это время, которое требуется для отправки пакета данных в пункт назначения, плюс время, которое требуется для подтверждения того, что этот пакет был получен обратно. RTT между сетью и сервером может быть определен с помощью команды <code>ping</code>.</p>
+
+<div>
+<pre class="brush: unix">$ ping google.com
+PING google.com (216.58.194.174): 56 data bytes
+64 bytes from 216.58.194.174: icmp_seq=0 ttl=55 time=25.050 ms
+64 bytes from 216.58.194.174: icmp_seq=1 ttl=55 time=23.781 ms
+64 bytes from 216.58.194.174: icmp_seq=2 ttl=55 time=24.287 ms
+64 bytes from 216.58.194.174: icmp_seq=3 ttl=55 time=34.904 ms
+64 bytes from 216.58.194.174: icmp_seq=4 ttl=55 time=26.119 ms
+--- google.com ping statistics ---
+5 packets transmitted, 5 packets received, 0.0% packet loss
+round-trip min/avg/max/stddev = 23.781/26.828/34.904/4.114 ms</pre>
+
+<p>В приведенном выше примере среднее время приема-передачи, как показано в последней строке, равно 26,8 мс.</p>
+</div>
+
+<h2 id="См._также">См. также</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Glossary/time_to_first_byte">Time to First Byte (TTFB)</a></li>
+ <li><a href="/en-US/docs/Glossary/Latency">Latency</a></li>
+</ul>