测试连通性 打开其余两台路由器,按上述方法进行配置,然后就可以检查它们之间是否连通了。 测试线路连通性的方法有三种,ping、traceroute和telnet。ping可以检测目的地是否可达;trace不仅检测连通性,还给出到达目的地所经过的路径;telnet测试应用层软件的连通性,如下所示。 testBJ#ping 172.16.4.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.4.2, timeout is 2 seconds: !!!!! SUCcess rate is 100 percent (5/5), round-trip min/avg/max = 24/25/28 ms testBJ#traceroute 172.16.4.2 Type escape sequence to abort. Tracing the route to 172.16.4.2 1 172.16.2.2 16 msec 16 msec * testBJ#telnet 172.16.4.2 Trying 172.16.4.2 ... Open User Access Verification Password: testTJ> 172.16.4.2是路由器testTJ上的一个端口,我们在testBJ上运行上述三个命令,得知它运行正常。
显示当前状态 为了使网络治理员能够方便地了解路由器的状态,CISCO路由器提供了丰富的show命令。我们在这里介绍最简单的几个,如下所示。 show version命令显示路由器的硬软件版本号及配置信息。 show flash:命令相当于DOS的dir命令,显示flash中包含的文件信息。 show interface命令显示网络接口的状态。 配置路由器的过程中,最重要的一个show命令莫过于查看配置文件的内容,可以用show命令查看running-config或startup-config,如下所示。 show running-config show startup-config 配置文件是一个文本文件,其中包含着你键入的每一条配置命令。可以将配置文件下载到计算机上,用文本编辑器修改之后,再传回路由器。
三、RIP要配什么
IP地址配置 我们可以使用interface命令进入局部配置模式,然后利用ip address设置接口的IP地址。如下所示。 testBJ#conf t Enter configuration commands, one per line. End with CNTL/Z. testBJ(config)#interface e0/1 testBJ(config-if)#ip address 172.16.1.2 255.255.255.0 testBJ(config-if)# 为了便于配置和记忆,你还可以给每个端口添加一些描述信息。如下所示,在端口局部配置模式下使用description命令。 testBJ(config-if)#description connect to testSH testBJ(config-if)#end testBJ# 有些网络是NBMA(Non-Broadcast MultiAccess,非广播多路访问)的,即网络上不答应广播传送数据。对于这种网络,RIP就不能依靠广播传递路由表了。解决方法有很多,最简单的是指定邻居(neighbor),即指定将路由表发送给某一台特定的路由器。 有些网络是NBMA(Non-Broadcast MultiAccess,非广播多路访问)的,即网络上不答应广播传送数据。对于这种网络,RIP就不能依靠广播传递路由表了。解决方法有很多,最简单的是指定邻居(neighbor),即指定将路由表发送给某一台特定的路由器。
测试配置正确性 配置RIP之后,要检查数据是否可以被正确路由。除了可以使用上面提到的连通性测试工具之外,还有以下几个命令: ? sh ip route用于检测路由表; ? sh ip protocols用于检查路由协议状况; ? debug ip rip用于调试RIP协议信息。 使用sh ip route命令显示各台路由器的路由表。 testBJ#sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default, U - per-user static route, o - ODR Gateway of last resort is not set 172.16.0.0/24 is subnetted, 4 subnets R 172.16.4.0 [120/1] via 172.16.2.2, 00:00:12, Serial1/0 C 172.16.1.0 is directly connected, Ethernet0/1 C 172.16.2.0 is directly connected, Serial1/0 R 172.16.3.0 [120/1] via 172.16.1.3, 00:00:09, Ethernet0/1 [120/1] via 172.16.2.2, 00:00:22, Serial1/0 上面显示的是北京路由器的路由信息。字母C开头的是直接相连的网络,有172.16.1.0和172.16.2.0,分别连接在e0/1和s1/0端口上。字母R开头的是RIP协议学习到的路由,有172.16.3.0和172.16.4.0,其中,到172.16.3.0有两条路径供选择,分别经由testSH和testTJ路由器。对比网络拓扑图,可以看出实际情况与设计的完全一致。 中括号里的内容是路由项的治理距离和度量值,RIP的缺省治理距离是120,到达3、4子网的度量值是1,即经过1个路由器可达。 同样的命令在另外两台路由器上运行,结果如下。 testSH#sh ip route Gateway of last resort is not set 172.16.0.0/24 is subnetted, 4 subnets R 172.16.4.0 [120/1] via 172.16.3.2, 00:00:13, Ethernet0/0 C 172.16.1.0 is directly connected, Ethernet0/1 R 172.16.2.0 [120/1] via 172.16.1.2, 00:00:11, Ethernet0/1 [120/1] via 172.16.3.2, 00:00:13, Ethernet0/0 C 172.16.3.0 is directly connected, Ethernet0/0
testTJ#sh ip route Gateway of last resort is not set 172.16.0.0/24 is subnetted, 4 subnets C 172.16.4.0 is directly connected, Ethernet0/0 R 172.16.1.0 [120/1] via 172.16.3.3, 00:00:07, Ethernet0/1 [120/1] via 172.16.2.3, 00:00:19, Serial1/0 C 172.16.2.0 is directly connected, Serial1/0 C 172.16.3.0 is directly connected, Ethernet0/1 分析上述命令输出时,一定要随时参照拓扑图,离开网络拓扑,上面的信息就没有任何意义。动态路由的灵活性体现在一条链路出现故障,路由算法会自动切换到迂回链路上。例如我们将testBJ和testTJ之间的串行线缆断开,一段时间后,再检查路由表,如下所示。 testBJ#sh ip route Gateway of last resort is not set 172.16.0.0/24 is subnetted, 3 subnets R 172.16.4.0 [120/2] via 172.16.1.3, 00:00:22, Ethernet0/1 C 172.16.1.0 is directly connected, Ethernet0/1 R 172.16.3.0 [120/1] via 172.16.1.3, 00:00:22, Ethernet0/1 我们发现串行链路所在的子网2断开了,到网络172.16.4.0网络的数据包都将绕经testSH路由器。 sh ip protocols命令可以显示当前路由协议的状况,如下所示。 testBJ#sh ip protocols Routing Protocol is "rip" Sending updates every 30 seconds, next due in 19 seconds Invalid after 180 seconds, hold down 180, flushed after 240 Outgoing update filter list for all interfaces is not set Incoming update filter list for all interfaces is not set Redistributing: connected, rip Default version control: send version 1, receive any version Interface Send Recv Key-chain Ethernet0/1 1 1 2 Serial1/0 1 1 2 Routing for Networks: 172.16.0.0 Routing Information Sources: Gateway Distance Last Update 172.16.2.2 120 00:00:05 172.16.1.3 120 00:00:27 Distance: (default is 120) 从命令输出中,可以看出RIP协议的基本配置,还可以得知与当前路由器交换信息的路由器有testTJ(172.16.2.2)和testSH(172.16.1.3)两台路由器,上次接收路由信息分别在5秒和27秒之前。 要了解路由器之间交换路由信息的详情,可以使用debug ip rip命令。如下所示,输入命令后,隔一段时间,控制台上出现接收或者发送RIP广播的信息。 testBJ#debug ip rip RIP protocol debugging is on testBJ# RIP: received v1 update from 172.16.2.2 on Serial1/0 172.16.4.0 in 1 hops 172.16.3.0 in 1 hops RIP: received v1 update from 172.16.1.3 on Ethernet0/1 172.16.4.0 in 2 hops 172.16.3.0 in 1 hops RIP: sending v1 update to 255.255.255.255 via Ethernet0/1 (172.16.1.2) subnet 172.16.4.0, metric 2 subnet 172.16.2.0, metric 1 RIP: sending v1 update to 255.255.255.255 via Serial1/0 (172.16.2.3) subnet 172.16.1.0, metric 1 RIP: received v1 update from 172.16.1.3 on Ethernet0/1 172.16.4.0 in 2 hops 172.16.3.0 in 1 hops RIP: received v1 update from 172.16.2.2 on Serial1/0 172.16.4.0 in 1 hops 172.16.3.0 in 1 hops testBJ#no debug all All possible debugging has been turned off testBJ# 从上述信息中可以得到RIP广播的详情。路由器先是从testTJ收到子网3、4的信息,然后又从testSH收到子网3、4的信息。其中,到子网4走testTJ一跳,走testSH两跳,所以,路由表中反映出来的是经由testTJ到子网4;到子网3的距离都是一跳,所以,路由表中有两条并列的路由。 一段时间后,当前路由器的更新计时达到30秒,于是,它在两条链路上广播自身的路由表信息。注重,广播路由更新时,RIP采用了水平分割机制,从一个端口上学得的信息就不在这个端口上进行广播,所以当前路由器testBJ只发送子网172.16.1.0的路由信息。 使用no debug all命令结束调试信息的显示。需要注重的是debug命令非常消耗路由器资源,所以不要在通讯繁忙的路由器上使用,否则,路由器就会象死机一样停止反应。