A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
-bash: ping: command not found #Debian apt-get install inetutils-ping #Ubuntu apt-get install inetutils-ping #Alpine apk add iputils #Arch Linux pacman -S iputils #Kali Linux apt-get install inetutils-ping #CentOS yum install iputils #Fedora dnf install iputils #Raspbian apt-get install inetutils-ping #Docker docker run cmd.cat/ping ping
ping
ping 实用程序使用 ICMP 协议的强制性 ECHO_REQUEST 数据报来从主机或网关引出 ICMP ECHO_RESPONSE。 ECHO_REQUEST 数据报(“ping”)具有 IP 和 ICMP 报头,其后是 struct timeval
,然后是任意数量的用于填充数据包的 “pad” 字节。
ping [-LRUbdfnqrvVaAB] [-c count] [-m mark] [-i interval] [-l preload] [-p pattern] [-s packetsize] [-t ttl] [-w deadline] [-F flowlabel] [-I interface] [-M hint] [-N nioption] [-Q tos] [-S sndbuf] [-T timestamp option] [-W timeout] [hop ...] destination
-d:使用 Socket 的 SO_DEBUG 功能; -c<完成次数>:设置完成要求回应的次数; -f:极限检测; -i<间隔秒数>:指定收发信息的间隔时间; -I<网络界面>:使用指定的网络界面送出数据包; -l<前置载入>:设置在送出要求信息之前,先行发出的数据包; -n:只输出数值; -p<范本样式>:设置填满数据包的范本样式; -q:不显示指令执行过程,开头和结尾的相关信息除外; -r:忽略普通的 Routing Table,直接将数据包送到远端主机上; -R:记录路由过程; -s<数据包大小>:设置数据包的大小; -t<存活数值>:设置存活数值TTL的大小; -v:详细显示指令的执行过程。
目的主机:指定发送ICMP报文的目的主机。
[root@localhost ~] $ ping baidu.com PING baidu.com (220.181.38.148) 56(84) bytes of data. 64 bytes from 220.181.38.148 (220.181.38.148): icmp_seq=1 ttl=49 time=3.10 ms 64 bytes from 220.181.38.148 (220.181.38.148): icmp_seq=2 ttl=49 time=3.17 ms 64 bytes from 220.181.38.148 (220.181.38.148): icmp_seq=3 ttl=49 time=3.17 ms ^C --- baidu.com ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2003ms rtt min/avg/max/mdev = 3.108/3.151/3.173/0.030 ms
ping google.com -c 1
对主机 google.com 进行一次 Ping 操作。 输出将类似于以下内容:
PING google.com(204.228.150.3)56(84)字节的数据。 来自www.google.com(204.228.150.3)的64个字节:icmp_seq = 1 ttl = 63时间= 0.267 ms --- google.com ping统计--- 传输1个数据包,接收1个数据包,丢包0%,时间0ms rtt最小值/平均值/最大值/ mdev = 0.267 / 0.267 / 0.267 / 0.000毫秒
其他 ping 命令实例:
ping -c 10 -i 0.5 192.168.120.206 #时间间隔和次数限制的ping ping -b 192.168.120.1 #ping 网关 #极限 PING 测试: [root@CommandNotFound ~]# ping -c 1000 -f baidu.com PING baidu.com (39.156.69.79) 56(84) bytes of data. --- baidu.com ping statistics --- 1000 packets transmitted, 1000 received, 0% packet loss, time 3229ms rtt min/avg/max/mdev = 3.114/3.208/6.920/0.152 ms, ipg/ewma 3.232/3.194 ms