实验5 动态路由协议配置-RIP

【实验目的及要求】
1.理解动态路由协议的工作原理;
2.掌握动态路由协议的配置方法
3.通过动态路由技术实现网络的互连互通,从而实现信息的共享和传递。
【实验内容】
假设校园网通过1台三层交换机连接到校园网出口路由器,路由器连接到校园外的另1台路由器上,现要在路由器上做适当配置,实现校园网内部主机与校园网外部的相互通信。
本案例以两台R2624路由器、1台三层交换机为例。S31上划分有VLAN10和VLAN50,其中VLAN10用于连接Router1,VLAN50用于连接校园网主机。路由器分别命名为Router1和Router2,路由器之间用过串口采用V35 DCE/DTE电缆连接,DCE端连接到Router1上。PC1的IP地址和缺省网关分别为172.16.5.11和172.16.5.1,PC2的IP地址和缺省网关分别为172.16.3.22和172.16.3.1,网络掩码都是255.255.255.0.
【实验拓扑】
路由器之间相连之前,需要先为两个路由器开启串行接口
实验5 动态路由协议配置-RIP_第1张图片

【IP地址规划表】
实验5 动态路由协议配置-RIP_第2张图片

【案例实施】
步骤1 基本配置
1.1三层交换机的基本配置

Switch>enable
Switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#hostname S31
S31(config)#VLan 10
S31(config-vlan)#exit

S31(config)#interface range fastEthernet 0/1-2
S31(config-if-range)#switchport access vlan 10
S31(config-if-range)#exit

S31(config)#interface vlan 10
S31(config-if)#ip address 172.16.10.254 255.255.255.0
S31(config-if)#no shutdown
S31(config-if)#exit

S31(config)#interface f0/24
S31(config-if)#no switchport
S31(config-if)#ip address 172.16.1.1 255.255.255.0
S31(config-if)#exit
S31(config)#ip routing

验证测试:
(1)验证VLAN相关配置
S31#show vlan
实验5 动态路由协议配置-RIP_第3张图片

(2)验证接口IP配置
这里写图片描述

1.2路由器基本配置

Router1:
Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname router1
router1(config)#interface FastEthernet0/0
router1(config-if)#ip address 172.16.1.254 255.255.255.0
router1(config-if)#no shutdown
router1(config-if)#exit

router1(config)#interface serial 0/1/0
router1(config-if)#ip address 172.16.2.1 255.255.255.0
router1(config-if)#no shutdown
router2:
Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname router2
router2(config)#interface serial 0/1/0
router2(config-if)#ip address 172.16.2.2 255.255.255.0
router2(config-if)#no shutdown
router2(config-if)#clock rate 64000
router2(config-if)#exit

router2(config)#interface FastEthernet0/0
router2(config-if)#ip address 172.16.3.254 255.255.255.0
router2(config-if)#no shutdown
router2(config-if)#exit

验证测试:验证接口的配置和状态
router1#show ip interface brief

实验5 动态路由协议配置-RIP_第4张图片

router2#show ip interface brief

实验5 动态路由协议配置-RIP_第5张图片
注意观察接口IP地址和子网掩码以及是否启用(状态up)

步骤2 配置RIP
S31配置RIP协议

S31(config)#router rip                  ! 开启rip协议进程
S31(config-router)#network 172.16.10.0    ! 申明本设备的直连网段
S31(config-router)#network 172.16.1.0
S31(config-router)#version  2            ! 定义rip协议v2

router1配置RIP协议

router1(config)#router rip
router1(config-router)#network 172.16.1.0
router1(config-router)#network 172.16.2.0
router1(config-router)#version 2
router1(config-router)#no auto-summary   ! 关闭路由信息的自动汇总

router2配置RIP协议

router2(config)#router rip
router2(config-router)#network 172.16.2.0
router2(config-router)#network 172.16.3.0
router2(config-router)#version 2
router2(config-router)#no auto-summary

步骤3 验证三台路由设备(S31、Router1和Router2)的路由表,查看是否学习了其它网段的路由信息

步骤4 验证测试
PC>ping 172.16.10.2 !从PC1 ping PC2
实验5 动态路由协议配置-RIP_第6张图片
PC>ping 172.16.3.1 !从PC1 ping PC3
实验5 动态路由协议配置-RIP_第7张图片
注意事项
1. 在串口上配置时钟频率时,一定要在电缆的DCE端配置,否则链路不通。
2. No auto-summary 功能只在RIP2支持。
3. S31没有No auto-summary命令。
4. PC主机网关一定要指向直连端口IP地址,例如PC1网关指向三层交换机vlan10的IP地址。

你可能感兴趣的:(计算机网络学习)