路由重分布

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
② R3(边界路由器):
将OSPF路由重分布到RIP区域 - R3(config)#router rip - R3(config-router)#redistribute ospf 1 metric 2 将RIP路由重分布到OSPF区域 - R3(config-router)#router ospf 1 - R3(config-router)#redistribute rip metric 200 subnets


rip
static
Routing Information Protocol (RIP)
Static routes
1、重分布直连路由
语法: RIP: redistribute connected [ metric metric-value ]
OSPF:
redistribute connected [subnets] [ metric metric-value ] [ metric-type { 1 | 2 } ]
值—跳数,不能大于15。
RIP协议的redistribute
OSPF协议的redistribute命令
redistribute protocol [ metric metric-value ] [ metric-type {1|2} ]
[ tag tag-value ] [ route-map map-tag ] 例如:把RIP 协议重分布到OSPF协议中
Router(config)#router ospf 1
Router(config-router)#redistribute rip metric 40 subnets 注意:必须加入subnets 参数,不然只有有类路由才能重发布
OSPF协议的redistribute
重分布直连路由、静态路由、默认路由等示例
PC4到PC5),将结果截图粘贴到电子版的实验报告,并分
析结果。
③ 尝试不同区域能否ping通?比如PC1与PC3,PC2与PC5能否
ping通?将结果截图粘贴到电子版的实验报告,并分析结果。
24
实验内容与步骤
4、路由重分布配置
① R2(边界路由器):
将静态路由重分布到RIP区域 - R2(config)#router rip - R2(config-router)#redistribute static metric 3 - R2(config-router)# redistribute connected
此时应使得PC5与PC4能ping通,PC5与路由器R3ping 通! 23
实验内容与步骤
做完前3步之后,请做以下操作:
① 在每台路由器上使用show ip route命令查看路由表,将结果
截图粘贴到电子版的实验报告,并分析路由表为何如此?
② 尝试每个区域内部是能否ping通(如PC1到R2,PC2到PC3,
路由重分布
背景
当一个大型网络中,存在着多种路由协议,如何把一种路由
协议学习到的路由信息,让另一种路由协议传播出去?
路由重分布
路由重分布(Route Redistribution)技术是
指在不同路由协议之间交换路由转发信息 的技术。
具体表现为:一台路由器运行两种或两种以上路由 协议,并且在协议之间转发路由信息。
redistribute protocol [process-id] {level-1|level-2|level-
3} [metric metric-value] [metric-type type-value] [match{internal|external 1 | external 2}] …..
RIP:
defaut-information originate
OSPF:
defaut-information originate
4、RIP和OSPF重分布
RIP协议的重分布:重分布EIGRP、OSPF OSPF协议的重分布:重分布RIP、EIGRP
RIP协议的redistribute命令
2、重分布静态路由
语法: RIP: redistribute static [ metric metric-value ]
OSPF:
redistribute static [subnets] [ metric metric-value ] [ metric-type {1|2}]
3、重分布默认路由
重分布支持所有的路由协议
Router(config)#router rip Router(config-router)#redistribute ?
• • •
connected Connected eigrp ospf Enhanced Interior Gateway Routing Protocol (EIGRP) Open Shortest Path First (OSPF)
R3
R2: router ospf 1 network 192.168.23.0 0.0.0.255 area 0 redistribute connected subnets
R4
R2: router ospf 1 network 192.168.23.0 0.0.0.255 area 0 redistribute connected metric 40 subnets
R3
R2: router rip version 2 network 192.168.23.0 no auto-summary redistribute connected
R4
R2: router rip version 2 network 192.168.23.0 no auto-summary redistribute connected metric 3
redistribute protocol [ metric metric-value] [ match internal |
external nssa-external type] [route-map map-tag]
例如:把OSPF协议重分布到RIP协议中
Router(config)#router rip Router(config-router)#redistribute ospf 1 metric 10 RIP协议重发布其他协议时,必须制定metric,metric为度量
实验内容与步骤
3、路由协议配置(分为三个区域)
① 静态路由(配置R1与R2) R1(config)#ip route 0.0.0.0 0.0.0.0 192.168.12.2//默认路由 R2(config)#ip route 1.1.1.0 255.255.255.0 192.168.12.1 此时应使得区域1内部互通,即PC1与路由器R2能ping通! ② RIP
配置局域网端口 R2(config)#int f0/0 R2(config-if)#ip add 2.2.2.1 255.255.255.0 R2(config-if)#no shut 配置串口 R2(config)#int s0/0/0 R2(config-if)#ip add 192.168.12.2 255.255.255.0 R2(config-if)#no shut R2(config-if)#clock rate 64000//配置DCE端口,DTE不需配置 R2(config)#int s0/0/1 20 R2(config-if)#ip add 192.168.23.1 255.255.255.0 R2(config-if)#no shut
实验目的
1. 2.
进一步熟悉静态路由的配置 进一步熟悉动态路由协议的配置
3.
掌握路由重分布的设置并理解其过程
18
Байду номын сангаас验拓扑
实验内容与步骤
1、连接实验拓扑图并规划IP地址
配置各个主机的地址与默认网关
2、路由器基本配置(每台路由器均需配置,以下仅以R2为例)
Router(config)#hostname R2
③ OSPF
21
实验内容与步骤
3、路由协议配置(分为三个区域AS)
① 静态路由 ② RIP(配置R2与R3) R2(config)#router rip R2(config-router)#ver 2 R2(config-router)#network 2.2.2.0 R2(config-router)#network 192.168.23.0 R2(config-router)#no auto-summary R3(config)#router rip R3(config-router)#ver 2 R3(config-router)#network 3.3.3.0 R3(config-router)#network 192.168.23.0 R3(config-router)#no auto-summary 此时应使得PC3与PC2能ping通! ③ OSPF
22
实验内容与步骤
3、路由协议配置(分为三个区域AS)
① 静态路由
② RIP
③ OSPF R3(config)#router ospf 1 R3(config-router)#net 192.168.34.0 0.0.0.255 area 0 R4(config)#router ospf 22 R4(config-router)#net 4.4.4.0 0.0.0.255 area 0 R4(config-router)#net 192.168.34.0 0.0.0.255 area 0 R5(config)#router ospf 4 R5(config-router)#net 5.0.0.0 0.252.255.255 area 0 R5(config-router)#net 192.168.45.0 0.0.0.255 area 0
执行路由重分布的路由器被称为边界路由器。
路由重分布概述
以便这些不同协议之间的网络互相能够学习对方 的路由。
RIP宣告自己的路由信息到ospf RIP ospf
将一种路由协议获悉的网络告知另一种路由协议,
ospf宣告自己的路由信息到RIP
重分布命令
配置重分布使用命令:redistribute
25
实验内容与步骤
做完第4步之后,请做以下操作:
① 在每台路由器上使用show ip route命令查看路由表,将结果截
图粘贴到电子版的实验报告,并比较与重分布之前的路由表 的区别?
② 尝试不同区域能否ping通?比如PC1与PC4能否ping通?将结
果截图粘贴到电子版的实验报告,并分析结果。
26
相关文档
最新文档