網路拓撲圖
解決ospf不連續區域的問題 我們有三種解決辦法:
1.多程序雙向重新分布
2.建立tunnel通道 宣告到區域0
3.建立虛鏈路
以下是3種方法配置的詳細命令:
方法1:多程序雙向重新分布
(1).重新啟動另外乙個ospf程序
(2).在2個ospf程序中宣告不連續的網段
(3).雙向發布ospf程序: redistribute ospf 程序號subnets
r1 int s0/0
ip add 1.1.1.1 255.255.255.0
no shut
router ospf 110
router-id 1.1.1.1
network 1.1.1.0 0.0.0.255 area 0
r2 int s0/0
ip add 1.1.1.2 255.255.255.0
no shut
int s0/1
ip add 2.2.2.1 255.255.255.0
no shut
router ospf 110
router-id 2.2.2.2
network 2.2.2.0 0.0.0.255 area 1
network 1.1.1.0 0.0.0.255 area 0
router ospf 120
router-id 2.2.2.5
network
r3 int s0/0
ip add 2.2.2.2 255.255.255.0
no shut
int s0/1
ip add 3.3.3.1 255.255.255.0
no shut
router ospf 110
router-id 3.3.3.3
network 2.2.2.0 0.0.0.255 area 1
redistribute ospf 120 subnets
router ospf 120
router-id 3.3.3.5
network 3.3.3.0 0.0.0.255 area 2
redistribute ospf 110 subnets
r4 int s0/0
ip add 3.3.3.2 255.255.255.0
no shut
router ospf 110
router-id 4.4.4.4
network 3.3.3.0 0.0.0.255 area 2
方法2:建立tunnel通道 宣告到區域0
r1 int s0/0
ip add 1.1.1.1 255.255.255.0
no shut
router ospf 110
router-id 1.1.1.1
network 1.1.1.0 0.0.0.255 area 0
r2 int s0/0
ip add 1.1.1.2 255.255.255.0
no shut
int s0/1
ip add 2.2.2.1 255.255.255.0
no shut
int tunnel 1
tunnel source 2.2.2.1
tunnel destination 2.2.2.2
ip add 172.16.1.1 255.255.255.0
no shut
router ospf 110
router-id 2.2.2.2
network 2.2.2.0 0.0.0.255 area 1
network 1.1.1.0 0.0.0.255 area 0
network 172.16.1.0 0.0.0.255 area 0
r3 int s0/0
ip add 2.2.2.2 255.255.255.0
no shut
int s0/1
ip add 3.3.3.1 255.255.255.0
no shut
int tunnel 1
tunnel source 2.2.2.2
tunnel destination 2.2.2.1
ip add 172.16.1.2 255.255.255.0
no shut
router ospf 110
router-id 3.3.3.3
network 2.2.2.0 0.0.0.255 area 1
network 3.3.3.0 0.0.0.255 area 2
network 172.16.1.0 0.0.0.255 area 0
r4 int s0/0
ip add 3.3.3.2 255.255.255.0
no shut
router ospf 110
router-id 4.4.4.4
network 3.3.3.0 0.0.0.255 area 2
方法3:建立虛鏈路
r1路由器
int s0/0
ip add 1.1.1.1 255.255.255.0
no shut
router ospf 110
router-id 1.1.1.1
network 1.1.1.0 0.0.0.255 area 0
r2路由器
int s0/0
ip add 1.1.1.2 255.255.255.0
no shut
int s0/1
ip add 2.2.2.1 255.255.255.0
no shut
router ospf 110
router-id 2.2.2.2
network 2.2.2.0 0.0.0.255 area 1
network 1.1.1.0 0.0.0.255 area 0
area 1 virtual-link 3.3.3.3
r3路由器
int s0/0
ip add 2.2.2.2 255.255.255.0
no shut
int s0/1
ip add 3.3.3.1 255.255.255.0
no shut
router ospf 110
router-id 3.3.3.3
network 2.2.2.0 0.0.0.255 area 1
network 3.3.3.0 0.0.0.255 area 2
area 1 virtual-link 2.2.2.2
r4路由器
int s0/0
ip add 3.3.3.2 255.255.255.0
no shut
router ospf 110
router-id 4.4.4.4
network 3.3.3.0 0.0.0.255 area 2
大家可以去通過實驗來驗證效果!有什麼問題多交流,謝謝!
MYSQL計算連續與不連續區間的方法
最近在看mysql技術內幕 sql程式設計時,發現裡面提到了乙個關於連續區間的經典問題,首先生成測試資料,目的是想查詢出rank表中,所有id的連續區間 書中提供的方法很巧妙,首先利用mysql中的變數計算出行號,由於行號是連續的,所以連續的數值與行號的差值就是乙個常量,當出現數值不連續時,差值就會...
解決OSPF的不規則區域
要求 隧道解決 位址規劃 r1 192.168.1.0 24 環迴 1.1.1.1 r2 192.168.2.0 24 環迴 2.2.2.2 r3 192.168.3.0 24 3.3.3.3 r4 192.168.4.0 24 4.4.4.4 r5 5.5.5.5 1在r1上配置位址 syssys...
連續區域的最大邊長(簡單廣搜)
題目 用 x,矩陣模擬乙個區域,用x表示物件的一部分,用 表示空間,給定矩陣後,再給定乙個x點的座標,找出這個物件的邊長,和x相連線的x都屬於這個物件,不相鄰的x 屬於另乙個物件,乙個x與左右上下,左上,左下,右上,右下的x相鄰,矩陣最大不超過20 20 include include includ...