华 北 电 力 大 学 实 验 报 告
华北电力大学
实 验 报 告
实验名称 互联网模拟
课程名称 计算机网络体系结构
学生姓名: 号: 成 绩:
指导教师:李丽芬 实验日期:2015年12月5日第 页 共 页
| |
| |
专业班级:网络 学
华 北 电 力 大 学 实 验 报 告
一、 实验目的与要求 1.实验目的 将网络基本原理及基本概念用于实际,将书本上抽象的概念与具体的实现技术结合起来,使学习深化,培养学生对基本原理的应用能力以及实际动手能力。 2.要求 独立完成课程设计题目以及课程设计报告。报告应包括设计思路、网络拓扑图、开发中遇到的问题以及解决方法。 二、所用仪器、设备 (1)实验室综合管理平台LIMP (2)机架控制和管理服务器RCMS (3)网络拓扑连接器NTC (4)四台主机、四台交换机、两台两层路由器、两台三层路由器 三、设计正文 1.网络拓扑图 说明:四个路由器RSR20-5-1(RSR20-14E)、RSR20-5-2(RSR20-14E)、RSR20-5-3(RSR20-14E)、RSR20-5-4(RSR20-14E)之间存在静态连接。 四台PC的IP分别为: PC51:222.155.6.5 PC52:222.155.7.5 PC53:222.155.8.5 PC54:222.155.5.5 本地连接1 IP: PC51:192.168.1.51 PC52:192.168.1.52 PC53:192.168.1.53 PC54:192.168.1.54 第 页 共 页
华 北 电 力 大 学 实 验 报 告
2.地址分配 路由器R1 S2/0端地址:222.155.2.1 路由器R1 S3/0端地址:222.155.1.2 路由器R1与路由器R2间的地址:222.155.2.3 路由器R1与路由器R4间的地址:222.155.1.3 路由器R1与两层交换机1间接口ge 0/1 路由器R2 S2/0端地址:222.155.2.2 路由器R2 S3/0端地址:222.155.3.1 路由器R2与路由器R1间的地址:222.155.2.3 路由器R2与路由器R3间的地址:222.155.3.3 路由器R2与两层交换机2间接口ge 0/1 路由器R3 S2/0端地址:222.155.3.2 路由器R3 S3/0端地址:222.155.4.1 路由器R3与路由器R2间的地址:222.155.3.3 路由器R3与路由器R4间的地址:222.155.4.3 路由器R3与三层交换机1间接口ge 0/1 路由器R4 S2/0端地址:222.155.1.2 路由器R4 S3/0端地址:222.155.1.2 路由器R4与路由器R3间的地址:222.155.4.3 路由器R4与路由器R1间的地址:222.155.1.3 路由器R4与三层交换机2间接口ge 0/1 PC1地址:222.155.6.5 网关:222.155.6.1 PC2地址:222.155.7.5 网关:222.155.7.1 PC3地址:222.155.8.5 网关:222.155.8.1 PC4地址:222.155.5.5 网关:222.155.5.1 3.路由器的配置 路由器R1的RIP配置(代码): R1(config)#interface S 2/0 R1(config-if)#ip address 222.155.2.1 255.255.255.0 R1(config-if)#no shutdown R1(config-if)#exit R1(config)#interface S 3/0 R1(config-if)#ip address 222.155.1.2 255.255.255.0 R1(config-if)#no shutdown R1(config-if)#exit 第 页 共 页
华 北 电 力 大 学 实 验 报 告
R1(config)#interface gi0/1 R1(config-if)#ip address 222.155.6.1 255.255.255.0 R1(config-if)#no shutdown R1(config-if)#exit R1(config)# router rip R1(config-router)#network 222.155.2.0 R1(config-router)#network 222.155.1.0 R1(config-router)#network 222.155.6.0 R1(config-router)#end 路由器R2的RIP配置(代码): R2(config)#interface S 2/0 R2(config-if)#ip address 222.155.2.2 255.255.255.0 R2(config-if)#no shutdown R2(config-if)#exit R2(config)#interface S 3/0 R2(config-if)#ip address 222.155.3.1 255.255.255.0 R2(config-if)#no shutdown R2(config-if)#exit R2(config)#interface gi0/1 R2(config-if)#ip address 222.155.7.1 255.255.255.0 R2(config-if)#no shutdown R2(config-if)#exit R2(config)# router rip R2(config-router)#network 222.155.2.0 R2(config-router)#network 222.155.3.0 R2(config-router)#network 222.155.7.0 R2(config-router)#end 路由器R3的RIP配置(代码): R3(config)#interface S 2/0 R3(config-if)#ip address 222.155.3.2 255.255.255.0 R3(config-if)#no shutdown R3(config-if)#exit R3(config)#interface S 3/0 R3(config-if)#ip address 222.155.4.1 255.255.255.0 R3(config-if)#no shutdown 第 页 共 页
华 北 电 力 大 学 实 验 报 告
R3(config-if)#exit R3(config)#interface gi0/1 R3(config-if)#ip address 222.155.8.1 255.255.255.0 R3(config-if)#no shutdown R3(config-if)#exit R3(config)# router rip R3(config-router)#network 222.155.3.0 R3(config-router)#network 222.155.4.0 R3(config-router)#network 222.155.8.0 R3(config-router)#end 路由器R4的RIP配置(代码): R4(config)#interface S 2/0 R4(config-if)#ip address 222.155.4.2 255.255.255.0 R4(config-if)#no shutdown R4(config-if)#exit R4(config)#interface S 3/0 R4(config-if)#ip address 222.155.1.1 255.255.255.0 R4(config-if)#no shutdown R4(config-if)#exit R4(config)#interface gi0/1 R4(config-if)#ip address 222.155.5.1 255.255.255.0 R4(config-if)#no shutdown R4(config-if)#exit R4(config)# router rip R4(config-router)#network 222.155.4.0 R4(config-router)#network 222.155.1.0 R4(config-router)#network 222.155.5.0 R4(config-router)#end 第 页 共 页
华北电力大学网络体系结构实验报告资料



