版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、簡(jiǎn)單的ISIS協(xié)議的路由重分發(fā)實(shí)驗(yàn)詳解先為路由器R1、R2、R3、R4配置好接口地址R1>enR1#conf tR1(config)#int fa0/1R1(config-if)#ip add 192.168.1.1 255.255.255.0R1(config-if)#no shutR1(config-if)#int fa0/0R1(config-if)#ip add 192.168.2.1 255.255.255.0R1(config-if)#no shut R2&
2、gt;enR2#conf tR2(config)#int fa0/1R2(config-if)#ip add 192.168.2.2 255.255.255.0R2(config-if)#no shutR2(config-if)#int fa0/0R2(config-if)#ip add 192.168.3.1 255.255.255.0R2(config-if)#no shut R3>enR3#conf tR3(config)#int fa0/1R
3、3(config-if)#ip add 192.168.3.2 255.255.255.0R3(config-if)#no shutR3(config-if)#int fa0/0R3(config-if)#ip add 192.168.4.1 255.255.255.0R3(config-if)#no shut R4>enR4#conf tR4(config)#int fa0/0R4(config-if)#ip add 192.168.4.2
4、0;255.255.255.0R4(config-if)#no shutR4(config-if)#int fa0/1R4(config-if)#ip add 192.168.5.1 255.255.255.0R4(config-if)#no shutR4(config-if)#ex 配置區(qū)域:R1與R2同在area 1區(qū)域、R3在area 2區(qū)域、R3路由的Fa0/0和R4路由在RIP區(qū)域內(nèi)。注釋:net 49.0001.0000.0000.0001.00中的49表示國(guó)家,0001表示地區(qū),0
5、000.0000.0001表示地區(qū)內(nèi)的某一個(gè),因?yàn)镹SEL對(duì)路由器永遠(yuǎn)設(shè)零所以這里是00。 R1(config)#router isisR1(config-router)#net 49.0001.0000.0000.0001.00R1(config-router)#is-type level-1/封裝類(lèi)型R1(config-if-range)#exR1(config)#int range fa0/0 -1/作用端口上R1(config-if-range)#ip router isis R2(co
6、nfig)#router isisR2(config-router)#net 49.0001.0000.0000.0002.00R2(config-router)#is-type level-1-2R2(config-router)#exR2(config)#int range fa0/0 -1R2(config-if-range)#ip router isis R3(config)#router isisR3(config-router)#net 49.0002.0000.0000.
7、0001.00R3(config-router)#is-type level-2R3(config-router)#exR3(config)#int fa0/1R3(config-if)#ip router isisR3(config-if)#exR3(config)#router ripR3(config-router)#net 192.168.4.0/宣告網(wǎng)段 R3(config-router)#version 2/版本號(hào)R3(config-router)#no auto-summary/關(guān)閉路由匯總
8、功能 R4(config)#router ripR4(config-router)#net 192.168.4.0 R4(config-router)#net 192.168.5.0R4(config-router)#version 2R4(config-router)#no auto-summary 上面配置完成后證明你已經(jīng)完成了一半了但是,還有一個(gè)關(guān)鍵的一步?jīng)]有做,也是這個(gè)實(shí)驗(yàn)的重點(diǎn)路由重分發(fā),下面先查看一下路由表,并且對(duì)比一下路由重分發(fā)前后的對(duì)比。R1(config)#do
9、show ip routeCodes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA
10、0;- OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type
11、1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-I
12、S inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is
13、;192.168.2.2 to network 0.0.0.0 C 192.168.1.0/24 is directly connected, FastEthernet0/1C 192.168.2.0/24 is directly connected, FastEthernet0/0i L1 192.168.3.0/24 115/20 via
14、160;192.168.2.2, FastEthernet0/0i*L1 0.0.0.0/0 115/10 via 192.168.2.2, FastEthernet0/0 R2(config)#do show ip route Codes: C - connected, S - static, R - RIP, M - mobile, B -
15、160;BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2
16、160;- OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS s
17、ummary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route
18、 o - ODR, P - periodic downloaded static route Gateway of last resort is not set i L1 192.168.1.0/24 115/20 via 192.168.2.1, FastEthernet0/1C 192.168.2.0/24
19、is directly connected, FastEthernet0/1C 192.168.3.0/24 is directly connected, FastEthernet0/0從R1、R2的路由表上就可以看出來(lái)并沒(méi)有RIP區(qū)域的網(wǎng)段信息。而R3上的路由表信息確有1段和2段的信息,這是為什么呢?因?yàn)镽3路由器上有area 2和RIP兩個(gè)區(qū)域。在area 2區(qū)域中就會(huì)學(xué)習(xí)到area 1區(qū)域內(nèi)的信息,而RIP有屬于自己區(qū)域的信息,合起來(lái)就是一張信
20、息完整的路由表。但是這并不能說(shuō)明它們之間就是互通的,這就好比住在同一個(gè)屋檐下的兩個(gè)房間,雖然都知道有對(duì)方存在但卻并不互相認(rèn)識(shí)知道對(duì)方叫什么一樣。這也是為什么R3路由會(huì)有一張較完整的路由表的原因。但是還要做一個(gè)路由重分發(fā)讓它們互相認(rèn)識(shí),才能有交流(流量通過(guò))。R3(config)#do show ip routeCodes: C - connected, S - static, R - RIP, M - mobile, B -&
21、#160;BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2&
22、#160;- OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS
23、summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route
24、; o - ODR, P - periodic downloaded static route Gateway of last resort is not set C 192.168.4.0/24 is directly connected, FastEthernet0/0R 192.168.5.
25、0/24 120/1 via 192.168.4.2, 00:00:06, FastEthernet0/0i L2 192.168.1.0/24 115/30 via 192.168.3.1, FastEthernet0/1i L2 192.168.2.0/24 115/20 via 192.168.3.1, FastEthernet0/1C 192.168.3.0/24
26、;is directly connected, FastEthernet0/1 R4(config)#do show ip routeCodes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP
27、, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
28、 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 -
29、IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded
30、 static route Gateway of last resort is not set C 192.168.4.0/24 is directly connected, FastEthernet0/0C 192.168.5.0/24 is directly connected, FastEthernet0/1
31、下面是路由重分發(fā)命令的詳細(xì)配置過(guò)程。然后在通過(guò)show ip route 命令查看路由表信息注釋:redistribute rip重分發(fā)為RIP協(xié)議,metric 10 設(shè)置度量值為10,metric-type設(shè)置度量值類(lèi)型,redistribute connection重分發(fā)直連網(wǎng)段(目的讓R4路由器學(xué)習(xí)到) R3(config)#router isisR3(config-router)#redistribute rip metric 10 metric-type
32、 externalR3(config-router)#exR3(config)#router ripR3(config-router)#redistribute isis level-1-2 metric 5 R3(config-router)#redistribute connected R2(config)#do show ip routeCodes: C - connected, S - stati
33、c, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1
34、 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2
35、160; i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U -
36、0;per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is not set i L2 192.168.4.0/24 115/84 via 192.168.3
37、.2, FastEthernet0/0i L2 192.168.5.0/24 115/84 via 192.168.3.2, FastEthernet0/0(通過(guò)這兩條可以看出R2已經(jīng)學(xué)習(xí)到了RIP區(qū)域的信息條目)i L1 192.168.1.0/24 115/20 via 192.168.2.1, FastEthernet0/1C 192.168.2.0/24 is directly co
38、nnected, FastEthernet0/1C 192.168.3.0/24 is directly connected, FastEthernet0/0 R3(config)#do show ip route
39、; Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external
40、, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 -
41、160;OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
42、; ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway
43、;of last resort is not set C 192.168.4.0/24 is directly connected, FastEthernet0/0R 192.168.5.0/24 120/1 via 192.168.4.2, 00:00:10, FastEthernet0/0i L2 192.168.1.0/24
44、60;115/30 via 192.168.3.1, FastEthernet0/1i L2 192.168.2.0/24 115/20 via 192.168.3.1, FastEthernet0/1C 192.168.3.0/24 is directly connected, FastEthernet0/1R4(config)#do show ip routeCodes: C&
45、#160;- connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 五年級(jí)數(shù)學(xué)第二學(xué)期滬教版-期末試卷(滬版)
- 一年級(jí)數(shù)學(xué)第一學(xué)期滬教版- 期末試卷 3
- 生活安全 課件
- 2024年湖北省中考數(shù)學(xué)真題卷及答案解析
- 課件 頁(yè)面大小
- 西京學(xué)院《網(wǎng)絡(luò)數(shù)據(jù)庫(kù)》2022-2023學(xué)年期末試卷
- 西京學(xué)院《建筑信息模型》2021-2022學(xué)年第一學(xué)期期末試卷
- 西京學(xué)院《機(jī)械原理》2021-2022學(xué)年第一學(xué)期期末試卷
- 西京學(xué)院《高等混凝土結(jié)構(gòu)學(xué)》2021-2022學(xué)年第一學(xué)期期末試卷
- 西京學(xué)院《單片機(jī)原理及應(yīng)用實(shí)驗(yàn)》2021-2022學(xué)年期末試卷
- 糖尿病膳食指南2024
- 舞蹈就業(yè)能力展示
- 心理委員朋輩心理輔導(dǎo)員培訓(xùn)講座
- 【共青團(tuán)工作】2024年共青團(tuán)工作總結(jié)及2025年工作思路
- 【音樂(lè)】《茉莉花》課件-2023-2024學(xué)年初中音樂(lè)人教版九年級(jí)下冊(cè)音樂(lè)
- 2024年云南麻栗坡縣中移鐵通文山分公司招聘筆試參考題庫(kù)含答案解析
- 小學(xué)數(shù)學(xué)關(guān)于小學(xué)數(shù)學(xué)課堂實(shí)施畫(huà)圖教學(xué)有效策略的研究 論文
- 危重病人心理護(hù)理與溝通技巧
- 遠(yuǎn)程醫(yī)療與慢病管理系統(tǒng)的集成與優(yōu)化
- 家庭醫(yī)生簽約服務(wù)工作規(guī)范
- 服務(wù)器的部署方案
評(píng)論
0/150
提交評(píng)論