标签:协议 分发 default ace 创建 block 版本 sub ted
OSPF动态路由协议高级配置Router(config-router)#redistribute protocol metric metric-value metric-type type-value subnets
OSPF协议与RIP协议
router rip //在rip协议中注入ospf协议
redistribute ospf metric 10 //metric为度量值,这里标准为跳数
router ospf 1 //在ospf协议中注入rip协议
redistribute rip metric 200 subnets //度量值为带宽
OSPF重分发静态路由
router ospf 1
redistribute static metric 100 subnets metric-type2
OSPF重分发默认路由
router ospf 1
network 192.168.0.0 0.0.0.255 area 0
default-information originate metric 10 netric-type 1
ip route 0.0.0.0 0.0.0.0 10.0.1.1
实验环境准备:GNS3中的6台路由器,四台PC机
打开GNS3
1、按照拓扑图完成路由间的连接(注意:R3路由需要右键点击选择configure,在Slots中添加两块NM-1FE-TX工作单板。)
2、将R6路由图标样式修改为cloud云样式,这里将R6路由模拟为移动ISP。
3、将各个设备连接并开启。
R1#configure terminal //进入全局模式
R1(config)#interface fastEthernet 0/0 //进入f0/0接口
R1(config-if)#ip address 192.168.10.1 255.255.255.0 //设置IP地址与子网掩码
R1(config-if)#no shut
R1(config-if)#interface fastEthernet 0/1
R1(config-if)#ip address 128.10.0.10 255.255.0.0
R1(config-if)#no shut
R1(config-if)#exit //退回全局模式
R1(config)#ip route 0.0.0.0 0.0.0.0 128.10.0.20 //创建默认路由(128.10.0.20为下一跳地址)
R2#configure terminal //进入全局模式
R2(config)#interface fastEthernet 0/0 //进入f0/0接口
R2(config-if)#ip address 128.10.0.20 255.255.0.0 //设置IP地址与子网掩码
R2(config-if)#no shut
R2(config-if)#interface fastEthernet 0/1
R2(config-if)#ip address 128.20.0.10 255.255.0.0
R2(config-if)#no shut
R2(config-if)#exit //退回全局模式
R2(config)#ip route 192.168.10.0 255.255.255.0 128.10.0.10 //创建静态路由
R2(config)#router ospf 1 //进入OSPF协议1号进程
R2(config-router)#router-id 2.2.2.2 //指定Router ID
R2(config-router)#network 128.20.0.0 0.0.255.255 area 1 //宣告自身网段
R2(config-router)#redistribute connected subnets //将直连网段注入OSPF中
R2(config-router)#redistribute static subnets //将非直连网段注入OSPF中
R2(config-router)#ex
R3#configure terminal //进入全局模式
R3(config)#interface fastEthernet 0/0 //进入f0/0接口
R3(config-if)#ip address 128.20.0.20 255.255.0.0 //设置IP地址与子网掩码
R3(config-if)#no shut
R3(config-if)#interface fastEthernet 0/1
R3(config-if)#ip address 128.30.0.10 255.255.0.0
R3(config-if)#no shut
R3(config-if)#interface fastEthernet 1/0
R3(config-if)#ip address 12.0.0.2 255.0.0.0
R3(config-if)#no shut
R3(config-if)#interface fastEthernet 2/0
R3(config-if)#ip address 192.168.20.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#exit //退回全局模式
R3(config)#ip route 192.168.30.0 255.255.255.0 12.0.0.10 //创建静态路由
R3(config)#router ospf 1
R3(config-router)#router-id 3.3.3.3
R3(config-router)#network 128.20.0.0 0.0.255.255 area 1 //在area1中宣告自身网段
R3(config-router)#network 128.30.0.0 0.0.255.255 area 0 //在area0中宣告自身网段
R3(config-router)#network 192.168.20.0 0.0.0.255 area 1 //在area1中宣告自身网段
R3(config-router)#redi con sub //将直连网段注入OSPF中
R3(config-router)#redi static sub //将非直连网段注入OSPF中
R3(config-router)#ex
R4#configure terminal //进入全局模式
R4(config)#int f 0/1 //进入f0/0接口
R4(config-if)#ip add 128.30.0.20 255.255.0.0 //设置IP地址与子网掩码
R4(config-if)#no shut
R4(config-if)#int f0/0
R4(config-if)#ip add 128.40.0.10 255.255.0.0
R4(config-if)#no shut
R4(config-if)#ex
R4(config)#router rip //建立RIP协议
R4(config-router)#version 2 //选择版本2
R4(config-router)#no auto-summary //关闭子网汇总功能
R4(config-router)#network 128.40.0.0 //宣告自身网段
R4(config-router)#redi ospf 1 metric 5 //将ospf进行注入
R4(config-router)#ex
R4(config)#router ospf 1
R4(config-router)#router-id 4.4.4.4
R4(config-router)#network 128.30.0.0 0.0.255.255 area 0
R4(config-router)#redi rip sub //将rip进行注入
R4(config-router)#ex
R5#conf t
R5(config)#int f 0/1
R5(config-if)#ip add 128.40.0.20 255.255.0.0
R5(config-if)#no shut
R5(config-if)#int f 0/0
R5(config-if)#ip add 192.168.40.1 255.255.255.0
R5(config-if)#no shut
R5(config-if)#ex
R5(config)#router rip
R5(config-router)#ver 2
R5(config-router)#no auto-summ
R5(config-router)#network 128.40.0.0
R5(config-router)#network 192.168.40.0
R5(config-router)#ex
R6#conf t
R6(config)#int f 0/0
R6(config-if)#ip add 12.0.0.10 255.0.0.0
R6(config-if)#no shut
R6(config-if)#int f 0/1
R6(config-if)#iP add 192.168.30.1 255.255.255.0
R6(config-if)#no shut
R6(config-if)#ex
R6(config)#ip route 0.0.0.0 0.0.0.0 12.0.0.2
R6(config)#end
实施步骤:
PC1>
PC1> ip 192.168.20.3 192.168.20.1
Checking for duplicate address...
PC1 : 192.168.20.3 255.255.255.0 gateway 192.168.20.1
PC1>
PC2>
PC2> ip 192.168.10.10 192.168.10.1
Checking for duplicate address...
PC1 : 192.168.10.10 255.255.255.0 gateway 192.168.10.1
PC2>
PC3>
PC3> ip 192.168.40.10 192.168.40.1
Checking for duplicate address...
PC1 : 192.168.40.10 255.255.255.0 gateway 192.168.40.1
PC3>
4号PC机>
4号PC机> ip 192.168.30.10 192.168.30.1
Checking for duplicate address...
PC1 : 192.168.30.10 255.255.255.0 gateway 192.168.30.1
4号PC>
查看命令:Rn(n=2~5)#show ip route
注意:只有运行了动态路由协议的路由才可进行学习!!因此,R1和R6两个路由的路由表中是不可能含有其它网段的
检查命令(PC机上):ping IP地址
多种动态路由混合架构实验——OSPF协议+RIP协议+静态路由
标签:协议 分发 default ace 创建 block 版本 sub ted
原文地址:https://blog.51cto.com/14484404/2437889