Linux系统的ping命令是常用的网络命令,它通常用来测试与目标主机的连通性,我们经常会说“ping一下某机器,看是不是开着”、不能打开网页时会说“你先ping网关地址192.168.1.1试试”。它通过发送ICMP ECHO_REQUEST数据包到网络主机(send ICMP ECHO_REQUEST to network hosts),并显示响应情况,这样我们就可以根据它输出的信息来确定目标主机是否可访问(但这不是绝对的)。有些服务器为了防止通过ping探测到,通过防火墙设置了禁止ping或者在内核参数中禁止ping,这样就不能通过ping确定该主机是否还处于开启状态。

linux下的ping和windows下的ping稍有区别,linux下ping不会自动终止,需要按ctrl+c终止或者用参数-c指定要求完成的回应次数。

1.命令格式:

ping [参数] [主机名或IP地址]

2.命令功能:

ping命令用于:确定网络和各外部主机的状态;跟踪和隔离硬件和软件问题;测试、评估和管理网络。如果主机正在运行并连在网上,它就对回送信号进行响应。每个回送信号请求包含一个网际协议(IP)和 ICMP 头,后面紧跟一个 tim 结构,以及来填写这个信息包的足够的字节。缺省情况是连续发送回送信号请求直到接收到中断信号(Ctrl-C)。

ping 命令每秒发送一个数据报并且为每个接收到的响应打印一行输出。ping 命令计算信号往返时间和(信息)包丢失情况的统计信息,并且在完成之后显示一个简要总结。ping 命令在程序超时或当接收到 SIGINT 信号时结束。Host 参数或者是一个有效的主机名或者是因特网地址。

3.命令参数:

-d 使用Socket的SO_DEBUG功能。

-f  极限检测。大量且快速地送网络封包给一台机器,看它的回应。

-n 只输出数值。

-q 不显示任何传送封包的信息,只显示最后的结果。

-r 忽略普通的Routing Table,直接将数据包送到远端主机上。通常是查看本机的网络接口是否有问题。

-R 记录路由过程。

-v 详细显示指令的执行过程。

<p>-c 数目:在发送指定数目的包后停止。

-i 秒数:设定间隔几秒送一个网络封包给一台机器,预设值是一秒送一次。

-I 网络界面:使用指定的网络界面送出数据包。

-l 前置载入:设置在送出要求信息之前,先行发出的数据包。

-p 范本样式:设置填满数据包的范本样式。

-s 字节数:指定发送的数据字节数,预设值是56,加上8字节的ICMP头,一共是64ICMP数据字节。

-t 存活数值:设置存活数值TTL的大小。

4.使用实例:

实例1:ping的通的情况

命令:

ping 192.168.120.205

输出:

  1.  
  2. [root@localhost ~]# ping 192.168.120.205
  3. PING 192.168.120.205 (192.168.120.205) 56(84) bytes of data.
  4. 64 bytes from 192.168.120.205: icmp_seq=1 ttl=64 time=0.720 ms
  5. 64 bytes from 192.168.120.205: icmp_seq=2 ttl=64 time=0.181 ms
  6. 64 bytes from 192.168.120.205: icmp_seq=3 ttl=64 time=0.191 ms
  7. 64 bytes from 192.168.120.205: icmp_seq=4 ttl=64 time=0.188 ms
  8. 64 bytes from 192.168.120.205: icmp_seq=5 ttl=64 time=0.189 ms
  9.  
  10. --- 192.168.120.205 ping statistics ---
  11. 5 packets transmitted, 5 received, 0% packet loss, time 4000ms
  12. rtt min/avg/max/mdev = 0.181/0.293/0.720/0.214 ms
  13. [root@localhost ~]# 

说明:

实例2:ping不通的情况

命令:

ping 192.168.120.202

