07、RIP Version 2路由协议

上传人:s9****2 文档编号:587962202 上传时间:2024-09-07 格式:PPT 页数:9 大小:310KB
返回 下载 相关 举报
07、RIP Version 2路由协议_第1页
第1页 / 共9页
07、RIP Version 2路由协议_第2页
第2页 / 共9页
07、RIP Version 2路由协议_第3页
第3页 / 共9页
07、RIP Version 2路由协议_第4页
第4页 / 共9页
07、RIP Version 2路由协议_第5页
第5页 / 共9页
点击查看更多>>
资源描述

《07、RIP Version 2路由协议》由会员分享,可在线阅读,更多相关《07、RIP Version 2路由协议(9页珍藏版)》请在金锄头文库上搜索。

1、RIP Version 2路由协议路由协议 【实验目的】 掌握在路由器和三层交换机上配置RIP V2。【背景描述】 假设校园网通过一台路由器连接到校园外的另一台路由器上,现要在路由器上做适当配置,实现校园网内部主机与校园网外部主机的相互通信。 本实验以2台R2624路由器为例,路由器分别为Router1和Router2,路由器之间通过串口采用V35 DCE/DTE电缆连接。将电缆的DCE端连接到Router1的串口Serial 0上,PC1的IP地址和缺省网关分别为172.16.1.11和172.16.1.1,PC2的IP地址和缺省网关分别为172.16.3.22和172.16.3.2,网络掩

2、码都是255.255.255.0。【实现功能】 实现网络的互连互通,从而实现信息的共享和传递。 【实验拓扑】【实验设备】 R2624(2台)、V35DCE(1根)、V35DTE(1根) 【实验步骤】在路由器Router1上配置接口的IP地址和串口上的时钟频率,输入如下代码:Router1(config)# interface fastethernet 0 !进入接口F0的配置模式Router1(config-if)# ip address 172.16.1.1 255.255.255.0 !配置路由器接口F0的IP地址Router1(config-if)# no shutdown !开启路由器

3、fastethernet0接口!Router1(config)# interface serial 0 !进入接口S0配置模式Router1(config-if)# ip address 172.16.2.1 255.255.255.0 !配置路由器接口S0的IP地址Router1(config-if)#clock rate 64000 !配置Router1的时钟频率(DCE)Router1(config-if)# no shutdown !开启路由器serial 0接口验证测试:验证路由器接口的配置验证测试:验证路由器接口的配置 Router1#show ip interface brief

4、 显示如下:显示如下:Interface IP-Address OK? Method Status ProtocolFastEthernet0 172.16.1.1 YES manual up upFastEthernet1 unassigned YES unset administratively down downFastEthernet2 unassigned YES unset administratively down downFastEthernet3 unassigned YES unset administratively down downSerial0 172.16.2.1

5、 YES manual up downSerial1 unassigned YES unset administratively down down在路由器Router1上配置RIP V2路由协议,输入如下代码:Router1(config)# router rip !创建RIP路由进程Router1(config-router)#version 2 !定义RIP版本Router1(config-router)#network 172.16.0.0 !定义关联网络(必须是直连的主类网络地址)验证测试:验证验证测试:验证Router1上的上的RIP V2路由表路由表Router1#show ip

6、 route显示如下:显示如下:Codes: C - connected, S - static, R - RIP O - OSPF, IA - OSPF inter area E1 - OSPF external type 1, E2 - OSPF external type 2Gateway of last resort is not set 172.16.0.0/24 is subnetted, 2 subnetsC 172.16.1.0 is directly connected, FastEthernet0C 172.16.2.0 is directly connected, Ser

7、ial0 在路由器Router2上配置接口的IP地址和串口上的时钟频率,输入如下代码:Router2(config)# interface fastethernet 0 !进入接口F0的配置模式Router2(config-if)# ip address 172.16.3.2 255.255.255.0 !配置路由器接口F0的IP地址Router2(config-if)# no shutdown !开启路由器fastethernet0接口!Router2(config)# interface serial 0 !进入接口S0配置模式Router2(config-if)# ip address

8、172.16.2.2 255.255.255.0 !配置路由器接口S0的IP地址Router2(config-if)# no shutdown !开启路由器serial 0接口验证测试:验证路由器接口的配置验证测试:验证路由器接口的配置Router2#show ip interface brief显示如下:显示如下: Interface IP-Address OK? Method Status ProtocolFastEthernet0 172.16.3.2 YES manual up upFastEthernet1 unassigned YES unset administratively

9、down downFastEthernet2 unassigned YES unset administratively down downFastEthernet3 unassigned YES unset administratively down downSerial0 172.16.2.2 YES SLARP up upSerial1 unassigned YES unset administratively down down在路由器Router2上配置RIP V2路由协议,输入如下代码:Router2(config)# router rip !创建RIP路由进程Router1(co

10、nfig-router)#version 2 !定义RIP版本Router2(config-router)#network 172.16.0.0 !定义关联网络(必须是直连的主类网络地址)验证测试:验证验证测试:验证Router2上的上的RIP V2路由表路由表Router2#show ip route显示如下:显示如下:Codes: C - connected, S - static, R - RIP O - OSPF, IA - OSPF inter area E1 - OSPF external type 1, E2 - OSPF external type 2Gateway of la

11、st resort is not set 172.16.0.0/24 is subnetted, 3 subnetsR 172.16.1.0 120/1 via 172.16.2.1, 00:00:04, Serial0C 172.16.2.0 is directly connected, Serial0C 172.16.3.0 is directly connected, FastEthernet0 测试网络的连通性,输入如下代码:C:ping 172.16.3.22 !从PC1 ping PC2 显示网络连通【注意事项】当定义RIP版本后,路由器只接收该版本的路由信息;也可以在接口上定义只

12、接收或发送某一RIP版本或两个版本的路由信息;缺省情况下,路由器接收两个RIP版本的路由信息,但只发送版本1的路由信息;在三层交换机上配置RIP V2与在路由器上配置一样。 【参考配置】Router1#show running-config ! 显示路由器Router1的全部配置Current configuration:!version 6.14(2)!hostname Router1!enable secret 5 $1$ntvG$M9anDBfVvB7o33mc.TaZk0!ip subnet-zero!interface FastEthernet0 ip address 172.16.

13、1.1 255.255.255.0!interface FastEthernet1 no ip address shutdown!interface FastEthernet2no ip address shutdown!interface FastEthernet3 no ip address shutdown!interface Serial0 ip address 172.16.2.1 255.255.255.0 clock rate 64000!interface Serial1 no ip address shutdown!voice-port 0!voice-port 1!voic

14、e-port 2!voice-port 3voice-port 0!voice-port 1!voice-port 2!voice-port 3router rip version 2 network 172.16.0.0!ip classless!line con 0line 1 8line aux 0line vty 0 4 password star login!endRouter2#show running-config ! 显示路由器Router2的全部配置Building configurationCurrent configuration:!hostname Router2 !e

15、nable secret 5 $1$cqtw$OZvzRU/hDE6/1c5XnBlNI/ ! ip subnet-zero ! interface FastEthernet0 ip address 172.16.3.2 255.255.255.0 !interface FastEthernet1 no ip addressshutdown!interface Serial0 ip address 172.16.2.2 255.255.255.0!interface Serial1 no ip address shutdown!router rip version 2 network 172.16.0.0!ip classless!line con 0line aux 0line vty 0 4 password star login!end

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 商业/管理/HR > 劳务/用工合同

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号