Router2(config-if)#exit
Router2(config)#
(7)配置接口Fast Ethernet0/1的IP地址。IP地址为172.16.0.2,子网掩码为255.255.255.0,并且启用端口。
Router2(config)#interface Ethernet0/1
Router2(config-if)#ip address172.16.0.2255.255.255.0
Router2(config-if)#no shutdoWn
Router2(config-if)#exit
Router2(config)#exit
(8)显示当前路由器的运行配置:
Router2#shoW running-config
Building configuration...
Current configuration:361bytes
!
Version12.2
no serVice passWord-encryption
!
hostname Router2
!
!
enable passWord cisco
!
!
!
!
ip ssh Version1
!
!
interface FastEthernet0/0
ip address10.2.2.1255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address172.16.0.2255.255.255.0
duplex auto
speed auto
!
ip classless
!
!
!
!
!
line con0
line Vty04
login!
!
end
Router2#
(9)显示当前路由器的路由表:
Router2#shoW 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 type1,N2-OSPF NSSA external type2
E1-OSPF external type1,E2-OSPF external type2,E-EGP
i-IS-IS,L1-IS-IS leVel-1,L2-IS-IS leVel-2,ia-IS-IS inter area
*-candidate default,U-per-user static route,o-ODR
P-periodic doWnloaded static route
GateWay of last resort is not set
10.0.0.0/24is subnetted,1subnets
C10.2.2.0is directly connected,FastEthernet0/0
172.16.0.0/24is subnetted,1subnets
C172.16.0.0is directly connected,FastEthernet0/1
Router2#
(10)连通性测试。此时计算机和路由器各个端口的IP地址都已经正确配置,特别强调计算机网关地址要正确配置,其地址为同网段路由器端口的IP地址。
测试位置先选在PC1,ping路由器Router1的FastEthernet0/0。
PC1>ping10.1.1.1
Pinging10.1.1.1With32bytes of data:
Reply from10.1.1.1:bytes=32time=156ms TTL=126
Reply from10.1.1.1:bytes=32time=156ms TTL=126
Reply from10.1.1.1:bytes=32time=157ms TTL=126
Reply from10.1.1.1:bytes=32time=141ms TTL=126
Ping statistics for10.1.1.1:
Packets:Sent=4,ReceiVed=4,Lost=0(0% loss),
Approximate round trip times in milli-seconds:
Minimum=141ms,Maximum=157ms,AVerage=152ms
PC1>
PC1ping自己的网关路由器Router1的FastEthernet0/0已经ping通,ping路由器Router1的FastEthernet0/1也能够ping通,但是ping路由器Router2的FastEthernet0/1却未能成功。
这是为什么?
这是因为PC1和路由器Router1的FastEthernet0/0是同一个网段,肯定能够ping通,PC1和路由器Router1的FastEthernet0/1对于路由器Router1是直连的,只要PC1的网关正确设置也能够ping通。PC1和路由器Router2的FastEthernet0/1对于路由器Router1也是直连的,但是PC1对于路由器Router2并不是直连的,没有启用路由之前,Router2接收到PC1的数据报因目标地址未知而丢弃,所以PC1ping不通路由器Router2的FastEthernet0/1。
测试位置先选在PC2,ping路由器Router2的FastEthernet0/0能够ping通,ping路由器Router2的FastEthernet0/1也能够ping通,但是ping路由器Router1的FastEthernet0/1却未能成功。其原理同上。
测试位置选在路由器Router1,却能够ping通路由器Router2的FastEthernet0/1。这是因为Router1和Router2直连,属于同一个网段。
3.为Router1添加静态路由
(1)现在进入配置模式考虑用什么命令来添加静态路由。当前PC1和PC2不能互相ping通,因为它们是不同的网络,而且中间还有第三个网络。在这种情况下,需要在Router1上为PC1到达网络10.2.2.0添加一条静态路由。
Router1#conf t
Router1(config)#ip route10.2.2.0255.255.255.0172.16.0.2
Router1(config)#end
(2)验证静态路由的有效性。Router1添加路由之后,对于PC1网络连通性没有改变,最远能ping到Router1的FastEthernet0/1,但是对于PC2不仅能ping到Router2的FastEther-net0/1,而且能够ping到Router1的FastEthernet0/1,这是为什么?这就是新添加的路由起了作用,Router1接收到PC2的数据报能够在路由表中查到路由,所以能够ping通。路由器Router2没有配置静态路由,所以PC1ping不到Router2的FastEthernet0/1。
4.为Router2添加静态路由
(1)进入配置模式添加静态路由。当前PC1和PC2不能互相ping通,因为Router2没有配置静态路由。在这种情况下,需要为路由器Router2添加一条到达网络10.1.1.0静态路由。
Router2#conf t
Router2(config)#ip route10.1.1.0255.255.255.0172.16.0.1
Router2(config)#end
Router2#ping10.1.1.2
(2)验证静态路由的有效性。Router2和PC1也能够互相ping通。
Router2#ping10.1.1.2
Type escape sequence to abort.
Sending 5,100-byte ICMP Echos to10.1.1.2,timeout is2seconds:
!!!!!
Success rate is100percent(5/5),round-trip min/aVg/max=93/93/94ms
Router2#
(3)最后ping测试PC1和PC2互通,实训完成。
2.5实训拓展
(1)为Router1配置静态路由如下:
Router1(config)#ip route10.2.2.0255.255.255.0172.16.0.2
Router1(config)#ip route202.66.102.100255.255.255.252202.66.102.34
(2)为Router2配置静态路由如下:
Router2(config)#ip route202.66.102.100255.255.255.252202.66.102.38
Router2(config)#ip route10.1.1.0255.255.255.0172.16.0.1
(3)对于Router3,静态路由如何配置?请思考。
2.6实训思考
在网络拓扑中,PC1、PC2分别位于两个不同的网络,为了实现PC1与PC2之间互相ping通,在路由器Router1上需要设置几条静态路由?为什么?