一、 组网需求
Device A、B、C和D之间通过OSPF路由协议互联。
Device A和Device B作为ABR传递OSPF区域间路由,Device D作为ASBR引入外部静态路由。
为减少Area 1内LSA数量,节约设备性能,将Area 1配置成Totally Stub区域。
二、组网图
三、 配置要点
● 所有设备配置接口IP地址(略)。
● 所有设备配置OSPF基本功能(略)。
● 在Device A和Device C上配置区域1为Stub类型。
四、 配置步骤
(1) Device D上配置引入外部静态路由。
Device D> enable
Device D# configure terminal
Device D(config)# router ospf 1
Device D(config-router)# redistribute static subnets
(2) Device A、C上区域1配置成Stub类型。
# Device A的配置。
Device A> enable
Device A# configure terminal
Device A(config)# router ospf 1
Device A(config-router)# area 1 stub no-summary
# Device C的配置。
Device C> enable
Device C# configure terminal
Device C(config)# router ospf 1
Device C(config-router)# area 1 stub
五、验证配置结果
●Device A的配置文件
!
router ospf 1
area 1 stub no-summary
!
● Device C的配置文件。
!
router ospf 1
area 1 stub
!
●Device D的配置文件。
!
router ospf 1
redistribute static subnets
!