中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

OSPF虛鏈路(實驗可跟做)

OSPF虛鏈路

虛鏈路:

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

虛鏈路的目的:

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

配置虛鏈路的規(guī)則及特點:

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

虛鏈路的配置命令:

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

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

OSPF虛鏈路(實驗可跟做)

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、微信平臺小程序開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了永善免費建站歡迎大家使用!

實驗環(huán)境準(zhǔn)備:GNS3及與之相連的CRT

1.打開GNS3后我們需要拖出四個路由器,兩臺PC機
2.其中area0為骨干區(qū)域,area1和area2為標(biāo)準(zhǔn)區(qū)域
3.R2為ABR

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

第一步:先對路由進行地址配置及宣告網(wǎng)段:

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
注意:此處為達到實驗效果,暫時先不配置虛鏈路?。。?/code>

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

第二步:檢查各路由器之間有沒有相互學(xué)習(xí)到網(wǎng)段:

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是沒有學(xué)習(xí)到area2區(qū)域的網(wǎng)段的!??!

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地址和網(wǎng)關(guān),并測試是否可以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)    
此時顯示:目標(biāo)主機不可達,無法連通
所以此時我們就需要做一條虛鏈路,經(jīng)過area1區(qū)域做這個虛鏈路
此處需要注意的是,在做虛鏈路時,寫入的router-id是對方的,我們應(yīng)該如何去操作,請接著看。

第四步:配置虛鏈路:

回到R2:

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

再到R3:

R3(config)#router ospf 1
R3(config-router)#area 1 virtual-link 2.2.2.2    //area1為穿越區(qū)域,寫上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    //顯示狀態(tài)連通

結(jié)論:此時在全網(wǎng)互通的情況下每個路由器的路由表學(xué)習(xí)到的就是鏈路中所有的網(wǎng)段,這就說明了虛鏈路的設(shè)置可以讓與骨干區(qū)域相隔的標(biāo)準(zhǔn)區(qū)域在非直連狀態(tài)下與之達成互通。

當(dāng)前標(biāo)題:OSPF虛鏈路(實驗可跟做)
分享URL:http://www.rwnh.cn/article24/jiphje.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、網(wǎng)站內(nèi)鏈、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站導(dǎo)航、域名注冊動態(tài)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

璧山县| 贺兰县| 大城县| 英吉沙县| 德格县| 廉江市| 安西县| 墨脱县| 滕州市| 吉首市| 白山市| 郑州市| 郑州市| 赣榆县| 峨山| 龙游县| 河池市| 航空| 沈阳市| 凌云县| 司法| 壶关县| 克什克腾旗| 巧家县| 缙云县| 怀远县| 北川| 灵石县| 白河县| 集安市| 丹阳市| 志丹县| 舒城县| 柞水县| 望谟县| 九龙坡区| 新乐市| 神木县| 长武县| 呼图壁县| 大足县|