1. 程式人生 > >OSPF 基本概念 單區域配置

OSPF 基本概念 單區域配置

OSPF OSPF單區域配置

RIP 是距離矢量路由協議
OSPF 是鏈路狀態路由協議
·
OSPF的四種路由
1.DR 主備份路由
2.BDR 從備份路由
3.ABR 區域邊界路由
4.ASBR 自制系統邊界路由
·
DR BDR 的選舉順序
1.loopback
2.物理端口
3.手工指定
·
OSPF數據包類型
1.hello包
2.數據庫描述包(DBD)
3.鏈路狀態請求包(LSR)
4.鏈路狀態更新包(LSU)
5.鏈路狀態確認包(LSAck)
·
OSPF鄰接關系建立的7個狀態
1.失效(Down)
2.初始(init) 每個接口通過224.0.0.5發送hello包
3.雙向(2-way) 選舉DR BDR
4.準啟動(Exstart) 建立主從路由器
5.交換(Exchange) 交換DBD包
6.加載(Loading) 路由器向對方發送LSR,對方用LSU回應LSR
7.完全鄰接(full)
·
區域類型
骨幹區域,標準區域,末梢區域,完全末梢區域,非純末梢區域
·
單區域配置
技術分享圖片

R1(config)#router ospf 1
R1(config-router)#router-id 1.1.1.1
R1(config-router)#network 192.168.10.0 0.0.0.255 area 0
R1(config-router)#network 12.0.0.0 0.0.0.255 area 0
·
R2(config)#router ospf 1
R2(config-router)#router-id 2.2.2.2

R2(config-router)#network 12.0.0.0 0.0.0.255 area 0
R2(config-router)#network 13.0.0.0 0.0.0.255 area 0
·
R3(config)#router ospf 1
R3(config-router)#router-id 3.3.3.3
R3(config-router)#network 13.0.0.2 0.0.0.255 area 0
R3(config-router)#network 192.168.20.0 0.0.0.255 area 0
·
R1#show ip route
C 192.168.10.0/24 is directly connected, FastEthernet0/0
O 192.168.20.0/24 [110/30] via 12.0.0.2, 00:08:07, FastEthernet0/1
12.0.0.0/24 is subnetted, 1 subnets
C 12.0.0.0 is directly connected, FastEthernet0/1
13.0.0.0/24 is subnetted, 1 subnets
O 13.0.0.0 [110/20] via 12.0.0.2, 00:08:07, FastEthernet0/1
·
路由條目192.168.20.0前面標識為O,說明是通過OSPF學習來的
OSPF的管理距離為110 ,後面的30表示開銷值

OSPF 基本概念 單區域配置