1- 引言
OSPF多进程重分发也可以解决Area 0 不连续等其他区域间通信故障问题。
实验拓扑如下:
2- 实验操作
基本配置
R1:
config t
inter lo 0
ip add 1.1.1.1 255.255.255.255
inter f 0/0
no shut
ip add 12.1.1.1 255.255.255.0
router ospf 100
router-id 1.1.1.1
network 12.1.1.1 0.0.0.0 a 0
R2:
config t
inter lo 0
ip add 2.2.2.2 255.255.255.255
inter f 1/0
no shut
ip add 12.1.1.2 255.255.255.0
inter f 0/0
no shut
ip add 23.1.1.2 255.255.255.0
router ospf 100
router-id 2.2.2.2
network 12.1.1.2 0.0.0.0 a 0
network 23.1.1.2 0.0.0.0 a 1
R3:
config t
inter lo 0
ip add 3.3.3.3 255.255.255.255
inter f 1/0
no shutdown
ip add 23.1.1.3 255.255.255.0
inter f 0/0
no shutdown
ip add 34.1.1.3 255.255.255.0
router ospf 100
router-id 3.3.3.3
network 23.1.1.3 0.0.0.0 a 1
network 34.1.1.3 0.0.0.0 a 2
R4:
config t
inter lo 0
ip add 4.4.4.4 255.255.255.255
inter f 0/0
no shutdown
ip add 34.1.1.4 255.255.255.0
router ospf 100
router-id 4.4.4.4
network 34.1.1.4 0.0.0.0 a 2
做了基本配置以后R4路由信息如下:
配置多进程重分发
//需要将R3的OSPF配置改成:
router ospf 100
redistribute ospf 200 subnets
network 23.1.1.3 0.0.0.0 a 1
router ospf 200
network 34.1.1.3 0.0.0.0 a 2
redistribute ospf 100 subnets
配置好之后,再进入R4查看路由信息如下:
由图可以得知,R4收到的是自治系统外部LSA,也就是说,R3的两个OSPF进程被默认识别为2个自治系统了!!!
学到了路由,连通性也正常!