您好,登錄后才能下訂單哦!
1.指一條通過一個非骨干區域連接到骨干區域的鏈路
1.通過一個非骨干區域連接一個區域到骨干區域
2.通過一個非骨干區域連接一個分段的骨干區域
1.虛鏈路必須配置在兩臺ABR路由器之間
2.傳送區域不能是一個末梢區域
3.虛鏈路的穩定性取決于其經過的區域的穩定性
4.虛鏈路有助于提供邏輯冗余
Router(config-router)#area area-id vritual-link router-id
1.打開GNS3后我們需要拖出四個路由器,兩臺PC機
2.其中area0為骨干區域,area1和area2為標準區域
3.R2為ABR
OSPF中的虛鏈路就是我們通過非骨干區域打一條通道直接連接area0的骨干區域,就猶如圖中的area2如果要和area0直接相連的話,那么這條鏈路的穩定性就取決于area1的穩定性,如果area1不夠穩定那么這條鏈路也是不穩定的。接下來我們就來看看虛鏈路的操作方法。
R1#conf t
R1(config)#int f0/0
R1(config-if)#ip add 192.168.10.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#int f0/1
R1(config-if)#ip add 192.168.20.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#ex
R1(config)#int lo 0
R1(config-if)#ip add 1.1.1.1 255.255.255.255
R1(config-if)#no shut
R1(config-if)#ex
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 2
R1(config-router)#network 192.168.20.0 0.0.0.255 area 2
R2#conf t
R2(config)#int f0/0
R2(config-if)#ip add 192.168.20.2 255.255.255.0
R2(config-if)#no shut
R2(config-if)#int f0/1
R2(config-if)#ip add 192.168.30.1 255.255.255.0
R2(config-if)#no shut
R2(config-if)#ex
R2(config)#int lo 0
R2(config-if)#ip add 2.2.2.2 255.255.255.255
R2(config-if)#no shut
R2(config-if)#ex
R2(config)#router ospf 1
R2(config-router)#router-id 2.2.2.2
R2(config-router)#network 192.168.20.0 0.0.0.255 area 2
R2(config-router)#network 192.168.30.0 0.0.0.255 area 1
R2(config-router)#ex
注意:此處為達到實驗效果,暫時先不配置虛鏈路!!!
R3#conf t
R3(config)#int f0/0
R3(config-if)#ip add 192.168.30.2 255.255.255.0
R3(config-if)#no shut
R3(config-if)#int f0/1
R3(config-if)#ip add 192.168.40.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#ex
R3(config)#int lo 0
R3(config-if)#ip add 3.3.3.3 255.255.255.255
R3(config-if)#no shut
R3(config-if)#ex
R3(config)#router ospf 1
R3(config-router)#router-id 3.3.3.3
R3(config-router)#network 192.168.30.0 0.0.0.255 area 1
R3(config-router)#network 192.168.40.0 0.0.0.255 area 0
R4#conf t
R4(config)#int f0/0
R4(config-if)#ip add 192.168.40.2 255.255.255.0
R4(config-if)#no shut
R4(config-if)#int f0/1
R4(config-if)#ip add 192.168.50.1 255.255.255.0
R4(config-if)#no shut
R4(config-if)#ex
R4(config)#int lo 0
R4(config-if)#ip add 4.4.4.4 255.255.255.255
R4(config-if)#no shut
R4(config-if)#ex
R4(config)#router ospf 1
R4(config-router)#router-id 4.4.4.4
R4(config-router)#network 192.168.40.0 0.0.0.255 area 0
R4(config-router)#network 192.168.50.0 0.0.0.255 area 0
R1(config)#do show ip route
.....此處省略部分
1.0.0.0/32 is subnetted, 1 subnets
C 1.1.1.1 is directly connected, Loopback0
C 192.168.10.0/24 is directly connected, FastEthernet0/0
C 192.168.20.0/24 is directly connected, FastEthernet0/1
R2(config)#do show ip route
.....此處省略部分
2.0.0.0/32 is subnetted, 1 subnets
C 2.2.2.2 is directly connected, Loopback0
C 192.168.30.0/24 is directly connected, FastEthernet0/1
O 192.168.10.0/24 [110/20] via 192.168.20.1, 00:15:57, FastEthernet0/0
O IA 192.168.40.0/24 [110/20] via 192.168.30.2, 00:08:28, FastEthernet0/1
C 192.168.20.0/24 is directly connected, FastEthernet0/0
O IA 192.168.50.0/24 [110/30] via 192.168.30.2, 00:03:29, FastEthernet0/1
R3(config)#do show ip route
.....此處省略部分
3.0.0.0/32 is subnetted, 1 subnets
C 3.3.3.3 is directly connected, Loopback0
C 192.168.30.0/24 is directly connected, FastEthernet0/0
C 192.168.40.0/24 is directly connected, FastEthernet0/1
O 192.168.50.0/24 [110/20] via 192.168.40.2, 00:10:35, FastEthernet0/1
注意:因為我們剛剛在R2中沒有配置虛鏈路,所以此時R3是沒有學習到area2區域的網段的!!!
R4(config)#do show ip route
.....此處省略部分
O IA 192.168.30.0/24 [110/20] via 192.168.40.1, 00:12:42, FastEthernet0/0
4.0.0.0/32 is subnetted, 1 subnets
C 192.168.40.0/24 is directly connected, FastEthernet0/0
C 192.168.50.0/24 is directly connected, FastEthernet0/1
PC1>ip 192.168.10.2 192.168.10.1
PC2>ip 192.168.50.2 192.168.50.1
PC1> ping 192.168.50.2
*192.168.10.1 icmp_seq=1 ttl=255 time=19.999 ms (ICMP type:3, code:1, Destination host unreachable)
此時顯示:目標主機不可達,無法連通
所以此時我們就需要做一條虛鏈路,經過area1區域做這個虛鏈路
此處需要注意的是,在做虛鏈路時,寫入的router-id是對方的,我們應該如何去操作,請接著看。
R2(config)#router ospf 1
R2(config-router)#area 1 virtual-link 3.3.3.3 //area1為穿越區域,寫上R3的router-id
R3(config)#router ospf 1
R3(config-router)#area 1 virtual-link 2.2.2.2 //area1為穿越區域,寫上R2的router-id
PC1> ping 192.168.50.2
192.168.50.2 icmp_seq=1 timeout
84 bytes from 192.168.50.2 icmp_seq=2 ttl=60 time=82.984 ms //顯示狀態連通
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。