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

思科Cisco路由器配置——RIP路由全網(wǎng)互通配置實驗詳解

  發(fā)布時間:2020-02-28 14:35:26   作者:Stalk   我要評論
這篇文章主要介紹了思科Cisco RIP路由全網(wǎng)互通配置實驗,詳細(xì)分析了思科Cisco基于rip協(xié)議的全網(wǎng)互通配置相關(guān)步驟、配置命令與操作注意事項,需要的朋友可以參考下

本文實例講述了思科Cisco RIP路由全網(wǎng)互通配置實驗。分享給大家供大家參考,具體如下:

一、實驗?zāi)康?/strong>:用rip路由實現(xiàn)全網(wǎng)互通

二、拓?fù)鋱D

三、具體步驟配置

(1)R1路由器配置

Router>enable  --進入特權(quán)模式
Router#configure terminal  --進入全局配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1  --修改路由器名為R1
R1(config)#interface f0/0  --進入端口
R1(config-if)#ip address 192.168.1.1 255.255.255.0  --為端口配置ip地址
R1(config-if)#no shutdown  --激活端口

R1(config-if)#interface s0/0/0  --進入端口
R1(config-if)#ip address 172.16.4.2 255.255.255.0  --為端口配置ip地址
R1(config-if)#clock rate 64000  --配置時鐘同步速率
This command applies only to DCE interfaces
R1(config-if)#no shutdown  --激活端口

%LINK-5-CHANGED: Interface Serial0/0/0, changed state to down
R1(config-if)#interface s0/0/1  --進入端口
R1(config-if)#ip address 10.3.0.1 255.255.255.0  --為端口配置ip地址
R1(config-if)#clock rate 64000  --配置時鐘同步速率
R1(config-if)#no shutdown  --激活端口

%LINK-5-CHANGED: Interface Serial0/0/1, changed state to down
R1(config-if)#exit   --返回上一級
R1(config)#route rip  --開啟rip協(xié)議
R1(config-router)#version 2  --版本2
R1(config-router)#no auto-summary  --關(guān)閉自動匯總
R1(config-router)#network 172.16.0.0   --添加直連網(wǎng)段到rip
R1(config-router)#network 10.0.0.0
R1(config-router)#network 192.168.1.0
R1(config-router)#end  --返回特權(quán)模式

(2)R2路由器配置

Router>enable  --進入特權(quán)模式
Router#configure terminal   --進入全局配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R2  --修改路由器名為R2
R2(config)#interface f0/0  --進入端口
R2(config-if)#ip address 10.2.0.1 255.255.0.0   --為端口配置ip地址
R2(config-if)#no shutdown  --激活端口

R2(config-if)#interface s0/0/0  --進入端口
R2(config-if)#ip address 172.16.4.1 255.255.255.0   --為端口配置ip地址
R2(config-if)#no shutdown  --激活端口

R2(config-if)#exit  --返回上一級
R2(config)#route rip  --開啟rip協(xié)議
R2(config-router)#version 2  --版本2
R2(config-router)#no auto-summary  --關(guān)閉自動匯總
R2(config-router)#network 172.16.0.0  --添加直連網(wǎng)段到rip
R2(config-router)#network 10.0.0.0
R2(config-router)#end  --返回特權(quán)模式

(3)R3路由器配置

Router>enable  --進入特權(quán)模式
Router#configure terminal  --進入全局配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R3  --修改路由名為R3
R3(config)#interface f0/0  --進入端口
R3(config-if)#ip address 172.16.3.1 255.255.255.0  --為端口配置ip地址
R3(config-if)#no shutdown  --激活端口

R3(config-if)#interface s0/0/0  --進入端口
R3(config-if)#ip address 10.3.0.2 255.255.0.0  --為端口配置ip地址
R3(config-if)#no shutdown  --激活端口

R3(config-if)#exit  --返回上一級
R3(config)#route rip  --開啟rip協(xié)議
R3(config-router)#version 2  --版本2
R3(config-router)#no auto-summary  --關(guān)閉自動匯總
R3(config-router)#network 10.0.0.0  --添加直連網(wǎng)段到rip
R3(config-router)#network 172.16.0.0
R3(config-router)#end  --返回特權(quán)模式

(4)R4路由器配置

Router>enable  --進入特權(quán)模式
Router#configure terminal  --進入全局配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R4  --修改主機名為R4
R4(config)#interface f0/1  --進入端口
R4(config-if)#ip address 192.168.2.1 255.255.255.0  --為端口配置ip地址
R4(config-if)#no shutdown  --激活端口

R4(config-if)#interface f0/0  --進入端口
R4(config-if)#ip address 192.168.1.2 255.255.255.0  --為端口配置ip地址
R4(config-if)#no shutdown  --激活端口

R4(config-if)#exit  --返回上一級
R4(config)#route rip  --開rip協(xié)議
R4(config-router)#version 2  --版本
R4(config-router)#no auto-summary  --關(guān)閉自動匯總
R4(config-router)#network 192.168.1.0  --添加直連網(wǎng)段到rip
R4(config-router)#network 192.168.2.0
R4(config-router)#end  --返回特權(quán)模式

四、驗證測試:

(1)查看R1路由表信息

(2)測試各臺主機相互之間是否能ping

1、PC1PC2

2、PC2PC3

 

3、PC3PC1

 

結(jié)果:全網(wǎng)互通成功

相關(guān)文章

最新評論

阜南县| 定南县| 平顺县| 沭阳县| 读书| 遂宁市| 江华| 阳曲县| 通榆县| 海门市| 灵石县| 麻栗坡县| 贞丰县| 大姚县| 咸丰县| 信丰县| 秀山| 吉隆县| 盐城市| 白河县| 旺苍县| 长汀县| 同仁县| 邹平县| 九龙城区| 马公市| 会东县| 庄浪县| 壤塘县| 邵武市| 清水河县| 绥德县| 彰武县| 荣昌县| 新沂市| 册亨县| 陇川县| 徐水县| 休宁县| 顺昌县| 连城县|