OSPF(ABR和ASBR)的路由彙總

1、OSPF路由彙總優勢:
OSPF路由彙總能夠減小路由表條目,減小類型3和類型5LSA的洪泛,節約帶寬資源和減輕路由器CPU負載,還可以對拓撲的變化本地化
 
 
2、 OSPF路由彙總的兩種類型以下:  (兩種方式均會演示)
1.inter-area(IA) route summarization:發生在ABR上 
2.external route summarization:發生在ASBR
 
 
3、實驗1OSPF區域間彙總,發生在ABR上,接口信息及IP地址規劃,區域信息如拓撲所示。
步驟一:配置3臺路由器,而且用OSPF
 
R1
R1>
R1>en
R1#conf t
R1(config)#interface f0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no sh
R1(config-if)#exit
R1(config)#interface loopback 0
R1(config-if)#ip address 10.1.1.1 255.255.255.0
R1(config-if)#int lo1
R1(config-if)#ip address 10.1.2.1 255.255.255.0
R1(config-if)#int lo2
R1(config-if)#ip address 10.1.3.1 255.255.255.0
R1(config-if)#exit
R1(config)#router ospf 1     //啓用OSPF路由協議
R1(config-router)#network 10.1.1.1 0.0.0.0 area 1    //發佈網段
R1(config-router)#network 10.1.2.1 0.0.0.0 area 1
R1(config-router)#network 10.1.3.1 0.0.0.0 area 1
R1(config-router)#network 192.168.1.1 0.0.0.0 area 1
R1(config-router)#end
R1#
 
 
R2
R2>en
R2#conf t
R2(config)#interface f0/0
R2(config-if)#ip address 192.168.1.2 255.255.255.0
R2(config-if)#no sh
R2(config-router)#exit
R2(config)#interface f0/1
R2(config-if)#ip address 192.168.2.2 255.255.255.0
R2(config-if)#no sh
R2(config-if)#exit
R2(config)#router ospf 1     //啓用OSPF路由協議
R2(config-router)#network 192.168.1.2 0.0.0.0 area 1     //同上
R2(config-router)#network 192.168.2.2 0.0.0.0 area 0 
R2(config-router)#end
R2#
 
 
R3
R3>
R3>en
R3#conf t
R3(config)#interface f0/1
R3(config-if)#ip add
R3(config-if)#ip address 192.168.2.1 255.255.255.0
R3(config-if)#no sh
R3(config-if)#exit
R3(config)#router ospf 1     //同上
R3(config-router)#network 192.168.2.1 0.0.0.0 area 0
R3(config-router)#end
R3#
 
查看R3路由表:  //已經學習到R1三條明細路由
R3#sh ip route 
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route
Gateway of last resort is not set
     10.0.0.0/32 is subnetted, 3 subnets
O IA    10.1.1.1 [110/3] via 192.168.2.2, 00:01:18, FastEthernet0/1
O IA    10.1.2.1 [110/3] via 192.168.2.2, 00:01:18, FastEthernet0/1
O IA    10.1.3.1 [110/3] via 192.168.2.2, 00:01:18, FastEthernet0/1
O IA 192.168.1.0/24 [110/2] via 192.168.2.2, 00:01:18, FastEthernet0/1
C    192.168.2.0/24 is directly connected, FastEthernet0/1
R3#
 
 
 
步驟二:在R2ABR)上執行彙總,再次查看R3上路由表
 
R2(config)#router ospf 1
R2(config-router)#area 1 range 10.1.0.0 255.255.252.0
//3條明細路由彙總爲掩碼爲/22的彙總路由.
R2(config-router)#end
R2#
 
查看R3路由表:
R3#sh ip route 
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route
Gateway of last resort is not set
     10.0.0.0/22 is subnetted, 1 subnets
O IA    10.1.0.0 [110/65] via 192.168.2.2, 00:00:16, FastEthernet0/1
//變爲掩碼爲22的彙總路由
C    192.168.2.0/24 is directly connected, FastEthernet0/1
R3#
 
 
實驗2OSPF區域間彙總,發生在(ASBR)上,拓撲以下,R1運行了OSPFRIP兩種路由協議,因此它爲ASBRIP地址與區域已規劃好.
步驟一:在2臺路由器上配置OSPFRIP,併發佈網段.
R1:
Router>
Router>en
Router#conf t
Router(config)#hostname R1
R1(config)#interface f0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no sh
R1(config)#interface loopback 0
R1(config-if)#ip address 10.1.1.1 255.255.255.0
R1(config-if)#int lo1
R1(config-if)#ip address 10.1.2.1 255.255.255.0
R1(config-if)#int lo2
R1(config-if)#ip address 10.1.3.1 255.255.255.0
R1(config-if)#exit
R1(config)#router ospf 1      //啓用OSPF路由協議
R1(config-router)#network 192.168.1.1 0.0.0.0 area 0
R1(config-router)#exit
R1(config)#router rip     //啓用RIP路由協議
R1(config-router)#version 2     //指定版本2
R1(config-router)#no auto-summary     //不要自動彙總
R1(config-router)#network 10.1.1.0     //發佈網段
R1(config-router)#network 10.1.2.0
R1(config-router)#network 10.1.3.0
R1(config-router)#exit
R1(config)#end
R1#
 

R2:
Router>
Router>en
Router#conf t
Router(config)#hostname R2
R2(config)#interface f0/0
R2(config-if)#ip address 192.168.1.2 255.255.255.0
R2(config-if)#no sh
R2(config-if)#exit
R2(config)#router ospf 1     //同上
R2(config-router)#network 192.168.1.2 0.0.0.0 area 0
R2(config-router)#end
R2#
 
 
 
步驟二:在R1上把RIP與OSPF互相重發布,並查看R2路由表.

R1(config)#router rip
R1(config-router)#redistribute ospf 1 metric 1   //把OSPF發佈進RIP,度量值爲1
R1(config-router)#exit
R1(config)#router ospf 1
R1(config-router)#redistribute rip subnets      //把RIP路由發佈進OSPF
R1(config-router)#end
R1#

查看R2路由表:   //此時已經學習重發布進OSPF的外部路由表條目
R2#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/24 is subnetted, 3 subnets
O E2    10.1.3.0 [110/20] via 192.168.1.1, 00:00:40, FastEthernet0/0
O E2    10.1.2.0 [110/20] via 192.168.1.1, 00:00:40, FastEthernet0/0
O E2    10.1.1.0 [110/20] via 192.168.1.1, 00:00:40, FastEthernet0/0
C    192.168.1.0/24 is directly connected, FastEthernet0/0
R2#
注:E2表示OSPF的外部路由類型2.
 

步驟三:在R1(ASBR)上作域間彙總,使得3條明細彙總爲一條.並查看R2路由表.
R1(config)#router ospf 1
R1(config-router)#summary-address 10.1.0.0 255.255.252.0
//把以前3條明細路由彙總成掩碼爲22的彙總路由
R1(config-router)#end
R1#

查看R2路由表:
R2#show ip route      //此時已經變爲掩碼爲22的彙總路由.
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     10.0.0.0/22 is subnetted, 1 subnets
O E2    10.1.0.0 [110/20] via 192.168.1.1, 00:00:44, FastEthernet0/0
C    192.168.1.0/24 is directly connected, FastEthernet0/0
R2#
相關文章
相關標籤/搜索