<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>https://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fping</id>
	<title>Comandos de la terminal/ping - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Comandos_de_la_terminal%2Fping"/>
	<link rel="alternate" type="text/html" href="https://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/ping&amp;action=history"/>
	<updated>2026-04-04T06:37:29Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/ping&amp;diff=128448&amp;oldid=prev</id>
		<title>Rrc en 18:47 15 abr 2017</title>
		<link rel="alternate" type="text/html" href="https://wiki.cabal.mx/index.php?title=Comandos_de_la_terminal/ping&amp;diff=128448&amp;oldid=prev"/>
		<updated>2017-04-15T18:47:43Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
* [[:#ping -h| ping -h]]&lt;br /&gt;
* [[:#ping -V| ping -V]]&lt;br /&gt;
* [[:#ping -i secs IP| ping -i secs IP]]&lt;br /&gt;
* [[:#ping 0| ping 0]]&lt;br /&gt;
* [[:#ping -c NumPacks IP| ping -c NumPacks IP]]&lt;br /&gt;
* [[:#ping -c 1 IP| ping -c 1 IP]]&lt;br /&gt;
* [[:#ping -c NumPacks -q IP| ping -c NumPacks -q IP]]&lt;br /&gt;
* [[:#ping -f IP| ping -f IP]]&lt;br /&gt;
* [[:#ping -s NumBytes IP| ping -s NumBytes IP]]&lt;br /&gt;
&lt;br /&gt;
== ping ==&lt;br /&gt;
=== ping -h ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@tanio ~]$ ping -h&lt;br /&gt;
Usage: ping [-aAbBdDfhLnOqrRUvV] [-c count] [-i interval] [-I interface]&lt;br /&gt;
            [-m mark] [-M pmtudisc_option] [-l preload] [-p pattern] [-Q tos]&lt;br /&gt;
            [-s packetsize] [-S sndbuf] [-t ttl] [-T timestamp_option]&lt;br /&gt;
            [-w deadline] [-W timeout] [hop1 ...] destination&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping -V ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@tanio ~]$ ping -V&lt;br /&gt;
ping utility, iputils-s20121221&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping -i secs IP ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@tanio ~]$ ping -i 5 www.yahoo.com&lt;br /&gt;
PING fd-fp3.wg1.b.yahoo.com (98.139.183.24) 56(84) bytes of data.&lt;br /&gt;
64 bytes from ir2.fp.vip.bf1.yahoo.com (98.139.183.24): icmp_seq=1 ttl=52 time=95.1 ms&lt;br /&gt;
64 bytes from ir2.fp.vip.bf1.yahoo.com (98.139.183.24): icmp_seq=2 ttl=52 time=95.7 ms&lt;br /&gt;
64 bytes from ir2.fp.vip.bf1.yahoo.com (98.139.183.24): icmp_seq=3 ttl=52 time=95.0 ms&lt;br /&gt;
64 bytes from ir2.fp.vip.bf1.yahoo.com (98.139.183.24): icmp_seq=4 ttl=52 time=95.3 ms&lt;br /&gt;
64 bytes from ir2.fp.vip.bf1.yahoo.com (98.139.183.24): icmp_seq=5 ttl=52 time=94.8 ms&lt;br /&gt;
^C&lt;br /&gt;
--- fd-fp3.wg1.b.yahoo.com ping statistics ---&lt;br /&gt;
5 packets transmitted, 5 received, 0% packet loss, time 20021ms&lt;br /&gt;
rtt min/avg/max/mdev = 94.883/95.242/95.777/0.496 ms&lt;br /&gt;
&lt;br /&gt;
[rrc@tanio ~]$  ping -i 0.1 www.yahoo.com&lt;br /&gt;
PING fd-fp3.wg1.b.yahoo.com (98.139.180.149) 56(84) bytes of data.&lt;br /&gt;
ping: cannot flood; minimal interval, allowed for user, is 200ms&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping 0 ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@tanio ~]$  ping 0&lt;br /&gt;
PING 0 (127.0.0.1) 56(84) bytes of data.&lt;br /&gt;
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.029 ms&lt;br /&gt;
64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.032 ms&lt;br /&gt;
64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.032 ms&lt;br /&gt;
^C&lt;br /&gt;
--- 0 ping statistics ---&lt;br /&gt;
3 packets transmitted, 3 received, 0% packet loss, time 1999ms&lt;br /&gt;
rtt min/avg/max/mdev = 0.029/0.031/0.032/0.001 ms&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping -c NumPacks IP ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@tanio ~]$ ping -c 5 www.google.com&lt;br /&gt;
PING www.google.com (189.247.152.178) 56(84) bytes of data.&lt;br /&gt;
64 bytes from ext-189-247-152-178.uninet.net.mx (189.247.152.178): icmp_seq=1 ttl=61 time=14.7 ms&lt;br /&gt;
64 bytes from ext-189-247-152-178.uninet.net.mx (189.247.152.178): icmp_seq=2 ttl=61 time=16.8 ms&lt;br /&gt;
64 bytes from ext-189-247-152-178.uninet.net.mx (189.247.152.178): icmp_seq=3 ttl=61 time=15.7 ms&lt;br /&gt;
64 bytes from ext-189-247-152-178.uninet.net.mx (189.247.152.178): icmp_seq=4 ttl=61 time=13.4 ms&lt;br /&gt;
64 bytes from ext-189-247-152-178.uninet.net.mx (189.247.152.178): icmp_seq=5 ttl=61 time=16.1 ms&lt;br /&gt;
&lt;br /&gt;
--- www.google.com ping statistics ---&lt;br /&gt;
5 packets transmitted, 5 received, 0% packet loss, time 4006ms&lt;br /&gt;
rtt min/avg/max/mdev = 13.463/15.386/16.863/1.182 ms&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping -c 1 IP ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[root@tanio ~]# ping -c 1 www.cfe.gob.mx&lt;br /&gt;
PING r833g.x.incapdns.net (192.230.66.220) 56(84) bytes of data.&lt;br /&gt;
64 bytes from 192.230.66.220.ip.incapdns.net (192.230.66.220): icmp_seq=1 ttl=57 time=44.1 ms&lt;br /&gt;
&lt;br /&gt;
--- r833g.x.incapdns.net ping statistics ---&lt;br /&gt;
1 packets transmitted, 1 received, 0% packet loss, time 0ms&lt;br /&gt;
rtt min/avg/max/mdev = 44.189/44.189/44.189/0.000 ms&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping -c NumPacks -q IP ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;[root@tanio ~]# ping -c 5 -q www.cfe.gob.mx &lt;br /&gt;
PING r833g.x.incapdns.net (192.230.66.220) 56(84) bytes of data.&lt;br /&gt;
&lt;br /&gt;
--- r833g.x.incapdns.net ping statistics ---&lt;br /&gt;
5 packets transmitted, 5 received, 0% packet loss, time 4006ms&lt;br /&gt;
rtt min/avg/max/mdev = 43.972/44.592/45.016/0.464 ms&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping -f IP ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@tanio ~]$ ping -f localhost&lt;br /&gt;
PING localhost.localdomain (127.0.0.1) 56(84) bytes of data.&lt;br /&gt;
ping: cannot flood; minimal interval, allowed for user, is 200ms&lt;br /&gt;
[rrc@tanio ~]$ su -&lt;br /&gt;
Password: &lt;br /&gt;
[root@tanio ~]# ping -f localhost&lt;br /&gt;
PING localhost.localdomain (127.0.0.1) 56(84) bytes of data.&lt;br /&gt;
^C &lt;br /&gt;
--- localhost.localdomain ping statistics ---&lt;br /&gt;
311656 packets transmitted, 311656 received, 0% packet loss, time 5133ms&lt;br /&gt;
rtt min/avg/max/mdev = 0.002/0.003/1.075/0.005 ms, ipg/ewma 0.016/0.003 ms&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ping -s NumBytes IP ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
[root@tanio ~]# ping -s 123 -c 5 www.yahoo.com&lt;br /&gt;
PING fd-fp3.wg1.b.yahoo.com (98.139.180.149) 123(151) bytes of data.&lt;br /&gt;
131 bytes from ir1.fp.vip.bf1.yahoo.com (98.139.180.149): icmp_seq=1 ttl=54 time=95.3 ms&lt;br /&gt;
131 bytes from ir1.fp.vip.bf1.yahoo.com (98.139.180.149): icmp_seq=2 ttl=54 time=95.2 ms&lt;br /&gt;
131 bytes from ir1.fp.vip.bf1.yahoo.com (98.139.180.149): icmp_seq=3 ttl=54 time=95.5 ms&lt;br /&gt;
131 bytes from ir1.fp.vip.bf1.yahoo.com (98.139.180.149): icmp_seq=4 ttl=54 time=147 ms&lt;br /&gt;
131 bytes from ir1.fp.vip.bf1.yahoo.com (98.139.180.149): icmp_seq=5 ttl=54 time=95.7 ms&lt;br /&gt;
&lt;br /&gt;
--- fd-fp3.wg1.b.yahoo.com ping statistics ---&lt;br /&gt;
5 packets transmitted, 5 received, 0% packet loss, time 4005ms&lt;br /&gt;
rtt min/avg/max/mdev = 95.283/105.807/147.169/20.684 ms&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comandos de la terminal]]&lt;/div&gt;</summary>
		<author><name>Rrc</name></author>
		
	</entry>
</feed>