




已阅读5页,还剩22页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
南通大学计算机科学与技术学院计算机网络课程设计报 告 书 班 级: 姓 名: 学 号: 指导教师: 日 期 : 目录 一、环境背景 二、课设要求 三、课设内容 1.具体配置内容 2.总拓扑结构图 3.配置方案及代码 四、验证 五、小结一、环境背景某中小型企业.有两个部门,销售部(vlan 10)与行政部(vlan 20).同部门之间采用二层交换网络相连;不同部门之间采用单臂路由方式跨VLAN互访.企业有一台内部web服务器,承载着内部网站,方便员工了解公司的即时信息.局域网路由器选用任意一种路由协议(静态路由、动态路由协议),企业有一条专线接到运营商用以连接互联网,采用PPP封装,由于从运营商只获取到一个公网IP地址,所以企业员工上网需要做NAT网络地址转换.二、课设要求 在PT中搭建如下的网络环境3、 课设内容1.具体配置内容一、基础配置按照拓扑搭建网络:1.为R1/R2/R3/R4/Sw1/Sw2命名.2.在Sw1/Sw2上设置特权密文密码cisco.关闭远程访问登陆密码.3.配置R1接口.4.配置R2接口.5.配置R3接口.6.配置R4接口.7.配置PC1/PC2/PC3/PC4/Server的IP地址以及默认网关.(R4/R5的S1/1 S1/0接口、R1的F0/1.10、R3的F0/0.20接口先不配置)二、交换部分1.TrunkSw1与Sw2的F0/11,F0/12接口封装为Trunk.2.Etherchannel做Etherchannel捆绑Sw1与Sw2的F0/11,F0/12接口.要求使用Cisco PAGP协议中的主动协商模式.3.VTP在Sw1与Sw2上配置VTP, 域名为CCNA.Sw1作为Server;Sw2作为Client,设置密码为cisco.4.VLAN创建vlan 10,命名为sales; vlan 20,命名为Admin.并把相应的接口划分到所属vlan中.5.管理vlan/访问控制在Sw1上设置管理vlan 10,地址为192.168.1.10/24;管理vlan 20,地址为192.168.2.10/24.做ACL访问控制,要求只有PC1/PC2可以远程访问Sw1.6.单臂路由配置单臂路由:vlan 10以R1的F0/1.10作为出口网关;vlan 20以R3的F0/0.20作为出口网关.三路由部分1.默认路由在R4上配置默认路由,出口指向运营商.2.RIP在R1/R2/R3/R4上配置RIPv2(关闭自动汇总),使得全网互通R4与运营商R5的S1/1 S1/0接口不宣告.3.负载均衡在R1上观察去往192.168.2.0网络的等价负载均衡现象,请写出实现RIP负载均衡的条件,RIP的Metric是什么. 4.ACL在R1上做ACL访问限制:所有用户都可以ping通Server; 除PC1和PC4以外,其他用户都可以访问内部网站.四广域网部分1.PPPR1/R2的串行链路封装为PPP,做PAP认证.R1为R2创建用户名BBB,密码为222;R2为R1创建用户名AAA,密码为111.2.NAT在R4上配置NAT,使得企业内部所有PC都能上网(ping通运营商的200.1.1.2), Server不能连接外网.至此:内网PC全部互联,PC2/PC3可以访问内部网站.2.总拓扑结构图3、具体配置方案R1配置:具体代码如下:RouterRouterenRouter#conf tRouter(config)#hostname R1R1(config)#int f0/1.10R1(config-subif)#encapsulation dot1Q 10R1(config-subif)#ip address 192.168.1.254 255.255.255.0R1(config)#int f0/1R1(config-if)#no shutdownR1(config-subif)#exitR1(config)#interface Serial0/3/0R1(config-if)#ip address 11.10.20.13 255.255.255.0R1(config-if)#no shutdownR1(config-if)#exitR1(config)#int f0/0R1(config-if)#ip address 172.16.1.1 255.255.255.0R1(config-if)#no shutdownR1(config-if)#interface Serial0/2/0R1(config-if)#ip address 10.1.1.1 255.255.255.0R1(config-if)#no shutdownR1#conf tR1(config)#router ripR1(config-router)#version 2R1(config-router)#network 172.16.0.0R1(config-router)#network 192.168.1.0R1(config-router)#network 10.0.0.0R1(config-router)#R1(config-router)#no auto-summaryR1(config)#ip route 192.168.2.0 255.255.255.0 172.16.1.4 119Router2配置:代码如下:RouterRouterenRouter#conf tRouter(config)#hostname R2R2(config)#interface Serial0/1/0R2(config-if)#ip address 10.1.1.2 255.255.255.0R2(config-if)#no shutdownR2(config-if)#clock rate 20000R2(config-if)#exitR2(config)#interface Serial0/3/0R2(config-if)#ip address 10.2.2.2 255.255.255.0R2(config-if)#no shutdownR2(config-if)#clock rate 20000R2(config-if)#R2#conf tR2(config)#router ripR2(config-router)#version 2R2(config-router)#network 10.0.0.0R2(config-router)#no auto-summaryRouter3配置:代码如下:RouterRouterenRouter#conf tRouter(config)#hostname R3R3(config)#interface Serial0/3/0R3(config-if)#ip address 12.2.2.3 255.255.255.0R3(config-if)#no shutdownR3(config-if)#exitR3(config)#int f0/0.20R3(config-subif)#encapsulation dot1Q 20R3(config-subif)#ip address 192.168.2.254 255.255.255.0R3(config)#int f0/0R3(config-if)#no shutdownR3(config-subif)#exitR3(config)#int f0/1R3(config-if)#ip address 172.16.2.3 255.255.255.0R3(config-if)#no shutdownR3#R3#conf tR3(config)#router ripR3(config-router)#version 2R3(config-router)#network 192.168.2.0R3(config-router)#network 172.16.0.0R3(config-router)#network 10.0.0.0R3(config-router)#no auto-summaryRouter4配置:代码如下:RouterRouterenRouter#conf tRouter(config)#hostname R4R4(config)#int f0/1R4(config-if)#ip address 172.16.2.4 255.255.255.0R4(config-if)#no shutdownR4(config-if)#exitR4(config)#int f0/0R4(config-if)#ip address 172.16.1.4 255.255.255.0R4(config-if)#no shutdownR4(config-if)#exitR4(config)#int s1/1R4(config-if)#ip address 200.1.1.1 255.255.255.0R4(config-if)#no shutdownR4(config-if)#R4R4enR4#conf tR4(config)#ip route 0.0.0.0 0.0.0.0 200.1.1.2R4enR4#conf tR4(config)#router ripR4(config-router)#version 2R4(config-router)#default-information originateR4(config-router)#no auto-summaryR4(config-router)#network 172.16.0.0Router5配置:(运营商)代码如下:RouterRouterenRouter#conf tRouter(config)#interface Serial0/3/0Router(config-if)#ip address 200.1.1.2 255.255.255.0Router(config-if)#no shutdownRouter(config-if)#Router6配置:代码如下:RouterRouterenRouter#conf tRouter(config)#hostname R6R6(config)#int f0/0R6(config-if)#ip address 10.10.10.11 255.255.255.0R6(config-if)#no shutdownR6(config-if)#interface Serial0/3/0R6(config-if)#ip address 11.10.20.12 255.255.255.0R6(config-if)#no shutdownR6(config-if)#clock rate 20000R6(config-if)#R6#conf tR6(config)#router ripR6(config-router)#version 2R6(config-router)#no auto-summaryR6(config-router)#network 10.0.0.0R6(config-router)#Sw1配置:SwitchenSwitch#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Switch(config)#hostname Sw1Sw1(vlan)#vlan 10Sw1(config-vlan)#name salesSw1(config)#Sw1(config)#vtp password ciscoSw1(config)#vtp mode serverSw1(config)#vtp version 2Sw1(vlan)#vlan 20Sw1(config-vlan)#name AdminSw1(vlan)#exitSw1#conf tSw1(config)#int f0/2Sw1(config-if)#switchport mode accessSw1(config-if)#switchport access vlan 10Sw1(config-if)#exitSw1(config)#int f0/3Sw1(config-if)#switchport mode accessSw1(config-if)#switchport access vlan 20Sw1(config)#Sw1(config)#int range f0/11-12Sw1(config-if-range)#switchport mode trunkSw1(config)#Sw1(config)#int f0/1Sw1(config-if)#switchport mode trunkSw1(config-if)#Sw1#Sw1#conf tSw1(config)#enable password ciscoSw1(config)#Sw1(config)#int vlan 10Sw1(config-if)#ip address 192.168.1.10 255.255.255.0Sw1(config-if)#exitSw1(config)#int vlan 20Sw1(config-if)#ip address 192.168.2.10 255.255.255.0Sw1(config-if)#Sw1#conf tSw1(config)#line vty 0 4Sw1(config-line)#password ciscoSw1(config-line)#loginSw1(config-line)#exitSw2配置:SwitchenSwitch#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Switch(config)#hostname Sw2Sw2(config)#vlan 10Sw2(config-vlan)#name salesSw2(config-vlan)#exitSw2(config)#vlan 20Sw2(config-vlan)#name AdminSw2(config-vlan)#exitSw2(config)#int f0/2Sw2(config-if)#switchport mode accessSw2(config-if)#switchport access vlan 10Sw2(config-if)#exitSw2(config)#int f0/3Sw2(config-if)#switchport mode accessSw2(config-if)#switchport access vlan 20Sw2
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年健康管理师资格认定考试试题及答案解析
- 机电试验报告课件
- 2025年国际贸易师技能认证考试试题及答案解析
- 2025年智能制造技术深度解析模拟题集与答案
- 2025年安全部门培训教育题集含答案
- 2025年天津安全员C考试模拟题集解析
- 课件《湖心亭看雪》
- 2025年潜水安全员考试模拟题及解析
- 教学法热身导入课件
- 机电城消防知识培训内容课件
- 公共图书馆管理服务合同
- 【初三】【九年级】【物理】2025【秋】开学第一课主题班会(课件)
- 电子厂维护方案(3篇)
- 西藏公务员真题2025
- 电商退换货流程标准操作手册
- 2025年佛山转业士官考试题库
- 基孔肯雅热医疗机构发热-门诊应急处置演练脚本
- 2025年重庆对外建设集团招聘41人笔试参考题库附带答案详解(10套)
- 2025年事业单位工勤技能-安徽-安徽水土保持工五级(初级工)历年参考题库含答案解析(5卷套题【单选100题】)
- 2025年秋季新学期第一次全体教师大会上校长讲话:四重人生境界一颗育人初心-新学期致每位教书人
- 精英人才管理办法
评论
0/150
提交评论