最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

CCNP認證考試重發(fā)布實驗案例詳解【單點雙向---線型網(wǎng)絡(luò)拓撲圖】

  發(fā)布時間:2020-04-15 14:36:37   作者:我畏時光   我要評論
這篇文章主要介紹了CCNP認證考試重發(fā)布實驗,結(jié)合具體實驗案例形式分析了思科CCNP重發(fā)布單點雙向---線型網(wǎng)絡(luò)拓撲圖結(jié)構(gòu)配置命令與相關(guān)操作技巧,需要的朋友可以參考下

本文實例講述了CCNP認證考試重發(fā)布實驗案例。分享給大家供大家參考,具體如下:

CCNP---重發(fā)布實驗(單點雙向---線型網(wǎng)絡(luò)拓撲圖)

目錄

搭建拓撲圖

在這里插入圖片描述

實驗要求

1.R1 起 RIP 協(xié)議,R3 起 OSPF 協(xié)議,R5 起 EIGRP 協(xié)議。
2.全網(wǎng)可達。

配置過程

配置IP地址

R1:
 

R1#conf t
R1(config)#int se 4/0
R1(config-if)#ip add 10.1.1.1 255.255.255.0
R1(config-if)#no shu
R1(config-if)#int lo 1
R1(config-if)#ip add 1.1.1.1 255.255.255.0
R1(config-if)#exit

R2:
 

R2#conf t
R2(config)#int se 4/1
R2(config-if)#ip add 10.1.1.2 255.255.255.0
R2(config-if)#no shu
R2(config-if)#int se 4/0
R2(config-if)#ip add 20.1.1.1 255.255.255.0
R2(config-if)#no shu
R2(config-if)#int lo 1
R2(config-if)#ip add 2.2.2.2 255.255.255.0
R2(config-if)#exit

R3:
 

R3#conf t
R3(config)#int se 4/1
R3(config-if)#ip add 20.1.1.2 255.255.255.0
R3(config-if)#no shu
R3(config-if)#int se 4/0
R3(config-if)#ip add 30.1.1.1 255.255.255.0
R3(config-if)#no shu
R3(config-if)#int lo 1
R3(config-if)#ip add 3.3.3.3 255.255.255.0
R3(config-if)#exit

R4:
 

R4#conf t
R4(config)#int se 4/1
R4(config-if)#ip add 30.1.1.2 255.255.255.0
R4(config-if)#no shu
R4(config-if)#int se 4/0
R4(config-if)#ip add 40.1.1.1 255.255.255.0
R4(config-if)#no shu
R4(config-if)#int lo 1
R4(config-if)#ip add 4.4.4.4 255.255.255.0
R4(config-if)#exit

R5:
 

R5#conf t
R5(config)#int se 4/1
R5(config-if)#ip add 40.1.1.2 255.255.255.0
R5(config-if)#no shu
R5(config-if)#int lo 1
R5(config-if)#ip add 5.5.5.5 255.255.255.0
R5(config-if)#exit

配置協(xié)議

R1(RIP):
 

R1(config)#router rip
R1(config-router)#ver 2
R1(config-router)#no auto-summary
R1(config-router)#net 1.0.0.0
R1(config-router)#net 10.0.0.0
R1(config)#end
R1#write

R3(OSPF):
 

R3(config)#router ospf 1
R3(config-router)#router-id 3.3.3.3
R3(config-router)#net 3.3.3.3 0.0.0.0 a 0
R3(config-router)#net 20.1.1.2 0.0.0.0 a 0
R3(config-router)#net 30.1.1.1 0.0.0.0 a 0
R3(config-router)#end
R3#write

R5(EIGRP):
 

R5(config-if)#router eigrp 90
R5(config-router)#no auto-summary
R5(config-router)#net 5.0.0.0
R5(config-router)#net 40.0.0.0
R5(config-router)#end

R2(ASBR):
 

R2(config)#router rip
R2(config-router)#ver 2
R2(config-router)#net 10.0.0.0
R2(config-router)#exit
R2(config)#router ospf 1
R2(config-router)#router-id 2.2.2.2
R2(config-router)#net 20.1.1.1 0.0.0.0 a 0
R2(config-router)#end

R4(ASBR):
 

R4(config)#router ospf 1
R4(config-router)#router-id 4.4.4.4
R4(config-router)#net 30.1.1.2 0.0.0.0 a 0
R4(config-router)#exit
R4(config)#router eigrp 90
R4(config-router)#no auto-summary
R4(config-router)#net 40.0.0.0
R4(config-router)#end

此時各路由器路由表如下:
R1:
在這里插入圖片描述
R2:
在這里插入圖片描述
R3:
在這里插入圖片描述
R4:
在這里插入圖片描述
R5:
在這里插入圖片描述

重發(fā)布

(1)RIP 重發(fā)布到 OSPF:
 

R2(config)#router ospf 1
R2(config-router)#redistribute rip subnets
R2(config-router)#redistribute static subnets
R2(config-router)#redistribute connected subnets
R2(config-router)#exit

此時R3路由器路由表:
在這里插入圖片描述
此時R4路由器路由表:
在這里插入圖片描述
(2)OSPF 重發(fā)布到 EIGRP:
 

R4(config)#router eigrp 90
R4(config-router)#redistribute ospf 1 metric 1544 100 255 1 1500
R4(config-router)#redistribute static
R4(config-router)#redistribute connected
R4(config-router)#exit

此時R5路由器路由表:
在這里插入圖片描述
(2.5)從 EIGRP 下發(fā)缺省
 

