一、实验目标:
1. 掌握综合路由的配置方法;
2. 掌握查看通过路由重发布学习产生的路由;
3. 熟悉广域网线缆的连接方式;
二、实验背景:
假设某公司通过一台三层交换机连接到公司出口路由器R1上,路由器R1再和公司外的另一台路由器R2连接。三层交换机与R1运行RIPv2路由协议,R1与R2运行OSPF路由协议。现要做适当配置,实现公司内部主机与公司外部主机之间的相互通信。
三、技术原理:
为了支持本设备能够运行多个路由协议进程,系统软件提供了路由信息从一个路由进程重分布到另一个路由进程的功能。比如你可以将OSPF路由域的路由冲刺年分布后通告RIP路由域中,也可以将RIP路由域的路由重新分布后通告OSPF路由域中。路由的相互重分布可以在所有的IP路由协议之间进行。
要把路由从一个路由域分布到另一个路由域,并且进行控制控制路由重分布,在路由进程配置模式中执行以下命令:
Redistribute protocol
[medtric metric] [metric-type metric-type] [matchinternal | external type | nassa-external type] [tag tag] [route-map route-map-name] [subnets]
三、拓扑图:
实验步骤:
1、新建packet tracer拓扑图。
2、PC1与交换机用直连线连接,PC2与路由器用交叉线连接,路由器与路由器之间用V.35线缆连接,R1设置时钟。
3、在三层交换机上划分2个VLAN ,运行RIPV2协议,R2运行OSPF协议。
4、在路由器R1上左侧配置RIPV2协议,右侧配置OSPF协议。
5、在R1路由进程中引入外部路由,进行路由重分布。
6、将PC1、PC2主机默认网关分别设置为直连网络设备接口IP地址。
7、验证PC1、PC2主机之间可以互相通信。
四、基本配置:
SW:
Switch>en
Switch#conf t
Switch(config)#host sw
sw(config)#vlan 2
sw(config-vlan)#exit
sw(config)#int fa 0/10
sw(config-if)#switchport access vlan 2
sw(config-if)#no sh
sw(config-if)#ip add 192.168.2.1 255.255.255.0
sw(config-if)#int vlan 1
sw(config-if)#no sh
sw(config-if)#ip add 192.168.1.1 255.255.255.0
sw#conf t
sw(config)#router rip
sw(config-router)#network 192.168.1.0
sw(config-router)#network 192.168.2.0
sw(config-router)#version 2
sw(config-router)#end
sw#copy run start
sw# 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, 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
C 192.168.1.0/24 is directly connected, Vlan1
C 192.168.2.0/24 is directly connected, Vlan2
R1:
Router>en
Router#conf t
Router(config)#host R1
R1(config)#int fa0/0
R1(config-if)#no sh
R1(config-if)#ip add 192.168.2.2 255.255.255.0
R1(config-if)#exit
R1(config)#int serial 2/0
R1(config-if)#no sh
R1(config-if)#clock rate 64000
R1(config-if)#ip add 192.168.3.1 255.255.255.0
R1(config)#router rip
R1(config-router)#network 192.168.2.0
R1(config-router)#version 2
R1(config-router)#exit
R1(config)#router ospf 1
R1(config-router)#network 192.168.3.0 0.0.0.255 area 0
R1(config-router)#end
R1#copy run start
R1#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, 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
R 192.168.1.0/24 [120/1] via 192.168.2.1, 00:00:11, FastEthernet0/0
C 192.168.2.0/24 is directly connected, FastEthernet0/0
C 192.168.3.0/24 is directly connected, Serial2/0
O 192.168.4.0/24 [110/782] via 192.168.3.2, 00:01:36, Serial
R2:
Router>en
Router#conf t
Router(config)#host R2
R2(config)#int fa1/0
R2(config-if)#no sh
R2(config-if)#ip add 192.168.4.1 255.255.255.0
R2(config-if)#exit
R2(config)#int serial 2/0
R2(config-if)#no sh
R2(config-if)#ip add 192.168.3.2 255.255.255.0
R2(config-if)#exit
R2(config)#router ospf 1
R2(config-router)#network 192.168.3.0 0.0.0.255 area 0
R2(config-router)#network 192.168.4.0 0.0.0.255 area 0
R2(config-router)#end
R2#copy run start
R2#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, 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
O E2 192.168.1.0/24 [110/3] via 192.168.3.1, 00:01:29, Serial2/0
O E2 192.168.2.0/24 [110/3] via 192.168.3.1, 00:01:29, Serial2/0
C 192.168.3.0/24 is directly connected, Serial2/0
C 192.168.4.0/24 is directly connected, FastEthernet1/0
五、核心配置:
R1:
R1#conf t
R1(config)#router rip
R1(config-router)#redistribute ospf 1 metric 2
R1(config-router)#exit
R1(config)#router ospf 1
R1(config-router)#redistribute rip subnets
R1(config-router)#end
经过R1上路由的重发布之后,SW上的路由表如下:
sw#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, 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
C 192.168.1.0/24 is directly connected, Vlan1
C 192.168.2.0/24 is directly connected, Vlan2
R 192.168.3.0/24 [120/2] via 192.168.2.2, 00:03:16, Vlan2
R 192.168.4.0/24 [120/2] via 192.168.2.2, 00:03:16, Vlan2
本文出自 “0和1的世界” 博客,谢绝转载!