tracert 路由跟踪程序
C:\Users\Administrator>tracert 10.0.0.1
通过最多 30 个跃点跟踪到 10.0.0.1 的路由
1 <1 毫秒 1 ms 3 ms 192.168.1.1
2 <1 毫秒 1 ms 1 ms 10.0.0.1
跟踪完成。
C:\Users\Administrator>tracert codewars.com
通过最多 30 个跃点跟踪
到 codewars.com [174.129.25.170] 的路由:
1 <1 毫秒 1 ms <1 毫秒 192.168.1.1
2 <1 毫秒 1 ms 1 ms vpn.zbmchina.cn [10.1.1.1]
3 412 ms 838 ms 361 ms 101.81.8.1
4 3 ms 2 ms 3 ms 124.74.124.69
5 19 ms 2 ms 2 ms 61.152.87.41
6 3 ms 3 ms 3 ms 101.95.120.166
7 52 ms 55 ms 54 ms 202.97.33.78
8 53 ms 56 ms 53 ms 202.97.35.106
9 145 ms 151 ms 143 ms 202.97.51.242
10 186 ms 182 ms 183 ms 202.97.50.74
11 311 ms 305 ms * 4.53.210.113
12 * * * 请求超时。
13 * 367 ms * 4.15.44.98
14 * * * 请求超时。
15 * * * 请求超时。
16 * * * 请求超时。
17 * 405 ms * 54.240.228.175
18 367 ms 372 ms 372 ms 205.251.245.140
19 * * * 请求超时。
20 * * * 请求超时。
21 * 395 ms 398 ms 54.239.110.213
22 * 335 ms 324 ms 54.239.109.147
23 392 ms 390 ms 390 ms 205.251.245.236
24 * * * 请求超时。
25 * * * 请求超时。
26 * * * 请求超时。
27 * * * 请求超时。
28 * * * 请求超时。
29 321 ms * 322 ms wwwizer.com [174.129.25.170]
跟踪完成。
扩展:
How do the routers communicate with each other?
实战
风暴英雄出现游戏模式被禁用
https://www.battlenet.com.cn/support/zh/article/717
C:\Windows\system32>tracert 122.198.64.130
Tracing route to 122.198.64.130 over a maximum of 30 hops
1 1 ms <1 ms 7 ms 192.168.1.1
2 4 ms 3 ms 2 ms 49.221.210.1
3 4 ms 4 ms 3 ms 10.64.134.66
4 13 ms 4 ms 3 ms dhmx-3.dev [10.64.0.242]
5 4 ms 6 ms 4 ms 10.64.4.145
6 * * * Request timed out.
7 6 ms 5 ms 6 ms 10.15.74.201
8 52 ms 50 ms 52 ms 10.15.74.197
9 * * * Request timed out.
10 * * * Request timed out.
11 50 ms 50 ms 50 ms 219.149.9.189
12 * * 563 ms 219.148.216.137
13 * * * Request timed out.
14 * * * Request timed out.
15 * 103 ms * 220.191.200.62
16 97 ms 96 ms 95 ms 220.191.196.70
17 * * * Request timed out.
18 * * 115.238.7.66 reports: Destination net unreachable.
Trace complete.
tracert 路由跟踪程序的更多相关文章
- 建立tracert路由列表的方法
建立tracert路由列表的方法:电脑屏幕左下方 选择开始选项运行 输入 CMD在DOS命令行下输入:tracert (你的网站域名) 运行结果中如出现了“* * * req ...
- tracert路由跟踪命令分析判断
可能有的会使用路由跟踪命令 ,可是却看不太明确显示出来的结果.结合我的来说明一下. (1)tracert命令介绍 tracert是路由跟踪命令,通过该命令的返回结果,能够获得本地到达目标主机所经过的网 ...
- tracert路由跟踪工具使用方法
1. 路由跟踪在线Tracert工具说明 Tracert(跟踪路由)是路由跟踪实用程序,用于确定 IP 数据报访问目标所采取的路径.Tracert 命令用 IP 生存时间 (TTL) 字段和 ICMP ...
- 基于icmp的tracert路由追踪程序
https://blog.csdn.net/u013271921/article/details/45488173 #include<winsock2.h> //#include<i ...
- 计算机网络系统--常用DOS命令
01.名称:md 用法:md “文件夹名” 用处:批量建立文件夹 02.关机命令 shutdown At 18:00 shutdown –s 18:00关机 shutdown -s -t 3 ...
- 跟踪路由 tracert
由于最近遇到网络出现故障的问题,便使用到Tracert来确定了下出现故障的网络节点 记录下tracert命令相关内容 1. 简介 2. Tracert工作原理... 3. 常用参数 4. 使用示例与输 ...
- tracert命令 -网络管理命令
Tracert是路由跟踪程序,用于确定 IP 数据报访问目标所经过的路径.Tracert 命令用 IP 生存时间 (TTL) 字段和 ICMP 错误消息来确定从一个主机到网络上其他主机的路由. 在工作 ...
- 【Linux】关于路由跟踪指令traceroute
稍有计算机常识的人都知道ping命令,是用来检查自己的主机是否与目标地址接通,自己的主机与目标地址的通讯包通讯速率,所谓的通讯包也就是那些什么TCP/IP,UDP包,这里说得通俗一点,比如,就拿这 ...
- tracert/traceroute原理
一.路由追踪程序traceroute/tracert Traceroute是Linux和Mac OS等系统默认提供的路由追踪小程序,Tracert是Windows系统默认提供的路由追踪小程序.二者的功 ...
随机推荐
- LeetCode(61) Rotate List
题目 Given a list, rotate the list to the right by k places, where k is non-negative. For example: Giv ...
- 集训第六周 数学概念与方法 UVA 11181 条件概率
http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=18546 题意:有n个人会去超市,其中只有r个人会买东西,每个人独自买东西的概 ...
- UvaLive 4917 Abstract Extract (模拟)
题意: 给定一篇文章, 文章中有段落, 段落中有句子. 句子只会以'!' , '.' , '?' 结尾, 求出每段中含有与他下面同样是该段落中相同单词数最多的句子, 注意, 单词忽略大小写, 重复的单 ...
- Leetcode 213.大家劫舍II
打家劫舍II 你是一个专业的小偷,计划偷窃沿街的房屋,每间房内都藏有一定的现金.这个地方所有的房屋都围成一圈,这意味着第一个房屋和最后一个房屋是紧挨着的.同时,相邻的房屋装有相互连通的防盗系统,如果两 ...
- ORACLE RAC with NFS install
第一步:建立第一台节点机1).拷贝一台虚拟机做第一个节点,增加host-only的网卡 kudzu工具识别网卡(两都host-only是可以的).然后以下步骤修改相应的配置.etc/hosts内容如下 ...
- 【ZJOI2017 Round1练习&&BZOJ5353】D7T2 guess(费用流)
题意: 思路: ..]of longint; pre:..,..]of longint; inq:..]of boolean; q:..]of longint; n,m,i,j,ans,tot,sou ...
- Oracle数据库导入导出简单备份
oracle数据库简单备份 方法一: 1.导出 exp c##xmq/pwda@orcl owner=c##xmq file=C:/expdb.dmp buffer=8000 2.导入 2.1.删除原 ...
- jmeter的Classpath即类或者jar包的搜索路径设置
对于master-slave模式,插件和依赖都需要放到slave上才能生效,并且需要重启slave使插件生效 查看配置文件:apache-jmeter-3.1/bin/jmeter.propertie ...
- Windows Server2008 R2 设置NAT 让Hyper-V连接Internet
1.添加虚拟网卡,设置为内部,并且固定IP地址192.168.1.1 255.255.255.0 此为内网网卡 2.添加服务器角色:DHCP服务器,DNS服务器,网络策略和访问服务 3."网 ...
- psychology
壹.自身(荣.命) 一.职业分析 ㈠.分析性格→分析长处和短处→分析大家都有的长处→确定自己最终发展的专业. 1 .性格--宗正 耐压力特强,即使肩头责任重大,也能够处理得稳稳当当,是 ...