ping 返回的TTL数值代表什么?
ping 返回的TTL数值代表什么?
1 [root@standby ~]# dig @202.106.0.20 www.iqiyi.com
2
3 ; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.30.rc1.el6 <<>> @202.106.0.20 www.iqiyi.com
4 ; (1 server found)
5 ;; global options: +cmd
6 ;; Got answer:
7 ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 22053
8 ;; flags: qr rd ra; QUERY: 1, ANSWER: 7, AUTHORITY: 0, ADDITIONAL: 0
9
10 ;; QUESTION SECTION:
11 ;www.iqiyi.com. IN A
12
13 ;; ANSWER SECTION:
14 www.iqiyi.com. 7 IN CNAME static.dns.iqiyi.com.
15 static.dns.iqiyi.com. 6 IN A 111.206.13.65
16 static.dns.iqiyi.com. 6 IN A 111.206.13.63
17 static.dns.iqiyi.com. 6 IN A 111.206.13.61
18 static.dns.iqiyi.com. 6 IN A 111.206.13.64
19 static.dns.iqiyi.com. 6 IN A 111.206.13.62
20 static.dns.iqiyi.com. 6 IN A 111.206.13.66
21
22 ;; Query time: 6 msec
23 ;; SERVER: 202.106.0.20#53(202.106.0.20)
24 ;; WHEN: Thu Sep 15 17:25:09 2016
25 ;; MSG SIZE rcvd: 152
查看一共经历几跳路由
1 [root@standby ~]# traceroute www.iqiyi.com
2 traceroute to www.iqiyi.com (111.206.13.63), 30 hops max, 60 byte packets
3 1 localhost (192.168.1.1) 2.924 ms 2.662 ms 2.429 ms
4 2 * * *
5 3 61.148.174.189 (61.148.174.189) 3.744 ms 3.555 ms 7.079 ms
6 4 124.65.58.237 (124.65.58.237) 6.910 ms 6.263 ms 6.062 ms
7 5 61.51.115.106 (61.51.115.106) 5.852 ms 5.635 ms 5.420 ms
8 6 bt-211-046.bta.net.cn (202.106.211.46) 6.722 ms 8.319 ms 8.019 ms
9 7 111.206.13.63 (111.206.13.63) 7.183 ms 3.643 ms 6.609 ms
10 [root@standby ~]#
查看返回的TTL
1 [root@standby ~]# ping www.iqiyi.com
2 PING static.dns.iqiyi.com (111.206.13.63) 56(84) bytes of data.
3 64 bytes from 111.206.13.63: icmp_seq=1 ttl=58 time=7.56 ms
4 64 bytes from 111.206.13.63: icmp_seq=2 ttl=58 time=9.46 ms
5 ^C
6 --- static.dns.iqiyi.com ping statistics ---
7 2 packets transmitted, 2 received, 0% packet loss, time 1957ms
8 rtt min/avg/max/mdev = 7.569/8.516/9.464/0.951 ms
9 [root@standby ~]#
64 - 6 = 58
已知经过6跳路由,那么我们尝试设置ttl为6进行试验:
1 [root@standby ~]# ping -c 3 -t 6 www.iqiyi.com
2 PING static.dns.iqiyi.com (111.206.13.66) 56(84) bytes of data.
3 From bt-211-046.bta.net.cn (202.106.211.46) icmp_seq=1 Time to live exceeded
4 From bt-211-046.bta.net.cn (202.106.211.46) icmp_seq=2 Time to live exceeded
5 From bt-211-046.bta.net.cn (202.106.211.46) icmp_seq=3 Time to live exceeded
6
7 --- static.dns.iqiyi.com ping statistics ---
8 3 packets transmitted, 0 received, +3 errors, 100% packet loss, time 2017ms
已知经过6跳路由,那么我们尝试设置ttl为7进行试验:
1 [root@standby ~]# ping -c 3 -t 7 www.iqiyi.com
2 PING static.dns.iqiyi.com (111.206.13.65) 56(84) bytes of data.
3 64 bytes from 111.206.13.65: icmp_seq=1 ttl=58 time=6.25 ms
4 64 bytes from 111.206.13.65: icmp_seq=2 ttl=58 time=12.1 ms
5 64 bytes from 111.206.13.65: icmp_seq=3 ttl=58 time=5.23 ms
6
7 --- static.dns.iqiyi.com ping statistics ---
8 3 packets transmitted, 3 received, 0% packet loss, time 2008ms
9 rtt min/avg/max/mdev = 5.233/7.885/12.167/3.057 ms
10 [root@standby ~]#
ping 返回的TTL数值代表什么?的更多相关文章
- ping命令返回的TTL值判断操作系统
通过简单的ping命令,查看返回的TTL值来判断对方的操作系统 生存时间(TTL)是IP分组中的一个值,网络中的路由器通过察看这个值就可以判断这个IP分组是不是已经在网络中停留了很久,进而决定是否要将 ...
- 介绍ping中的TTL是什么意思
ping是icmp报文的一种应用.用来测试网络中各设备的连通性.在这几天的实验课上,我又用到了这个非常常用的命令,但是这次我发现了一些以前没有太注意的地方,那就是我在Ping不同的地址时所返回的TTL ...
- [TCP/IP] ping traceroute和TTL
1.Time To Live是生存时间的意思,就是说这个ping的数据包能在网络上存在多少时间.当我们对网络上的主机进行ping操作的时候,我们本地机器会发出一个数据包,数据包经过一定数量的路由器传送 ...
- main()如果返回0,则代表程序正常退出,返回非零代表程序异常退出。
读到这里,大家应该了解了main函数返回值的来龙去脉了.下面介绍一下main函数返回值的作用以及如何获得这个返回值.main函数的返回值用于说明程序的退出状态.如果返回0,则代表程序正常退出.返回其它 ...
- ping 中的“TTL"是什么意思
简单来说就是表示一个数据包在网络中可以跳跃的结点数据,当该数据为零时本数据包将被抛弃 详细解释看以下引用: TTL (although named as "time" to liv ...
- ping返回 dup
大概原因如下: 目的主机不可达,也就是 跟主机不在一个网段,也没有路由跳转 一般是远端交换机或HUB流量超过负载,即堵塞 应该是你的网络中存在环路路由,也就是到达你ping的主机有一条以上的路由路径, ...
- switch下返回各类的数值
定义一个变量,在每个case下赋值,最后return public static int orderDishes(int choice) { int price = 0; switch (choice ...
- ping命令的七种用法,看完瞬间成大神
一.ping基本使用详解 在网络中ping是一个十分强大的TCP/IP工具.它的作用主要为: 1.用来检测网络的连通情况和分析网络速度 2.根据域名得到服务器IP 3.根据ping返回的TTL值来判断 ...
- ping命令的七种用法
能不能讲下ping命令的使用,其实对于命令的使用我们之前提到过一些,但对ping命令没有过多讲解,一般我们用的都是它的基本功能,今天我们来详细看下ping命令详细使用. 一.ping基本使用详解 在网 ...
随机推荐
- [转帖] 打开加密SQLite文件的方法
Copy From http://blog.csdn.net/sean4m/article/details/50211565 mark 下 正好工作用到了这个东西. 版本:SQLiteExpertPr ...
- SQL 中GO的作用
use db_CSharp go select *, 备注=case when Grade>= then '成绩优秀' when Grade< and Grade>= then '成 ...
- python常用命令和基础运算符
基础运算符 http://www.cnblogs.com/alex3714/articles/5465198.html 身份运算符:is is not成员运算符:in not in ##in 判断元素 ...
- sql优化问题笔记(mysql)
相信大家平时面试都会遇到这个问题:平时你都是怎么对sql进行调优的? 此篇文章相当于一个随便笔记,根据朋友们的聊天记录整理而成,如有不对,请指正! 注意:这篇是以mysql整理的 查看sql计划分析 ...
- query的set能添加多个
- std::string 字符串替换
std::string 没有原生的字符串替换函数,需要自己来完成 string& replace_str(string& str, const string& to_repla ...
- BZOJ4538 HNOI2016网络(树链剖分+线段树+堆/整体二分+树上差分)
某两个点间的请求只对不在这条路径上的询问有影响.那么容易想到每次修改除该路径上的所有点的答案.对每个点建个两个堆,其中一个用来删除,线段树维护即可.由于一条路径在树剖后的dfs序中是log个区间,所以 ...
- 图之强连通、强连通图、强连通分量 Tarjan算法
原文地址:https://blog.csdn.net/qq_16234613/article/details/77431043 一.解释 在有向图G中,如果两个顶点间至少存在一条互相可达路径,称两个顶 ...
- poj1753 【枚举】
Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 square ...
- 自学Zabbix之路15.5 Zabbix数据库表结构简单解析-其他 表
点击返回:自学Zabbix之路 点击返回:自学Zabbix4.0之路 点击返回:自学zabbix集锦 自学Zabbix之路15.5 Zabbix数据库表结构简单解析-其他 表 1. Actions表 ...