OSPF多區域基本配置
阿新 • • 發佈:2019-02-11
目錄
實驗拓撲
實驗步驟及配置
ip配置
RA
#
sysname RA
#
interface GigabitEthernet0/0/0
ip address 10.1.1.1 255.255.255.0
#
RB
#
sysname RB
#
interface GigabitEthernet0/0/0
ip address 10.1.1.2 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 10.1.2.1 255.255.255.0
#
RC
#
sysname RC
#
interface GigabitEthernet0/0 /0
ip address 10.1.2.2 255.255.255.0
#
interface GigabitEthernet0/0/1
ip address 10.1.3.1 255.255.255.0
#
RD
#
sysname RD
#
interface GigabitEthernet0/0/0
ip address 10.1.3.2 255.255.255.0
#
配置ospf及配置環回地址
RA
#
router id 1.1.1.1
#
interface LoopBack0
ip address 1.1.1.1 255.255.255.255
#
ospf 1
area 0.0.0.1
network 1.1.1.1 0.0.0.0
network 10.1.1.1 0.0.0.0
#
RB
#
router id 2.2.2.2
#
interface LoopBack0
ip address 2.2.2.2 255.255.255.255
#
ospf 1
area 0.0.0.0
network 2.2.2.2 0.0.0.0
network 10.1.2.1 0.0.0.0
area 0.0.0.1
network 10.1.1.2 0.0.0.0
#
RC
#
router id 3.3.3.3
#
interface LoopBack0
ip address 3.3.3.3 255.255.255.255
#
ospf 1
area 0.0.0.0
network 3.3.3.3 0.0.0.0
network 10.1.2.2 0.0.0.0
area 0.0.0.2
network 10.1.3.1 0.0.0.0
#
RD
#
router id 4.4.4.4
#
interface LoopBack0
ip address 4.4.4.4 255.255.255.255
#
ospf 1
area 0.0.0.2
network 4.4.4.4 0.0.0.0
network 10.1.3.2 0.0.0.0
#
實驗結果
測試RA-RD是否通
抓包檢測RA-RB之間的關係變化
- A、B之間通過互發hello報文尋找鄰居,關係變化:down——init——two-way;
然後在通過DD報文選舉DR、BDR,之後A、B在EXCHANGE狀態下將自身的lsdb簡介通過DD報文傳送給對方,A、B關係:two-way——EXSTART——EXCHANGE,
接著A、B在loading狀態下發送lsq、lsu報文,最後在接收完成後full狀態下發送lsack報文,A、B關係:EXCHANGE——LOADING——FULL。 - two-way時建立鄰居關係,full時建立鄰接關係,ospf只有建立鄰接時才算成功。