Tracert(跟踪路由)是路由跟踪实用程序,用于确定 IP 数据报访问目标所采取的路径。Tracert 命令用 IP 生存时间 (TTL) 字段和 ICMP 错误消息来确定从一个主机到网络上其他主机的路由。(这点和ping非常相似)。今天思科路由器代理商朗联就来和大家一起讨论一下CMD路由追踪tracert命令吧。
Tracert 命令按顺序打印出返回“ICMP 已超时”消息的路径中的近端路由器接口列表。如果使用 -d 选项,则 Tracert 实用程序不在每个 IP 地址上查询 DNS。
在下例中,数据包必须通过两个路由器(10.0.0.1 和 192.168.0.1)才能到达主机 172.16.0.99。主机的默认网关是 10.0.0.1,192.168.0.0 网络上的路由器的 IP 地址是 192.168.0.1。
C:\>tracert 172.16.0.99 –d
Tracing route to 172.16.0.99 over a maximum of 30 hops
1 2s 3s 2s 10,0.0,1
2 75 ms 83 ms 88 ms 192.168.0.1
3 73 ms 79 ms 93 ms 172.16.0.99
Trace complete.
用 tracert 解决问题 可以使用 tracert 命令确定数据包在网络上的停止位置。
现在使用命令追踪谷歌dns服务器的信息~
C:\Users\test>tracert 8.8.8.8
通过最多 30 个跃点跟踪
到 google-public-dns-a.google.com [8.8.8.8] 的路由:
1 1 ms 1 ms 1 ms 192.168.51.254
2 6 ms 1 ms 2 ms 192.168.254.2
3 <1 毫秒 1 ms 1 ms 219.137.26.177
4 2 ms 1 ms 1 ms 61.144.12.225
5 1 ms 1 ms 1 ms 183.56.31.13
6 2 ms 3 ms 4 ms 183.56.30.1
7 * 7 ms * 202.97.33.218
8 1 ms 3 ms 3 ms 202.97.34.74
9 13 ms 11 ms 11 ms 202.97.61.22
10 156 ms 161 ms 155 ms 202.97.62.214
11 175 ms 175 ms 187 ms 209.85.241.56
12 236 ms 227 ms 235 ms 209.85.250.9
13 214 ms 212 ms 218 ms 209.85.250.101
14 * * * 请求超时。
15 230 ms 213 ms 199 ms google-public-dns-a.google.com [8.8.8.8]
现在结合帮助解析下相关参数
tracert /?
Usage: tracert [-d] [-h maximum_hops] [-j host-list] [-w timeout] target_name
Options:
-d Do not resolve addresses to hostnames.
-h maximum_hops Maximum number of hops to search for target.
-j host-list Loose source route along host-list.
-w timeout Wait timeout milliseconds for each reply.