真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

靜態(tài)、rip、eigrp與ospf路由重發(fā)布的實(shí)例分析

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)靜態(tài)、rip、eigrp與ospf路由重發(fā)布的實(shí)例分析,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

公司主營(yíng)業(yè)務(wù):成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶(hù)真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶(hù)帶來(lái)驚喜。創(chuàng)新互聯(lián)推出鄧州免費(fèi)做網(wǎng)站回饋大家。

實(shí)驗(yàn)名稱(chēng):靜態(tài)、rip、eigrp與ospf路由重發(fā)布綜合實(shí)驗(yàn)
實(shí)驗(yàn)?zāi)康模菏炀氝\(yùn)用和配置各種協(xié)議路由重發(fā)布
實(shí)驗(yàn)設(shè)計(jì):
1、 以ospf的多區(qū)互聯(lián)為實(shí)驗(yàn)框架
2、 配置靜態(tài)路由的重發(fā)布,實(shí)現(xiàn)與ospf區(qū)域的互通
3、 配置rip的重發(fā)布,實(shí)現(xiàn)接入層與ospf區(qū)域的互通
4、 配置eigrp的重發(fā)布,實(shí)現(xiàn)與ospf區(qū)域的互通
實(shí)驗(yàn)拓?fù)鋱D:

靜態(tài)、rip、eigrp與ospf路由重發(fā)布的實(shí)例分析

 主要配置過(guò)程:
router 0:
interface Loopback1
 ip address 192.168.0.1 255.255.255.0
interface FastEthernet0/0
 ip address 192.168.20.1 255.255.255.0
interface Serial0/1/0
 ip address 192.168.1.1 255.255.255.0
 clock rate 64000

router ospf 100
 log-adjacency-changes
 redistribute rip subnets
 network 192.168.1.0 0.0.0.255 area 1
!
router rip
 version 2
 network 192.168.20.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.1.2
 

router 1:
interface Serial0/1/0
 ip address 192.168.1.2 255.255.255.0
!
interface Serial0/1/1
 ip address 192.168.2.1 255.255.255.0
 clock rate 64000

interface FastEthernet0/0
 ip address 192.168.4.1 255.255.255.0

router ospf 200
 log-adjacency-changes
 redistribute static
 network 192.168.1.0 0.0.0.255 area 1
 network 192.168.2.0 0.0.0.255 area 0
 network 192.168.4.0 0.0.0.255 area 0
!
ip classless
ip route 192.168.0.0 255.255.255.0 192.168.1.1

router 2:
interface Serial0/1/0
 ip address 192.168.2.2 255.255.255.0
!
interface Serial0/1/1
 ip address 192.168.3.1 255.255.255.0
 clock rate 64000

interface FastEthernet0/0
 ip address 192.168.5.1 255.255.255.0

router eigrp 100
 redistribute ospf 300 metric 10000 100 255 1 1500
 network 192.168.3.0
 auto-summary
!
router ospf 300
 log-adjacency-changes
 redistribute eigrp 100 subnets
 network 192.168.2.0 0.0.0.255 area 0
 network 192.168.5.0 0.0.0.255 area 0

router 3:
interface FastEthernet0/0
 ip address 192.168.4.2 255.255.255.0

interface FastEthernet0/1
 ip address 192.168.5.2 255.255.255.0

router ospf 400
 log-adjacency-changes
 network 192.168.0.0 0.0.255.255 area 0

router 4:
interface Loopback1
 ip address 192.168.100.100 255.255.255.0
!
interface Loopback2
 ip address 192.168.200.200 255.255.255.0

interface Serial0/1/0
 ip address 192.168.3.2 255.255.255.0

router eigrp 100
 network 192.168.3.0
 network 192.168.100.0
 network 192.168.200.0
 auto-summary

最后測(cè)試:
左側(cè)到右側(cè)的ping測(cè)試互通性

靜態(tài)、rip、eigrp與ospf路由重發(fā)布的實(shí)例分析 

上述就是小編為大家分享的靜態(tài)、rip、eigrp與ospf路由重發(fā)布的實(shí)例分析了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)頁(yè)名稱(chēng):靜態(tài)、rip、eigrp與ospf路由重發(fā)布的實(shí)例分析
瀏覽地址:http://weahome.cn/article/pscssp.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部