博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ping命令
阅读量:5734 次
发布时间:2019-06-18

本文共 1447 字,大约阅读时间需要 4 分钟。

ping侦测两主机是否连通

选项:
-c 数值:ping的次数
-n:输出数据不进行ip与主机名反查
-s 数值:指定ICMP数据包大小,默认64bytes
-t 数值:TTL的数值,外网默认255,局域网默认64
-W 数值:等待响应对方主机的秒数

[root@www ~]# ping baidu.com

PING baidu.com (111.13.101.208) 56(84) bytes of data.
64 bytes from 111.13.101.208: icmp_seq=1 ttl=128 time=4.41 ms
64 bytes from 111.13.101.208: icmp_seq=2 ttl=128 time=4.61 ms
[root@www ~]# ping 192.168.146.130
PING 192.168.146.130 (192.168.146.130) 56(84) bytes of data.
64 bytes from 192.168.146.130: icmp_seq=1 ttl=64 time=3.32 ms
64 bytes from 192.168.146.130: icmp_seq=2 ttl=64 time=0.195 ms

[root@www ~]# ping baidu.com -c 2

PING baidu.com (111.13.101.208) 56(84) bytes of data.
64 bytes from 111.13.101.208: icmp_seq=1 ttl=128 time=4.24 ms
64 bytes from 111.13.101.208: icmp_seq=2 ttl=128 time=4.35 ms

--- baidu.com ping statistics ---

2 packets transmitted, 2 received, 0% packet loss, time 2025ms
rtt min/avg/max/mdev = 4.246/4.298/4.350/0.052 ms

[root@www ~]# ping baidu.com -s 128

PING baidu.com (220.181.57.216) 128(156) bytes of data.
136 bytes from 220.181.57.216: icmp_seq=1 ttl=128 time=3.91 ms
136 bytes from 220.181.57.216: icmp_seq=2 ttl=128 time=3.42 ms
136 bytes from 220.181.57.216: icmp_seq=3 ttl=128 time=3.31 ms
136 bytes from 220.181.57.216: icmp_seq=4 ttl=128 time=3.53 ms

--- baidu.com ping statistics ---

4 packets transmitted, 4 received, 0% packet loss, time 4949ms
rtt min/avg/max/mdev = 3.310/3.545/3.913/0.230 ms

转载于:https://blog.51cto.com/12107790/2104970

你可能感兴趣的文章
webpack 4.0 中 clean-webpack-plugin 的使用
查看>>
数据库神器:Navicat Premium
查看>>
WPF
查看>>
Best website for Photogrammetry
查看>>
中文词频统计
查看>>
POJ 2236 Wireless Network (并查集)
查看>>
python分类
查看>>
linux 中常见的压缩和解压缩的命令
查看>>
GitBlit (1)-- 在linux 安装 GitBlit 并运行
查看>>
Windows与Linux之间的文件自动同步
查看>>
topcoder srm 714 div1
查看>>
20160215
查看>>
mxnet导入图像数据
查看>>
程序是如何执行的(一)a=a+1
查看>>
go : 结构
查看>>
【Python第五篇】Python面向对象(初级篇)
查看>>
innobackupex参数之 --throttle 限速这个值设置多少合理 原创
查看>>
18 已知下面的字符串是通过RANDOM随机数变量md5sum|cut-c 1-8截取后的结果
查看>>
BZOJ - 3578: GTY的人类基因组计划2
查看>>
理解WebKit和Chromium(电子书)
查看>>