当前位置:文档之家› RIP路由协议配置

RIP路由协议配置

网络设计与规划实验二RIP路由协议配置

2.1 实验目的

通过本实验,学生可以掌握以下技能:

1.路由器基本配置使用方法;

2.配置RIP协议;

3.配置RIPv2协议;

4.查看上述配置项目的相关信息。

2.2 实验任务

1.配置路由器端口的IP地址;

2.配置RIP协议;

3.配置RIP v2协议;

4.使得不同网段的PC机能够通信;

2.3 实验设备

CISCO2600交换机三台,带网卡的PC机两台,控制电缆两条,串口连接线两条。

交叉线序网线两条以及Consoie电缆;

2.4 实验环境

如图所示,用串口连接线把路由器router1的串口s0和router3的串口s0连接起来;把路由器router2的串口s0和router3的串口s1连接起来。PC1与路由器router1的FastEthernet0/1连接,PC2与路由器router2的FastEthernet0/11连接,电缆连接完成后。给所有设备加电,开始进行实验。

2.5实验报告要求

实验报告信息要求完整,包括学号、姓名、班级、专业、课程名称、教师名称、实验目的、实验任务、实验环境、实验步骤及详细记录、实验过程中存在的问题及实验心得体会等内容。

2.6实验步骤通过PC1上的超级终端连接路由器router1,并为路由器命名

Router> enable

Router# configure terminal

Router(config)#

Router(config)# hostname router1

router1(config)#

1.设置路由器router1的Ethernet0端口的IP地址

router1(config)# interface ethernet0

router1(config-if)# ip address 11.168.1.11 255.0.0.0

router1(config-if)# no shutdown

2.设置路由器router1的串口s0端口的IP地址

router1(config-if)# int s0

router1(config-if)# ip address 192.168.1.13 255.255.255.0

router1(config-if)# no shutdown

3.设置PC1的IP地址11.168.1.10,网关为11.168.1.11

4.通过超级终端连接路由器router3,并为路由器命名

Router> enable

Router# configure terminal

Router(config)#

Router(config)# hostname router3

Router3(config)#

5.设置路由器router3的串口s0端口的IP地址,并设置数据传输率

Router3(config-if)# int s0

Router3(config-if)# ip address 192.168.1.31 255.255.255.0

Router3(config-if)# no shut

Router3(config-if)#clock rate 9600

6.设置路由器router3的串口s1端口的IP地址,并设置数据传输率

Router3(config-if)# int s1

Router3(config-if)# ip address 10.168.1.32 255.0.0.0

Router3(config-if)# no shut

Router3(config-if)#clock rate 9600

7.通过PC2上的超级终端连接路由器router2,并为路由器命名

Router> enable

Router# configure terminal

Router(config)#

Router(config)# hostname router2

Router2(config)#

8.设置路由器router2的Ethernet0端口的IP地址

Router2(config)# interface ethernet0

Router2(config-if)# ip address 12.168.1.22255.0.0.0

Router2(config-if)# no shutdown

9.设置路由器router2的串口s0端口的IP地址

Router2(config-if)# int s0

Router2(config-if)# ip address 10.168.1.23 255.0.0.0

Router2(config-if)# no shutdown

10.设置PC2的IP地址12.168.1.10,网关为12.168.1.22

11.测试PC1与PC2的连通性,在pc1上

Pc1>ping 12.168.1.10

由于路由器上不存在相关路由,所以PC之间还不能够通信。

12.在router1上启用RIP协议

Router1# configure terminal

Router1(config)#router rip

Router1(config)#network 11.0.0.0

Router1(config)#network 192.168.1.0

13.在router2上启用RIP协议

Router2# configure terminal

Router2(config)#router rip

Router2(config)#network 10.0.0.0

Router2(config)#network 12.0.0.0

相关主题