OSPF特殊区域-完全STUB区域
实验说明:
1、配置IP地址
2、按图所示划分多区域
3、在R4上有三条静态路由引入OSPF
4、在R3和R4上通告进OSPF一些环回口
5、为了使area 1中的路由器减少LSDB中LSA数量,将area 1配置为完全 stub区域,可以得area 1的路由器LSDB中不存在3/4/5类LSA。(其他区域的3/4/5类LSA无法进入本区域,本区域也不存在ASBR引入5类LSA)
具体配置:
1、配置IP地址
R1
interface g0/0/0
ip add 10.1.12.1 24
R2
interface g0/0/0
ip add 10.1.12.2 24
interface g0/0/1
ip add 10.1.23.2 24
R3
interface g0/0/1
ip add 10.1.23.3 24
interface g0/0/0
ip add 10.1.34.3 24
R4
interface g0/0/0
ip add 10.1.34.4 24
2、按图所示划分多区域
R1
ospf 1 router-id 1.1.1.1
area 1
network 10.1.12.1 0.0.0.0
R2
ospf 1 router-id 2.2.2.2
area 1
network 10.1.12.2 0.0.0.0
area 0
network 10.1.23.2 0.0.0.0
R3
ospf 1 router-id 3.3.3.3
area 0
network 10.1.23.3 0.0.0.0
area 2
network 10.1.34.2 0.0.0.0
R4
ospf 1 router-id 4.4.4.4
area 2
network 10.1.34.4 0.0.0.0
检查现象:display ospf peer brief
3、在R4上有三条静态路由引入OSPF
(1) R4上配置静态
R4
ip route-static 172.16.0.0 16 null0
ip route-static 192.168.1.0 24 null0
ip route-static 192.168.128.0 30 null0
(2) R4将静态引入ospf
R4
ospf 1
import-route static
检查现象:display ospf lsdb
3、在R4上有三条静态路由引入OSPF
(1) R3配置环回口并且宣告进ospf
R3
interface LoopBack0
ip address 10.1.3.3 32
interface LoopBack1
ip address 3.3.3.3 32
interface LoopBack2
ip address 172.16.1.3 24
ospf 1
area 0
network 10.1.3.3 0.0.0.0
network 3.3.3.3 0.0.0.0
network 172.16.1.3 0.0.0.0
(2) R4配置环回口并且宣告进ospf
R4
interface LoopBack0
ip address 192.168.5.4 24
interface LoopBack1
ip address 10.1.4.4 32
interface LoopBack2
ip address 10.4.4.4 24
ospf 1
area 2
network 192.168.5.4 0.0.0.0
network 10.1.4.4 0.0.0.0
network 10.4.4.4 0.0.0.0
检查现象:R1-display ospf lsdb看到这些3类的LSA
5.配置area 1为totally stub
R1
ospf 1
area 1
stub
R2
ospf 1
area 1
stub
stub no-summary //R2做为area 1的ABR 配置no-summary
检查现象:R1-display ospf lsdb 就剩一条默认三类LSA
在完全STUB区域中不允许引入3/4/5类LSA,在该区域的路由器访问其他区域外部路由以及区域间路由时通过ABR产生的缺省3类LSA访问,该区域不允许存在ASBR引入5类LSA
——·扫描下方微信二维码,回复“实验手册”。即可领取完整电子版手册或为你答疑解惑。·——
|