收藏 分享(赏)

ospf路由以及优化.doc

上传人:myk79025 文档编号:8003393 上传时间:2019-06-03 格式:DOC 页数:7 大小:396KB
下载 相关 举报
ospf路由以及优化.doc_第1页
第1页 / 共7页
ospf路由以及优化.doc_第2页
第2页 / 共7页
ospf路由以及优化.doc_第3页
第3页 / 共7页
ospf路由以及优化.doc_第4页
第4页 / 共7页
ospf路由以及优化.doc_第5页
第5页 / 共7页
点击查看更多>>
资源描述

1、OSPF 配置-重分发-路由优化 STUB NSSAR1 的配置R1#no R1#config tR1(config)#hostname r1r1(config)#interface e0/0r1(config-if)#ip address 192.168.10.1 255.255.255.0r1(config-if)#no shur1(config)#interface e0/1r1(config-if)#ip address 192.168.20.1 255.255.255.0r1(config-if)#no shur1(config-if)#router ospf 10r1(config

2、-router)#network 192.168.10.0 0.0.0.255 area 10r1(config-router)#network 192.168.20.0 0.0.0.255 area 10R2 的配置R2#noR2#config tR2(config)#hostname r2r2(config)#interface e0/1r2(config)#interface e0/1r2(config-if)# ip address 192.168.20.2 255.255.255.0r2(config-if)# no shur2(config-if)#interface e0/2r2

3、(config-if)# ip address 192.168.30.1 255.255.255.0r2(config-if)# no shur2(config-if)#router ospf 10r2(config-router)#network 192.168.20.0 0.0.0.255 area 10r2(config-router)#network 192.168.30.0 0.0.0.255 area 0R3 的配置R3#noR3#config tR3(config)#hostname r3r3(config)#interface e0/2r3(config-if)#ip addr

4、ess 192.168.30.2 255.255.255.0r3(config-if)#no shur3(config-if)#interface e0/3r3(config-if)#ip address 192.168.40.1 255.255.255.0r3(config-if)#no shur3(config-if)#router ospf 10r3(config-router)# network 192.168.30.0 0.0.0.255 area 0r3(config-router)# network 192.168.40.0 0.0.0.255 area 0R4 的配置R4#no

5、R4#config tR4(config)#hostname r4r4(config)#interface e0/3r4(config-if)#ip address 192.168.40.2 255.255.255.0r4(config-if)#no shur4(config-if)#interface e0/0r4(config-if)#ip address 192.168.50.1 255.255.255.0r4(config-if)#no shur4(config-if)#router ospf 10r4(config-router)#network 192.168.40.0 0.0.0

6、.255 area 0r4(config-router)#network 192.168.50.0 0.0.0.255 area 20R5 的配置R5#noR5#config tR5(config)#hostname r5r5(config)#interface e0/0r5(config-if)#ip address 192.168.50.2 255.255.255.0r5(config-if)#no shur5(config-if)#interface e0/1r5(config-if)#ip address 192.168.60.1 255.255.255.0r5(config-if)#

7、no shur5(config-if)#router ospf 10r5(config-router)# network 192.168.50.0 0.0.0.255 area 20r5(config-router)# network 192.168.60.0 0.0.0.255 area 20Pc 的配置查看每个路由器的路由表 show ip route所有的路由都学习到了!使用 vpc ping 192.168.60.1 测试连通性Ok 通了!路由优化在 AREA 20 上做 stub注意! Stub 区域不能出现自治系统边界路由器 ASBR不能是骨干区域 AREA 0R4(config)

8、#router ospf 10R4(config-router)#area 20 stub-R5(config)#router ospf 10R5(config-router)#area 20 stub配置 stub 后使用 show ip route 查看 R5 路由表可以看出在 R5 上注入了一条默认静态路由在 R4 上配置完全 stub注意!完全 stub 只在 ABR 路由器上配置在 R4 上R4(config-router)#area 20 stub no-summary配置完全 stub 后使用 show ip route 查看 R5 路由表路由表已经优化,只剩下直连路由,上注入了

9、一条默认静态路由重分发静态路由转换开启 R6 配置R6#enR6#config tR6(config)#interface e0/1R6(config-if)#ip address 192.168.60.2 255.255.255.0R6(config-if)#no shutdownR6(config-if)#interface e0/0R6(config-if)#ip address 192.168.70.1 255.255.255.0R6(config-if)#no shutdownR6(config)#ip route 0.0.0.0 0.0.0.0 192.168.60.1 配置默认路

10、由此时 R5 已经变成一个自治系统边界路由器 ASBR , 所以要把之前在区域 area20 配置的stub 删掉R5 的配置R5(config-if)#router ospf 10R5(config-router)#no network 192.168.60.0 0.0.0.255 area 20 删除R5(config-router)#no area 20 stubR5(config)#ip route 192.168.70.0 255.255.255.0 192.168.60.2 静态路由R5(config)#router ospf 10R5(config-router)#redistr

11、ibute static subnets 静态重分发 R5(config-router)#redistribute connected subnets metric-type 1R4 删除 stubR4(config)#router ospf 10R4(config-router)#no area 20 stubR4(config-router)#no area 20 stub no-summaryRIP 和 OSPF 之间的重分发删除之前的 R5 和 R6 配置的静态路由,然后配置为动态 RIPR6(config)#no ip route 0.0.0.0 0.0.0.0 192.168.60

12、.1 删除R6(config)#router ripR6(config-router)#network 192.168.60.0R6(config-router)#network 192.168.70.0R5 的配置R5(config)#no ip route 192.168.70.0 255.255.255.0 192.168.60.2 删除R5(config)#router ospf 10R5(config-router)# no redistribute static subnets 删除 R5(config-router)#no redistribute connected subne

13、ts metric-type 1 删除R5(config)#router ripR5(config-router)#network 192.168.60.0R5(config)#router ospf 10R5(config-router)#redistribute rip subnets 重分发转换R5(config-router)#exitR5(config)#router ripR5(config-router)#redistribute ospf 10 metric 6 重分发转换查看 R5 和 R6 的路由表全部经过 R5 的重分发学习到配置 NSSA 区域由于接入的 R6 使得区域 area20 已经不是末梢区域,R5 已经变成一个自治系统边界路由器ASBRR4(config)#router ospf 10R4(config-router)#area 20 nssaR4(config-router)#area 20 nssa no-summaryR5(config)#router ospf 10R5(config-router)#area 20 nssa查看 R4 R5 R6 的路由表 show ip route发现路由表已经得到优化了!

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报