R5(config)#int se 4/0
R5(config-if)#ip summary-address eigrp 90 0.0.0.0 0.0.0.0
R5(config-router)#end
R5#write

(3)EIGPR 重發(fā)布到 OSPF:
 

R4(config)#router ospf 1
R4(config-router)#redistribute eigrp 90 subnets
R4(config-router)#redistribute static subnets
R4(config-router)#redistribute connected subnets
R4(config-router)#default-information originate
R4(config-router)#exit

此時R3路由器路由表:
在這里插入圖片描述
此時R2路由器路由表:
在這里插入圖片描述
(4)OSPF 重發(fā)布到 RIP:
 

R2(config)#router rip
R2(config-router)#redistribute ospf 1 metric 2
R2(config-router)#redistribute static
R2(config-router)#redistribute connected
R2(config-router)#exit

此時R1路由器路由表:
在這里插入圖片描述
此時全網(wǎng)可達。

相關(guān)文章

  • CCNP認證考試重發(fā)布實驗案例詳解【單點雙向---星型網(wǎng)絡(luò)拓撲圖】

    這篇文章主要介紹了CCNP認證考試重發(fā)布實驗,結(jié)合具體實驗案例形式分析了思科CCNP認證考試中重發(fā)布單點雙向---星型網(wǎng)絡(luò)拓撲圖結(jié)構(gòu)相關(guān)配置方法,需要的朋友可以參考下
    2020-04-15
  • CCNP認證考試重發(fā)布原理與配置方法分析

    這篇文章主要介紹了CCNP認證考試重發(fā)布原理與配置方法,結(jié)合案例形式分析了思科CCNP認證考試重發(fā)布基本概念、原理、配置方法及相關(guān)操作注意事項,需要的朋友可以參考下
    2020-04-14
  • CCNP認證考試OSPF 實驗案例詳解

    這篇文章主要介紹了CCNP認證考試OSPF 實驗案例,結(jié)合具體實驗案例形式分析了思科CCNP考試中OSPF的基本概念、原理、配置方法及操作注意事項,需要的朋友可以參考下
    2020-04-14
  • CCNP 認證考試OSPF基本概念與原理詳解

    這篇文章主要介紹了CCNP 認證考試OSPF基本概念與原理,較為詳細的分析了CCNP 認證考試中OSPF基本概念、原理、配置方法及相關(guān)操作注意事項,需要的朋友可以參考下
    2020-04-10
  • 思科CCNP認證交換知識點筆記總結(jié)

    這篇文章主要介紹了思科CCNP認證交換知識點,總結(jié)記錄了思科CCNP認證交換技術(shù)與交換機操作相關(guān)概念、原理、知識點與注意事項,需要的朋友可以參考下
    2020-03-26
  • CCNP TSHOOT(642-832)認證考試指南 中文PDF版 73.7MB

    本書涵蓋了與TSHOOT考試相關(guān)的Cisco Catalyst交換機和路由器的各種故障檢測與排除技術(shù),包括STP、第一跳冗余性協(xié)議、EIGRP、OSPF、BGP、路由重分發(fā)、IP服務(wù)、IP通信以及IPv
    2016-10-19
  • CCNP-ONT認證考試指南 中文PDF掃描版 8.55MB

    本書是Cisco CCNP ONT認證考試(642-845)的官方指南,全書緊密圍繞ONT考試主題,在內(nèi)容的組織和編寫上切實凸顯了認證考試需求。此外,本書也非常適合從事融合型網(wǎng)絡(luò)優(yōu)化和設(shè)
    2016-10-10
  • CCNP BCMSN 認證考試指南(第4版) 中文PDF版 13.3MB

    全書分為7個部分,共20章和1個附錄,內(nèi)容包括:園區(qū)網(wǎng)概述和設(shè)計、交換機端口配置、VLAN和中繼、聚合交換機鏈路、生成樹協(xié)議、多層交換、路由器、監(jiān)控引擎和電源冗余、IP電
    2016-10-10
  • CCNP ISCW認證考試指南 中文PDF版 45.9MB

    本書是Cisco CCNP ISCW認證考試(642-825)的官方學習認證指南,主要內(nèi)容包括基本的遠程工作者服務(wù)實現(xiàn)技術(shù)、幀模式MPLS的實現(xiàn)、站點互聯(lián)IPSec VPN的實現(xiàn)以及網(wǎng)絡(luò)安全策略(包
    2016-10-10
  • CCNPSWITCH認證考試指南 中文PDF掃描版 47.6MB

    每章開頭的“我已經(jīng)知道了嗎?”測驗幫助讀者確定如何分配有限的學習時間,末尾的“備考任務(wù)”列出了本章的關(guān)鍵主題和重要術(shù)語并對涉及的命令進行了總結(jié),配套光盤中的模擬
    2016-10-10

最新評論

靖宇县| 五华县| 怀来县| 平潭县| 三门县| 芜湖县| 汉中市| 毕节市| 诏安县| 威远县| 舞钢市| 两当县| 青冈县| 宜良县| 靖宇县| 黔南| 漠河县| 永寿县| 刚察县| 湖北省| 昆明市| 界首市| 谷城县| 棋牌| 潼南县| 昌吉市| 苏州市| 炎陵县| 澜沧| 大名县| 五华县| 姜堰市| 宁海县| 贵港市| 平舆县| 卢龙县| 吉安县| 莱西市| 云林县| 龙州县| 阿勒泰市|