配置NSSA区域
拓扑图
实现步骤
1.配置各路由器接口地址,配置路由(OSPF协议,RIP协议),配置路由充分发,实现全网互通。
①配置R1
1)配置接口IP地址
R1(config)#interface e0/1
R1(config-if)#ip address 10.0.0.1 255.255.255.252
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#interface loopback 0
R1(config-if)#ip address 1.1.1.1 255.255.255.255
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#interface loopback 1
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
2)配置路由
R1(config)#router ospf 1
R1(config-router)#router-id 1.1.1.1
R1(config-router)#network 10.0.0.1 0.0.0.0 area 1
R1(config-router)#network 1.1.1.1 0.0.0.0 area 1
R1(config-router)#network 192.168.1.1 0.0.0.0 area 1
②配置R2
1)配置接口IP地址
R2(config)#interface e0/1
R2(config-if)#ip address 10.0.0.2 255.255.255.252
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface e0/0
R2(config-if)#ip address 10.0.0.5 255.255.255.252
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface loopback 0
R2(config-if)#ip address 2.2.2.2 255.255.255.255
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface loopback 1
R2(config-if)#ip address 192.168.2.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
2)配置路由
R2(config)#router ospf 1
R2(config-router)#router-id 2.2.2.2
R2(config-router)#network 10.0.0.2 0.0.0.0 area 1
R2(config-router)#network 10.0.0.5 0.0.0.0 area 0
R2(config-router)#network 2.2.2.2 0.0.0.0 area 0
R2(config-router)#network 192.168.2.1 0.0.0.0 area 0
③配置R3
1)配置接口IP地址
R3(config)#interface e0/0
R3(config-if)#ip address 10.0.0.6 255.255.255.252
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#interface e0/1
R3(config-if)#ip address 10.0.0.9 255.255.255.252
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#interface loopback 0
R3(config-if)#ip address 3.3.3.3 255.255.255.255
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#interface loopback 1
R3(config-if)#ip address 192.168.3.1 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#exit
2)配置路由
R2(config)#router ospf 1
R2(config-router)#router-id 3.3.3.3
R2(config-router)#network 10.0.0.6 0.0.0.0 area 0
R2(config-router)#network 3.3.3.3 0.0.0.0 area 0
R2(config-router)#network 192.168.3.1 0.0.0.0 area 0
R3(config)#router rip
R3(config-router)#version 2
R3(config-router)#no auto-summary
R3(config-router)#network 10.0.0.8
3)配置路由重分发
R3(config)#router ospf 1
R3(config-router)#redistribute rip subnets
R3(config-router)#exit
R3(config)#router rip
R3(config-router)#redistribute ospf 1 metric 4
R3(config-router)#exit
④配置R4
1)配置接口IP地址
R4(config)#interface e0/0
R4(config-if)#ip address 10.0.0.10 255.255.255.252
R4(config-if)#no shutdown
R4(config-if)#exit
R4(config)#interface loopback 1
R4(config-if)#ip address 192.168.4.1 255.255.255.0
R4(config-if)#no shutdown
R4(config-if)#exit
2)配置路由
R4(config)#router rip
R4(config-router)#version 2
R4(config-router)#no auto-summary
R4(config-router)#network 10.0.0.8
R4(config-router)#network 192.168.4.0
R4(config-router)#exit
2.查看各路由器的路由表,测试全网能否互通
①查看各路由器的路由表,看能否学习所有路由
R1
R2
R3
R4
②测试全网互通
在R1上的测试
在R4上测试
3.配置Area 1为NSSA区域,测试全网能否互通
①R1上配置
R1(config)#router ospf 1
R1(config-router)#area 1 nssa
②R2上配置
R2(config)#router ospf 1
R2(config-router)#area 1 nssa
③查看各路由器的路由表,与步骤2相比,有什么变化
R1
R2
R3
R4
④测试全网通信情况
在R1上测试
在R4上测试
⑤解决NSSA区域与其他区域重分发路由的通信问题
1)R1上配置
R1(config)#router ospf 1
R1(config-router)#area 1 nssa default-information-originate
或
R1(config-router)#area 1 nssa no-summary
2)R2上配置
R2(config)#router ospf 1
R2(config-router)#area 1 nssa default-information-originate
或
R2(config-router)#area 1 nssa no-summary
3)查看R1路由表,看有什么变化
⑥再次测试全网通信情况
在R1上测试
在R4上测试