输出:

  1.  
  2. [root@localhost ~]# ping 192.168.120.202
  3. PING 192.168.120.202 (192.168.120.202) 56(84) bytes of data.
  4. From 192.168.120.204 icmp_seq=1 Destination Host Unreachable
  5. From 192.168.120.204 icmp_seq=2 Destination Host Unreachable
  6. From 192.168.120.204 icmp_seq=3 Destination Host Unreachable
  7. From 192.168.120.204 icmp_seq=4 Destination Host Unreachable
  8. From 192.168.120.204 icmp_seq=5 Destination Host Unreachable
  9. From 192.168.120.204 icmp_seq=6 Destination Host Unreachable
  10.  
  11. --- 192.168.120.202 ping statistics ---
  12. 8 packets transmitted, 0 received, +6 errors, 100% packet loss, time 7005ms
  13. , pipe 4
  14. [root@localhost ~]#

说明:

实例3:ping网关

命令:

ping -b 192.168.120.1

输出:

  1.  
  2. [root@localhost ~]# route
  3. Kernel IP routing table
  4. Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
  5. 192.168.120.0   *               255.255.255.0   U     0      0        0 eth0
  6. 192.168.0.0     192.168.120.1   255.255.0.0     UG    0      0        0 eth0
  7. 10.0.0.0        192.168.120.1   255.0.0.0       UG    0      0        0 eth0
  8. default         192.168.120.240 0.0.0.0         UG    0      0        0 eth0
  9. [root@localhost ~]# ping -192.168.120.1
  10. PING 192.168.120.1 (192.168.120.1) 56(84) bytes of data.
  11. 64 bytes from 192.168.120.1: icmp_seq=1 ttl=255 time=2.02 ms
  12. 64 bytes from 192.168.120.1: icmp_seq=2 ttl=255 time=1.83 ms
  13. 64 bytes from 192.168.120.1: icmp_seq=3 ttl=255 time=1.68 ms
  14. 64 bytes from 192.168.120.1: icmp_seq=4 ttl=255 time=1.98 ms
  15. 64 bytes from 192.168.120.1: icmp_seq=5 ttl=255 time=1.88 ms
  16.  
  17. --- 192.168.120.1 ping statistics ---
  18. 5 packets transmitted, 5 received, 0% packet loss, time 4000ms
  19. rtt min/avg/max/mdev = 1.682/1.880/2.020/0.129 ms

说明:

实例4:ping指定次数

命令:

ping -c 10 192.168.120.206

输出:

  1.  
  2. [root@localhost ~]# ping -10 192.168.120.206
  3. PING 192.168.120.206 (192.168.120.206) 56(84) bytes of data.
  4. 64 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=1.25 ms
  5. 64 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.260 ms
  6. 64 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.242 ms
  7. 64 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.271 ms
  8. 64 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=0.274 ms
  9. 64 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=0.295 ms
  10. 64 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.269 ms
  11. 64 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.270 ms
  12. 64 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.253 ms
  13. 64 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.289 ms
  14.  
  15. --- 192.168.120.206 ping statistics ---
  16. 10 packets transmitted, 10 received, 0% packet loss, time 9000ms
  17. rtt min/avg/max/mdev = 0.242/0.367/1.251/0.295 ms
  18. [root@localhost ~]# 

说明:

实例5:时间间隔和次数限制的ping

命令:

ping -c 10 -i 0.5 192.168.120.206

输出:

  1.  
  2. [root@localhost ~]# ping -10 -0.5 192.168.120.206
  3. PING 192.168.120.206 (192.168.120.206) 56(84) bytes of data.
  4. 64 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=1.24 ms
  5. 64 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.235 ms
  6. 64 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.244 ms
  7. 64 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.300 ms
  8. 64 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=0.255 ms
  9. 64 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=0.264 ms
  10. 64 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.263 ms
  11. 64 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.331 ms
  12. 64 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.247 ms
  13. 64 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.244 ms
  14.  
  15. --- 192.168.120.206 ping statistics ---
  16. 10 packets transmitted, 10 received, 0% packet loss, time 4499ms
  17. rtt min/avg/max/mdev = 0.235/0.362/1.241/0.294 ms
  18. [root@localhost ~]# ping -10 -0.01 192.168.120.206
  19. PING 192.168.120.206 (192.168.120.206) 56(84) bytes of data.
  20. 64 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=0.244 ms
  21. 64 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.195 ms
  22. 64 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.219 ms
  23. 64 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.204 ms
  24. 64 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=3.56 ms
  25. 64 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=1.93 ms
  26. 64 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.193 ms
  27. 64 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.193 ms
  28. 64 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.202 ms
  29. 64 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.211 ms
  30.  
  31. --- 192.168.120.206 ping statistics ---
  32. 10 packets transmitted, 10 received, 0% packet loss, time 90ms
  33. rtt min/avg/max/mdev = 0.193/0.716/3.564/1.080 ms
  34. [root@localhost ~]# 

