使用PING和Traceroute 检查网络的连通性

1. 使用PING 命令
R1#ping 12.1.1 .2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 12.1.1 .2, timeout is 2 seconds:
!!!!!    //5 ! 表明网络是通的
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/4/8 ms
 
R1#ping 13.1.1 .3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 13.1.1 .3, timeout is 2 seconds:
!!!!!  //5 ! 表明网络是通的
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/4/8 ms
R1#
 
 
在路由器或是交换机里使用 ping 命令
如果 ping 的结果是 !!!!! 则表明网络正常 .
如果 ping 的结果是 ….. 则表明网络不通 .
如果 ping 的结果是 U.U.U 则表明下一跳不可达 .
 
2. 使用traceroute 命令, 检察从原到目的地经过的路由器的个数.( 或是数据包经过的路径)
:
R2#traceroute 33.1.1.3
 
Type escape sequence to abort.
Tracing the route to 33.1.1.3
 
  1 12.1.1 .1 4 msec 4 msec 4 msec
  2 13.1.1 .3 4 msec 4 msec *
R2#
从以上可以看出从 R2 到达 33.1.1.3 经过了 12.1.1 .1 13.1.1.3 两个路由器

你可能感兴趣的:(网络,ping,检查,traceroute,连通)