[实验目的]
1.根据拓扑结构划分子网并分配IP地址;
2.根据交换机和路由器的基本配置命令实现互连互通;
3.掌握静态路由和动态路由的配置方法。
[实验步骤]
1.打开Packet Tracer5.3窗口,按如下步骤拖动3台Cisco2621路由器、2台2960交换机和4台主机到主窗口中。每台路由器都增加一个“WIC-2T”模块,构建图10-74拓扑。
图10-74 交换路由互连拓扑结构
2.按下表所示分配IP地址:
接口名称 | IP地址 | 接口名称 | IP地址 |
PC0 | 192.168.10.2 | PC1 | 192.168.10.3 |
R0-fa0/0 | 192.168.10.1 | R0-Se0/0 | 192.168.20.1 |
R1-Se0/1 | 192.168.20.2 | R1-Se0/0 | 192.168.30.1 |
R2-Se0/1 | 192.168.30.2 | R2-fa0/0 | 192.168.40.1 |
PC2 | 192.168.40.2 | PC3 | 192.168.40.3 |
3.分别在四台主机上配置IP地址和缺省网关,交换机不用配置。
4.查看设备类型,选择R0,进入特权模式:
R0#show controller serial0/0
如果有“DCE V.35”字样,说明serial0/0是DCE(接口图上有一个小钟)。否则,就是DTE设备,如R1和R2的serial0/1。为了通信同步,DCE需要配置时钟频率,DTE不需要。
5.配置三台路由器接口的IP地址和时钟等参数:
(1)配置路由器R0:
Router>en
Router#config t
Router(config)#hostname R0
R0(config)#int f0/0 ;进入路由器接口
R0(config-if)#ip address 192.168.10.1 255.255.255.0 ;配置IP地址和掩码
R0(config-if)#no shut ;启用接口
R0(config-if)#int se0/0
R0(config-if)#ip address 192.168.20.1 255.255.255.0
R0(config-if)#clock rate 64000 ;配置时钟频率为64kbps
R0(config-if)#no shut
(2)配置路由器R1:
Router>en
Router#config t
Router(config)#hostname R1
R1(config)#int se0/1
R1(config-if)#ip address 192.168.20.2 255.255.255.0
R1(config-if)#no shut
R1(config-if)#int se0/0
R1(config-if)#ip address 192.168.30.1 255.255.255.0
R1(config-if)#clock rate 64000
R1(config-if)#no shut
(3)配置路由器R2:
R2(config)#int f0/0
R2(config-if)#ip address 192.168.40.1 255.255.255.0
R2(config-if)#no shut
R2(config-if)#int se0/1
R2(config-if)#ip address 192.168.30.2 255.255.255.0
R2(config-if)#no shut
6.在每一个路由器命令窗口中退出到特权模式下保存路由器和交换机配置。
R2#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
7.在“文件”菜单中选择“保存”和“另存为”分别将刚建立的拓扑文件保存为lab10.2.pkt、lab10.2_static.pkt、lab10.2_rip.pkt和lab10.2_ospf.pkt等四个文件,分别实现三种不同的路由。
8.打开lab10.2_static.pkt文件,在全局配置模式下配置静态路由。
命令格式为:ip route 目的网络 掩码 下一跳|接口
(1)R0路由器:
R0>en
R0#config t
R0(config)#ip route 192.168.30.0 255.255.255.0 192.168.20.2 ;配置静态路由
R0(config)#ip route 192.168.40.0 255.255.255.0 192.168.20.2 ;配置静态路由
(2)R1路由器:
R1(config)#ip route 192.168.10.0 255.255.255.0 192.168.20.1 ;配置静态路由
R1(config)#ip route 192.168.40.0 255.255.255.0 192.168.30.2 ;配置静态路由
(3)R2路由器:
R2(config)#ip route 192.168.10.0 255.255.255.0 192.168.30.1 ;配置静态路由
R2(config)#ip route 192.168.20.0 255.255.255.0 192.168.30.1 ;配置静态路由
R2(config)#exit
R2#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 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, 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
;已生成四条路由表,2条静态路由,2条直连路由,每个子网1条
S 192.168.10.0/24 [1/0] via 192.168.30.1
S 192.168.20.0/24 [1/0] via 192.168.30.1
C 192.168.30.0/24 is directly connected, Serial0/1
C 192.168.40.0/24 is directly connected, FastEthernet0/0
9.测试所有主机之间的连通性,如果能从PC0 ping通所有主机,说明实验成功。
10.打开lab10.2_rip.pkt文件,在全局配置模式下配置RIP协议动态路由。
(1)R0路由器:
R0(config)#router rip ;启用RIP路由协议
R0(config-router)#version 2 ;版本号为2
R0(config-router)#network 192.168.10.0 ;添加直连网段
R0(config-router)#network 192.168.20.0 ;添加直连网段
(2)R1路由器:
R1(config)#router rip ;启用RIP路由协议
R1(config-router)#version 2 ;版本号为2
R1(config-router)#network 192.168.20.0 ;添加直连网段
R1(config-router)#network 192.168.30.0 ;添加直连网段
(3)R2路由器:
R2(config)#router rip ;启用RIP路由协议
R2(config-router)#version 2 ;版本号为2
R2(config-router)#network 192.168.30.0 ;添加直连网段
R2(config-router)#network 192.168.40.0 ;添加直连网段
R2(config-router)#end ;立即退出到特权模式
R2#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 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, 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
;产生四个子网的路由表,其中2条为直连路由,两条为RIP协议路由
R 192.168.10.0/24 [120/2] via 192.168.30.1, 00:00:09, Serial0/1
R 192.168.20.0/24 [120/1] via 192.168.30.1, 00:00:09, Serial0/1
C 192.168.30.0/24 is directly connected, Serial0/1
C 192.168.40.0/24 is directly connected, FastEthernet0/0
11.诊断RIP路由。在特权模式下输入如下命令察看RIP协议的诊断信息。
R1#debug ip rip ;显示RIP路由选择操作的信息
R1#debug ip routing ;显示路由表更新情况