说明:

实例6:通过域名ping公网上的站点

命令:

ping -c 5 www.58.com

输出:

  1.  
  2. peida-VirtualBox ~ # ping -c 5 www.58.com
  3. PING www.58.com (211.151.111.30) 56(84) bytes of data.
  4. 64 bytes from 211.151.111.30: icmp_req=1 ttl=49 time=14.7 ms
  5. 64 bytes from 211.151.111.30: icmp_req=2 ttl=49 time=16.4 ms
  6. 64 bytes from 211.151.111.30: icmp_req=3 ttl=49 time=15.2 ms
  7. 64 bytes from 211.151.111.30: icmp_req=4 ttl=49 time=14.6 ms
  8. 64 bytes from 211.151.111.30: icmp_req=5 ttl=49 time=19.9 ms
  9.  
  10. --- www.58.com ping statistics ---
  11. 5 packets transmitted, 5 received, 0% packet loss, time 20101ms
  12. rtt min/avg/max/mdev = 14.618/16.192/19.917/1.965 ms
  13. peida-VirtualBox ~ 

说明:

实例7:多参数使用

命令:

ping -i 3 -s 1024 -t 255 192.168.120.206

输出:

  1.  
  2. [root@localhost ~]# ping -3 -1024 -255 192.168.120.206
  3. PING 192.168.120.206 (192.168.120.206) 1024(1052) bytes of data.
  4. 1032 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=1.99 ms
  5. 1032 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.694 ms
  6. 1032 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.300 ms
  7. 1032 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.481 ms
  8. 1032 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=0.415 ms
  9. 1032 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=0.600 ms
  10. 1032 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.411 ms
  11. 1032 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.281 ms
  12. 1032 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.318 ms
  13. 1032 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.362 ms
  14. 1032 bytes from 192.168.120.206: icmp_seq=11 ttl=64 time=0.408 ms
  15. 1032 bytes from 192.168.120.206: icmp_seq=12 ttl=64 time=0.445 ms
  16. 1032 bytes from 192.168.120.206: icmp_seq=13 ttl=64 time=0.397 ms
  17. 1032 bytes from 192.168.120.206: icmp_seq=14 ttl=64 time=0.406 ms
  18. 1032 bytes from 192.168.120.206: icmp_seq=15 ttl=64 time=0.458 ms
  19.  
  20. --- 192.168.120.206 ping statistics ---
  21. 15 packets transmitted, 15 received, 0% packet loss, time 41999ms
  22. rtt min/avg/max/mdev = 0.281/0.531/1.993/0.404 ms
  23. [root@localhost ~]# 

说明:

-i 3 发送周期为 3秒 -s 设置发送包的大小为1024 -t 设置TTL值为 255

转自:http://www.cnblogs.com/peida/archive/2013/03/06/2945407.html

