OSPF特殊区域-NSSA
实验说明:
1、配置IP地。
2、按图所示划分多区域。
3、在R4上有三条静态路由引入OSPF。
4、在R1上有两台静态路由引入OSPF。
5、area 2不能学到其他区域引入的5类LSA,但是本区域可以引入一些外部路由,此时需要将area 2配置为NSAA,NSSA中不允许其他区域的4/5LSA,允许本区域存在ASBR引入外部路由,以7类LSA的形式引入,当area 2访问其他区域引入的外部路由时,通过area 2的ABR R3产生的缺省7类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
4、在R1上有两台静态路由引入OSPF
R1
ip route-static 1.1.1.0 24 NULL0
ip route-static 2.2.2.0 24 NULL0
ospf 1
import-route static
检查现象:R4-display ospf lsdb 能看到传过来的R1
5.配置area 2为nssa
R3
ospf 1
area 2
nssa
R4
ospf 1
area 2
nssa
检查现象:R4-display ospf lsdb看不见4/5类LSA取而代之的是一条7类默认路由的LSA,同时自身引入的外部路由也是7类LSA(NSSA)
——·扫描下方微信二维码,回复“实验手册”。即可领取完整电子版手册或为你答疑解惑。·——
|