通信网络集成课程设计实验报告_第1页
通信网络集成课程设计实验报告_第2页
通信网络集成课程设计实验报告_第3页
通信网络集成课程设计实验报告_第4页
通信网络集成课程设计实验报告_第5页
已阅读5页,还剩8页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

通信网络集成课程设计报告通信网络集成课程设计报告 姓名 学号 班级 一 目的和要求一 目的和要求 主要目的是通过实际操作和实验以及编程等 加深我们对课堂所学知识的 理解 提高学生对网络系统的感性认识 培养学生的动手技能和自学能力 本课程设计要求学生通过完成彼此具有独立性又相互联系的几个小实验 使学生能够对网络相关设备和服务器进行安装和配置 对网络设计的概念有个 比较完整的认识 二 实验环境二 实验环境 网络配置实验在模拟软件上进行操作 选用的软件包括 RouterSim CCNA 2 Boson Netsim 和 RouterSim 三 具体内容三 具体内容 1 熟悉实验环境 通过参考软件中自带的帮助 参考资料和教师的讲解等 熟悉模拟器操作 的常用命令 对配置模式 配置参数的查看 保存 清除等进行了解 2 网络拓扑图的设计 熟悉不同网络设备以及相关的接口 如 路由器 交换机 主机 学习利 用不同网络设备搭建网络系统 3 网络路由器不同端口的配置 学习如何对网络路由器的以太网接口 快速以太网接口 串行接口以及相 关参数的配置 以及环回接口 令牌环接口的配置 并且能够对配置结构进行 验证 4 静态路由的配置 复习路由的概念 学习静态路由的设置 默认路由的设置 以及已有路由 的删除 5 动态路由的配置 复习动态路由协议 深入掌握 RIP 协议的原理 能够进行动态 RIP 路由设 置 并对设置的结果进行验证 查看 实验结果 1 网络的拓扑结构 利用 Bosom Network Designer 设计这个拓扑图 然后导入 RouterSim 进 行路由器的各项配置 以下是配置代码及其解释 2 实验代码及解释 Route2621 对交换机 2621 进行配置 Press Enter to Start 进入用户 EXEC 模式 Router en 进入特权 EXEC 模式 Router config t 进入全 局配置模式 Enter configuration commands one per line End with CNTL Z Router config hostname route2621 进入 全局配置模式 route2621 config interface f0 1 设置网络接口 f0 1 进入接口配置模式 route2621 config if ip address 192 168 1 37 255 255 255 224 配置 ip 地址 这里的 ip 地址是根据给定的网段进行子网的划分 然后得出各个路由 器节点的 ip 地址 route2621 config if no shut 启用该接口 全 名是 no shutdown LINK 3 UPDOWN Interface FastEthernet0 1 changed state to up 接口本身已 经已启动 route2621 config if exit 退 出该接口的配置 route2621 config interface f0 0 进入接口 f0 0 配置与 上 f0 1 配置类似 route2621 config if ip address 192 168 1 70 255 255 255 224 route2621 config if no shut LINK 3 UPDOWN Interface FastEthernet0 0 changed state to up route2621 config if exit 以下三句是对 route2621 要联通某一个子网上 的接口需要经过的下一跳进行配置 格式为目标网段 子网掩码 下一跳 ip 地址 route2621 config ip route 192 168 1 160 255 255 255 224 192 168 1 69 route2621 config ip route 192 168 1 128 255 255 255 224 192 168 1 69 route2621 config ip route 192 168 1 96 255 255 255 224 192 168 1 69 route2621 config exit route2621 show ip route 显示相应接 口信息 Codes C connected S static I IGRP R RIP M mobile B BGP D EIGRP EX EIGRP external O OSPF IA OSPF inter area E1 OSPF external type 1 E2 OSPF external type 2 E EGP i IS IS L1 IS IS level 1 L2 IS IS level 2 candidate default U per user static route Gateway of last resort is not set C 192 168 1 32 27 is directly connected FastEthernet0 1 C 192 168 1 64 27 is directly connected FastEthernet0 0 S 192 168 1 160 27 1 0 via 192 168 1 69 S 192 168 1 128 27 1 0 via 192 168 1 69 S 192 168 1 96 27 1 0 via 192 168 1 69 以上信息与原图对照 就可查出是否错误 routeA Press Enter to Start Router en Router config t Enter configuration commands one per line End with CNTL Z Router config hostname routeA routeA config interface e0 对以太网接口进行 配置 routeA config if ip address 192 168 1 69 255 255 255 224 routeA config if no shut LINK 3 UPDOWN Interface Ethernet0 changed state to up routeA config if exit routeA config interface s0 对点到点串行接口 进行配置 routeA config if ip address 192 168 1 102 255 255 255 224 routeA config if no shut LINK 3 UPDOWN Interface Serial0 changed state to up LINK 3 UPDOWN Interface Serial0 changed state to down LINEPROTO 5 UPDOWN Line protocol on Interface Serial0 changed state to down routeA config if encap ppp 使用 ppp 协议封 routeA config if exit 对要联通某一个子网上的接口需要经过的下一跳进行配置 格式为目标网段 子网掩码 下一跳 ip 地址 routeA config ip route 192 168 1 32 255 255 255 224 192 168 1 70 routeA config ip route 192 168 1 160 255 255 255 224 192 168 1 101 routeA config ip route 192 168 1 128 255 255 255 224 192 168 1 101 routeA config exit LINK 3 UPDOWN Interface Serial0 changed state to up LINEPROTO 5 UPDOWN Line protocol on Interface Serial0 changed state to up routeB Press Enter to Start Router Router en Router config t Enter configuration commands one per line End with CNTL Z Router config hostname routeB routeB config interface s0 对点到点串 行接口进行配置 routeB config if ip address 192 168 1 101 255 255 255 224 routeB config if no shut LINK 3 UPDOWN Interface Serial0 changed state to up LINK 3 UPDOWN Interface Serial0 changed state to down LINEPROTO 5 UPDOWN Line protocol on Interface Serial0 changed state to down routeB config if encap ppp 使用 ppp 协议封 routeB config if clock rate 64000 配置 s0 端口的 时钟频率 routeB config if exit LINK 3 UPDOWN Interface Serial0 changed state to up LINEPROTO 5 UPDOWN Line protocol on Interface Serial0 changed state to up routeB config interface s1 routeB config if ip address 192 168 1 134 255 255 255 224 routeB config if no shut LINK 3 UPDOWN Interface Serial1 changed state to up routeB config if encap ppp LINK 3 UPDOWN Interface Serial1 changed state to down LINEPROTO 5 UPDOWN Line protocol on Interface Serial1 changed state to down routeB config if clock rate 64000 配置 s1 端口 的时钟频率 routeB config if exit routeB config ip route 192 168 1 32 255 255 255 224 192 168 1 102 routeB config ip route 192 168 1 64 255 255 255 224 192 168 1 102 routeB config ip route 192 168 1 160 255 255 255 224 192 168 1 133 routeB config exit LINK 3 UPDOWN Interface Serial1 changed state to up LINEPROTO 5 UPDOWN Line protocol on Interface Serial1 changed state to up routeC Press Enter to Start Router en Router config t Enter configuration commands one per line End with CNTL Z Router config hostname routerC routerC config interface s0 routerC config if ip address 192 168 1 133 255 255 255 224 routerC config if no shut LINK 3 UPDOWN Interface Serial0 changed state to up LINK 3 UPDOWN Interface Serial0 changed state to down LINEPROTO 5 UPDOWN Line protocol on Interface Serial0 changed state to down routerC config if encap ppp LINK 3 UPDOWN Interface Serial0 changed state to up LINEPROTO 5 UPDOWN Line protocol on Interface Serial0 changed state to up routerC config if exit routerC config interface e0 routerC config if ip address 192 168 1 166 255 255 255 224 routerC config if no shut LINK 3 UPDOWN Interface Ethernet0 changed state to up routerC config if exit routerC config ip route 192 168 1 32 255 255 255 224 192 168 1 134 routerC config ip route 192 168 1 64 255 255 255 224 192 168 1 134 routerC config ip route 192 168 1 96 255 255 255 224 192 168 1 134 routerC config exit hostA 配置主机的 ip 地址 子网掩 码 默认网关 配置图片在后 Boson BOSS 5 0 Copyright 1998 2003 Boson Software Inc Use the command help to get started Press Enter to begin C C winipcfg C ping 192 168 1 167 Pinging 192 168 1 167 with 32 bytes of data Reply from 192 168 1 167 bytes 32 time 60ms TTL 241 Reply from 192 168 1 167 bytes 32 time 60ms TTL 241 Reply from 192 168 1 167 bytes 32 time 60ms TTL 241 Reply from 192 168 1 167 bytes 32 time 60ms TTL 241 Reply from 192 168 1 167 bytes 32 time 60ms TTL 241 Ping statistics for 192 168 1 167 Packets Sent 5 Received 5 Lost 0 0 loss 丢失 0 表明 ping 通了 Approximate round trip times in milli seconds Minimum 50ms Maximum 60ms Average 55ms hostB 配置主机 B 与 A 类似 C winipcfg C ping 192 168 1 34 Pinging 192 168 1 34 with 32 bytes of data Reply from 192 168 1 34 bytes 32 time 60ms TTL 241 Reply from 192 168 1 34 bytes 32 time 60ms TTL 241 Reply from 192 168 1 34 bytes 32 time 60ms TTL 241 Reply from 192 168 1 34 bytes 32 time 60ms TTL 241 Reply from 192 168 1 34 bytes 32 time 60ms TTL 241 Ping statistics for 192 168 1 34 Packets Sent 5 Received 5 Lost 0 0 loss Approximate round trip times in milli seconds Minimum 50ms Maximum 60ms Average 55ms 四 实验心得四 实验心得 本次实

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论