91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

OSPF虛鏈路(實驗可跟做)

發布時間:2020-07-23 00:00:12 來源:網絡 閱讀:2320 作者:JarryZ 欄目:網絡管理

OSPF虛鏈路

虛鏈路:

1.指一條通過一個非骨干區域連接到骨干區域的鏈路

虛鏈路的目的:

1.通過一個非骨干區域連接一個區域到骨干區域
2.通過一個非骨干區域連接一個分段的骨干區域

配置虛鏈路的規則及特點:

1.虛鏈路必須配置在兩臺ABR路由器之間
2.傳送區域不能是一個末梢區域
3.虛鏈路的穩定性取決于其經過的區域的穩定性
4.虛鏈路有助于提供邏輯冗余

虛鏈路的配置命令:

Router(config-router)#area area-id vritual-link router-id

虛鏈路配置實驗:(GNS3中拓撲圖如下)

OSPF虛鏈路(實驗可跟做)

實驗環境準備:GNS3及與之相連的CRT

1.打開GNS3后我們需要拖出四個路由器,兩臺PC機
2.其中area0為骨干區域,area1和area2為標準區域
3.R2為ABR

OSPF中的虛鏈路就是我們通過非骨干區域打一條通道直接連接area0的骨干區域,就猶如圖中的area2如果要和area0直接相連的話,那么這條鏈路的穩定性就取決于area1的穩定性,如果area1不夠穩定那么這條鏈路也是不穩定的。接下來我們就來看看虛鏈路的操作方法。

第一步:先對路由進行地址配置及宣告網段:

R1:

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:

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:

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:

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:

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:

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:

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:

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

第三步:進入兩臺客戶機配置IP地址和網關,并測試是否可以ping通:

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:

R2(config)#router ospf 1
R2(config-router)#area 1 virtual-link 3.3.3.3    //area1為穿越區域,寫上R3的router-id

再到R3:

R3(config)#router ospf 1
R3(config-router)#area 1 virtual-link 2.2.2.2    //area1為穿越區域,寫上R2的router-id

第五步:回到客戶機中查看是否可以ping通:

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    //顯示狀態連通

結論:此時在全網互通的情況下每個路由器的路由表學習到的就是鏈路中所有的網段,這就說明了虛鏈路的設置可以讓與骨干區域相隔的標準區域在非直連狀態下與之達成互通。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沅江市| 乌兰浩特市| 黄骅市| 两当县| 南川市| 青阳县| 漳州市| 利辛县| 车致| 德昌县| 佛冈县| 南乐县| 登封市| 永康市| 印江| 通榆县| 托里县| 平邑县| 定西市| 卢湾区| 达孜县| 特克斯县| 防城港市| 北票市| 西丰县| 海林市| 开鲁县| 五大连池市| 潮安县| 乡城县| 田阳县| 绵阳市| 固始县| 沁阳市| 林甸县| 景泰县| 新营市| 茶陵县| 宝应县| 彰化县| 抚州市|