OSPF、RIP与静态路由互通实验
- 实验目的
- 实验要求
- 实验步骤
- 步骤 1:配置R1、R2、R3、R4、R5、R6、R7的端口ip
- 步骤 2:配置R1、R2、R3的OSPF动态路由协议
- 步骤 3:配置R3、R4、R5的RIP动态路由协议
- 步骤 4:配置R3作为边界路由器,实现OSPF与RIP的双向引入
- 步骤 5:配置R6、R7的静态路由
- 步骤 6:RIP、OSPF引入静态路由
- 结果展示
实验目的
- OSPF和RIP双向引入路由信息:实现OSPF和RIP之间的路由信息互相引入,确保不同协议的路由器能够互相通信。
- OSPF、RIP引入静态路由信息:在OSPF和RIP网络中引入静态路由信息,验证静态路由的配置与传播效果。
实验要求
配置R1、R2、R3使用OSPF动态路由协议。
配置R4、R5使用RIP动态路由协议。
配置R3作为边界路由器,实现OSPF与RIP的双向引入。
在R3上配置静态路由,并将静态路由信息引入OSPF网络。配置R6、R7和R3的静态路由,确保R7能够与R1和R5通信。
实验步骤
步骤 1:配置R1、R2、R3、R4、R5、R6、R7的端口ip
在R1上配置:
undo t m
sys
undo info en
sys R1
int Loopback 1
ip add 1.1.1.1 32
int g 0/0/0
ip add 10.1.1.1 24
在R2上配置:
undo t m
sys
undo info en
sys R2
int loopback 1
ip add 2.2.2.2 32
int g 0/0/0
ip add 10.1.1.2 24
int g 0/0/1
ip add 20.1.1.1 24
在R3上配置:
undo t m
sys
undo info en
sys R3
int loopback 1
ip add 3.3.3.3 32
int g 0/0/0
ip add 20.1.1.2 24
int g 0/0/1
ip add 30.1.1.1 24
int g 0/0/2
ip add 100.1.1.1 24
在R4上配置:
undo t m
sys
undo info en
sys R4
int loopback 1
ip add 4.4.4.4 32
int g 0/0/0
ip add 30.1.1.2 24
int g 0/0/1
ip add 40.1.1.1 24
在R5上配置:
undo t m
sys
undo info en
sys R5
int loopback 1
ip add 5.5.5.5 32
int g 0/0/0
ip add 40.1.1.2 24
在R6上配置:
undo t m
sys
undo info en
sys R6
int loopback 1
ip add 6.6.6.6 32
int g 0/0/0
ip add 100.1.1.2 24
int g 0/0/1
ip add 50.1.1.1 24
在R7上配置:
undo t m
sys
undo info en
sys R7
int loopback 1
ip add 7.7.7.7 32
int g 0/0/0
ip add 50.1.1.2 24
步骤 2:配置R1、R2、R3的OSPF动态路由协议
在R1上配置OSPF:
ospf 1 router-id 1.1.1.1
area 0
network 1.1.1.1 0.0.0.0
network 10.1.1.0 0.0.0.255
q
在R2上配置OSPF:
ospf 1 router-id 2.2.2.2
area 0
network 2.2.2.2 0.0.0.0
network 10.1.1.0 0.0.0.255
network 20.1.1.0 0.0.0.255
q
在R3上配置OSPF:
ospf 1 router-id 3.3.3.3
area 0
network 3.3.3.3 0.0.0.0
network 20.1.1.0 0.0.0.255
q
步骤 3:配置R3、R4、R5的RIP动态路由协议
在R3上配置RIP:
rip 1
version 2
network 30.0.0.0
q
在R4上配置RIP:
rip 1
version 2
network 4.0.0.0
network 40.0.0.0
network 30.0.0.0
q
在R5上配置RIP:
rip 1
version 2
network 5.0.0.0
network 40.0.0.0
q
步骤 4:配置R3作为边界路由器,实现OSPF与RIP的双向引入
import-route 命令用于在动态路由协议(如OSPF、RIP)中引入其他类型的路由
- 引入直连路由 (direct)
在动态路由协议中引入直接连接的路由,使得所有参与该协议的路由器都能知道直连路由。
import-route direct
- 引入RIP路由 (rip)
在动态路由协议中引入RIP路由,使得所有参与该协议的路由器都能知道从RIP获得的路由。
import-route rip
- 引入静态路由 (static)
在动态路由协议中引入静态路由,使得所有参与该协议的路由器都能知道手动配置的静态路由。
import-route static
- 引入OSPF路由 (ospf)
在动态路由协议中引入OSPF路由,使得所有参与该协议的路由器都能知道从OSPF获得的路由。
import-route ospf
在R3上配置RIP引入OSPF:
ospf 1 router-id 3.3.3.3
import-route rip 1
q
在R3上配置OSPF引入RIP:
rip 1
import-route ospf 1
q
步骤 5:配置R6、R7的静态路由
在R3上:
ip route-static 6.6.6.6 32 100.1.1.2
ip route-static 50.1.1.0 24 100.1.1.2
ip route-static 7.7.7.7 32 100.1.1.2
在R6上:
ip route-static 7.7.7.7 32 50.1.1.2
ip route-static 3.3.3.3 32 100.1.1.1
ip route-static 1.1.1.1 32 100.1.1.1
ip route-static 10.1.1.0 24 100.1.1.1
ip route-static 2.2.2.2 32 100.1.1.1
ip route-static 20.1.1.0 24 100.1.1.1
ip route-static 30.1.1.0 24 100.1.1.1
ip route-static 4.4.4.4 32 100.1.1.1
ip route-static 40.1.1.0 24 100.1.1.1
ip route-static 5.5.5.5 32 100.1.1.1
在R7上:
ip route-static 6.6.6.6 32 50.1.1.1
ip route-static 100.1.1.0 24 50.1.1.1
ip route-static 3.3.3.3 32 50.1.1.1
ip route-static 1.1.1.1 32 50.1.1.1
ip route-static 10.1.1.0 24 50.1.1.1
ip route-static 2.2.2.2 32 50.1.1.1
ip route-static 20.1.1.0 24 50.1.1.1
ip route-static 30.1.1.0 24 50.1.1.1
ip route-static 4.4.4.4 32 50.1.1.1
ip route-static 40.1.1.0 24 50.1.1.1
ip route-static 5.5.5.5 32 50.1.1.1
步骤 6:RIP、OSPF引入静态路由
在R3上:
rip 1
import-route static
ospf 1 router-id 3.3.3.3
import-route static
结果展示
在R7拼通R1:
在R5拼通R7:
展示R1的路由信息:
展示R5的路由信息:
展示R7的路由信息: