發布時間: 2018-02-24 15:41:31
區域內部路由:Metic > AD > area-id
1.先比較Metric,越小越好;
2.如果Metric相同,比較AD值,越小越好;
3.如果AD也相同,比較Area-ID,越小越好;
4.如果上述完全相同,則負載均衡;
實驗拓撲
區域內部路由選路規則第一條?
首先在R2、R4啟用一個loopback 0 = 20.1.1.1/24,且通告進ospf area 0
1、先比較metric值,越小越優
R3:
access-list 2 permit 20.1.1.0 0.0.0.255
access-list 4 permit 20.1.1.0 0.0.0.255
!
router ospf 110
distance 200 2.2.2.2 0.0.0.0 2
distance 110 4.4.4.4 0.0.0.0 4
!
interface FastEthernet0/0
ip address 34.1.1.3 255.255.255.0
ip ospf cost 19
!
interface FastEthernet0/1
ip address 23.1.1.3 255.255.255.0
ip ospf cost 2
查看路由表
區域內部路由選路規則第二條?
2、如果metric值相同,比較AD值,越小越優
R3:
access-list 2 permit 20.1.1.0 0.0.0.255
access-list 4 permit 20.1.1.0 0.0.0.255
!
router ospf 110
distance 130 2.2.2.2 0.0.0.0 2
distance 120 4.4.4.4 0.0.0.0 4
!
interface FastEthernet0/0
ip address 34.1.1.3 255.255.255.0
ip ospf cost 2
!
interface FastEthernet0/1
ip address 23.1.1.3 255.255.255.0
ip ospf cost 2
查看路由表
?區域內部路由選路規則第三條?
3、如果AD值相同,比較area-id,越小越優
骨干區域與常規區域:
R6:
router ospf 110
network 20.1.1.0 0.0.0.255 area 126
!
R4:
router ospf 110
network 20.1.1.0 0.0.0.255 area 0
查看路由表
?
3、如果AD值相同,比較area-id,越小越優
常規區域與常規區域:
R1:
router ospf 110
network 100.100.100.100 0.0.0.0 area 15
!
R4:
router ospf 110
network 100.100.100.100 0.0.0.0 area 45
查看路由表?
?