Linux中ping命令的更多相关文章

  1. 在Linux中输入命令时打错并按了enter

    今天在Linux中输入命令时,打错一个单词了,之后出现一串串的~,按ESC也没用, 并在底部出现:quit<enter> to exit vim 解决办法: 按几下 esc 确保 vim ...

  2. Linux中exec命令相关

    Linux中exec命令相关 exec和source都属于bash内部命令(builtins commands),在bash下输入man exec或man source可以查看所有的内部命令信息. b ...

  3. linux中touch命令参数修改文件的时间戳(转)

    linux中touch命令参数不常用,一般在使用make的时候可能会用到,用来修改文件时间戳,或者新建一个不存在的文件,以下是linux中touch命令参数的使用方法: touch [-acm][-r ...

  4. linux中执行命令权限不够怎样处理

    在linux中执行命令权限不够就要增加权限,先看遇到的情况 查看权限情况 那就赋予权限 执行命令

  5. Linux中监控命令top命令使用方法详解

    收集了两篇关于介绍Linux中监控命令top命令的详细使用方法的文章.总的来说,top命令主要用来查看Linux系统的各个进程和系统资源占用情况,在监控Linux系统性能方面top显得非常有用,下面就 ...

  6. Linux中date命令的各种实用方法--转载

    在linux环境中,不管是编程还是其他维护,时间是必不可少的,也经常会用到时间的运算,自己也曾经为时间的各种表示方法和如何修改时间而困惑,熟练运用date命令来表示自己想要表示的时间,肯定可以给自己的 ...

  7. linux中查找命令find、locate、whereis、which、type区别

    linux中查找命令find.locate.whereis.which.type区别 1. find Java代码 find是最常见和最强大的查找命令,你可以用它找到任何你想找的文件.与查询数据库(/ ...

  8. Linux中service命令和/etc/init.d/的关系

    Linux中service命令和/etc/init.d/的关系   service xxx启动 /etc/init.d/ 目录下的xxx脚本 如一个脚本名为 mysvc保存在/etc/init.d/下 ...

  9. 13 Basic Cat Command Examples in Linux(转) Linux中cat命令的13中基本用法

    Cat (串联) 命令是Linux/Unix开源系统中比较常用的一个命令.我们可以通过Cat命令创建一个或多个文件,查看文件内容,串联文件并将内容输出到终端设备或新的文件当中,这篇文章我们将会以实例的 ...

随机推荐

  1. 15个最好的Bootstrap设计工具推荐

    摘要:Bootstrap不单单是一个框架,更确切的说,它改变了整个游戏规则.该框架使得许多应用和网站的设计开发变得简便许多,而且它将大量的HTML框架普及成了产品. Bootstrap是由前Twitt ...

  2. Karaf 依赖equinox and felix,karaf 本Apache的很多项目作为基础框架

    6月17日是Apache Karaf作为Apache顶级项目.Karaf是个运行时包,包含了一个OSGi框架(Equinox或Felix).一个命令shell(Felix Gogo)及默认情况下内置的 ...

  3. Nginx + django windows下配置

    1.下载nginx, 去http://nginx.org/en/download.html 下载,我下载的是1.8 stable版本. 2.配置文件/conf/nginx.conf #user nob ...

  4. 47.MIF和COE文件格式

    .mif和.coe这两个文件分别是Quartus和ISE的RAM和ROM的初始化文件,因此了解他们的格式,是很必要的   MIF文件的格式如下:   WIDTH=14; --数据宽度为14位 DEPT ...

  5. Lisp使用Lambda语法

    lamdba 其实就是一个匿名函数. 定义Lisp的lambda语法非常的简单,如下: (lambda ([parameter]) [experssion]) 调用lambda的语法有三种方法,如下: ...

  6. win7 系统如何设置快速启动栏

    a.在任务栏上右键 -> 工具栏 -> 新建工具栏 -> 跳出选择文件夹对话框,在文件夹里面(光标山洞处)输入这个路径,然后按回车: %userprofile%\AppData\Ro ...

  7. android继承Dialog实现自定义对话框

    有时需要自定义对话框,可以使用AlterDialog.Bulider,比如下面的代码片段 new AlertDialog.Builder(self) .setTitle("标题") ...

  8. mysql死锁示例

    MySQL有三种锁的级别:页级.表级.行级. MyISAM和MEMORY存储引擎采用的是表级锁(table-level locking):BDB存储引擎采用的是页面锁(page-level locki ...

  9. 团队开发(NABC)

    特点:这是一个手机软件,能通过通讯录录入生日信息 N(Need需求):现在在交际圈中需要记住越来越多朋友的生日信息 A(Approach做法):由一个简单的闹钟为基础,添加与生日相关的功能,最终实现 ...

  10. 结对开发:7-magic用户调研报告

    用户调研报告 班级   信1201-2班  学号   20122929     姓名  崔乐乐 项目名称:7-magic 调研时间: 2015/4/14 调研主题:7-magic游戏的用户需求度调研 ...