




已阅读5页,还剩17页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
目录实验一 静态路由(基本)2实验二 静态路由(高级)7实验三 默认路由(两种方式)11实验四 浮动静态路由19实验一 静态路由(基本)一、 实验拓扑:二、 实验需求:配置合适的静态路由使得PC1、PC2、PC3可以相互ping通。三、 实验步骤:1. 打开cha5-1.pkt文件,打开后拓扑如上图所示2. 配置IP地址PC1:PC2:PC3:Router1:Router1(config)#int f0/0Router1(config-if)#ip add 52 /注意掩码是/30Router1(config-if)#no shutRouter1(config-if)#int f0/1Router1(config-if)#ip add 3 24Router1(config-if)#no shutRouter2:Router2(config)#int f0/0Router2(config-if)#ip add 52Router2(config-if)#no shutRouter2(config-if)#int f0/1Router2(config-if)#ip add 52Router2(config-if)#no shutRouter2(config-if)#int f1/0Router2(config-if)#ip add 5 24Router2(config-if)#no shutRouter3:Router3(config)#int f0/0Router3(config-if)#ip add 52Router3(config-if)#no shutRouter3(config-if)#int f0/1Router3(config-if)#ip add 7 24Router3(config-if)#no shut3. 配置静态路由:Router1:Router1(config)#ip route 4 24 /去往PC2Router1(config)#ip route 6 24 /去往PC3/注意计算网络地址和子网掩码Router2:Router2(config)#ip route 2 24 /去PC1Router2(config)#ip route 6 24 /去PC3Router3:Router3(config)#ip route 2 24 /去PC1Router3(config)#ip route 4 24 /去PC24. 测试通信情况PC1:PC2:实验二 静态路由(高级)网关配置与出接口配置的区别一、 实验拓扑:二、 实验步骤:1. 打开cha5-2文件夹下的“”拓扑文件2. 配置IP地址R1:R1(config)#int e0/0R1(config-if)#ip add R1(config-if)#no shutR2:R2(config)#int e0/0R2(config-if)#ip add R2(config-if)#no shutR2(config-if)#int s1/0R2(config-if)#clock rate 64000 /DCE需要配置时钟频率,在gns3里没有/DCE和DTE之分,在此可以不用配置;/同时此处没有配置封装协议,保持默认封装hdlc协议R2(config-if)#ip add R2(config-if)#no shutR2(config-if)#int loopback0 /进入并启用环回口0R2(config-if)#ip add R3:R3(config)#int s1/0R3(config-if)#ip add R3(config-if)#no sh3. 在R1和R3上使用出接口的方式配置静态路由:R1:R1(config)#ip route e0/0R3:R3(config)#ip route s1/04. 分别在R1和R3测试通信情况5. 关闭R2两个接口的代理ARP功能R2:R2(config)#int e0/0R2(config-if)#no ip proxy-arp /关闭e0/0接口的代理ARP功能R2(config-if)#int s1/0R2(config-if)#no ip proxy-arp /关闭s1/0接口的代理ARP功能6. 分别在R1和R3上查看并清除ARP缓存表7. 重新在R1和R3上测试通信情况8. 重新开启R2两个接口的代理ARP功能后,再在R1和R3上测试由此说明,为了避免出错,必须是点到点链路时,才能采用出接口方式配置静态路由;若是广播链路,采用出接口方式配置静态路由,必须保证相应接口代理ARP功能已开启才行!1. 删除R1上原本的静态路由(测试网关方式配置静态路由)R1:R1(config)#no ip route e0/02. 在R1上以网关方式配置静态路由R1:R1(config)#ip route 3. 在R1上测试通信4. 关闭R2的e0/0接口的代理ARP功能R2:R2(config)#int e0/0R2(config-if)#no ip proxy-arp5. 查看并清除R1的ARP缓存表6. 在R1上重新测试通信实验三 默认路由(两种方式)一、 实验拓扑:二、 实验需求:合理配置静态路由和默认路由,使得PC1、PC2、PC3互访三、 实验步骤:1. 打开cha5-3.pkt拓扑文件2. 配置IP地址:PC1:PC2:PC3:Router1:Router1(config)#int f0/0Router1(config-if)#ip add Router1(config-if)#no shutRouter1(config-if)#int f0/1Router1(config-if)#ip add Router1(config-if)#no shutRouter2:Router2(config)#int f0/0Router2(config-if)#ip add Router2(config-if)#no shutRouter2(config-if)#int f0/1Router2(config-if)#ip add Router2(config-if)#no shutRouter2(config-if)#int f1/0Router2(config-if)#ip add Router2(config-if)#no shutRouter3:Router3(config)#int f0/0Router3(config-if)#ip add Router3(config-if)#no shutRouter3(config-if)#int f0/1Router3(config-if)#ip add Router3(config-if)#no shut3. 在Router2上配置去往PC1、PC3网段的静态路由Router2:Router2(config)#ip route /去PC1Router2(config)#ip route /去PC34. 在Router1、Router3上配置默认路由(第一种方式)Router1:Router1(config)#ip route Router3:Router3(config)#ip route 5. 在Router1、Router3上查看路由表Router1:Router3:6. 测试通信情况PC1:PC2:由上面测试结果,可以知道路由配置正确。下面用另外一种方式(ip-default network)配置默认路由。需要注意的是,课上我们讲过,此种方式在标记直连网络为缺省时不会被使用,因为没有下一跳。下面我用实验来验证,现将一些配置还原:1) 删除Router1和Router3上的默认路由Router1:Router1(config)#no ip route Router3:Router3(config)#no ip route 2) 假设先将Router1网关通过ip default-network设为(Router2与Router1的直连接口)的主网络,并查看路由表Router1:Router1(config)#ip default-network 3) 验证PC1能否与PC2通信据上操作验证,说明和我们之前的结论一致。此种配置默认路由,只要保证网关是可达的非直连网络即可!对于Router1,我们可以将网关设为的主网络;对于Router3,我们可以将网关设为的主网络;当然,前提要保证到网关可达!下面我们来看如何利用此种方式配置正确路由。4) 删除Router1上的默认路由Router1:Router1(config)#no ip default-network 5) 配置静态路由,使得Router1和Router3到各自网关网络可达Router1:Router1(config)#ip route Router3:Router3(config)#ip route 6) 配置默认路由Router1:Router1(config)#ip default-network Router3:Router3(config)#ip default-network 7) 查看路由表Router1:Router3:8) 测试通信情况PC1:PC2:测试结果显示,路由配置正确。实验四 浮动静态路由一、 实验拓扑:二、 实验说明:Router1的数据包有两条线路可以到达Router2上的Loopback接口。我们将上面一条链路用于静态路由,下面一条用于RIPv2;三、 实验步骤:1. 配置IP地址Router1:Router1(config)#int f0/0Router1(config-if)#ip add Router1(config-if)#no shutRouter1(config-if)#int f0/1Router1(config-if)#ip add Router1(config-if)#no shutRouter2:Router2(config)#int f0/0Router2(config-if)#ip add Router2(config-if)#no shutRouter2(config-if)#int f0/1Router2(config-if)#ip add Router2(config-if)#no shutRouter2(config-if)#int loopback0 /进入并启用loopback0接口Router2(config-if)#ip add 假设我们在配置静态路由时,先不指定其AD值,我们先看看实验现象。2. 配置静态路由:Router1: Router1(config)#ip route 3. 配置RIPv2Router1:Router1(config)#router ripRouter1(config-router)#version 2Router1(config-router)#no auto-summaryRouter1(config-router)#network Router2:Router2(config)#router ripRouter2(config-router)#version 2Router2(config-r
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 拼音y的教学课件
- 2025年康复站管理笔试模拟题含答案解析
- 课件《天目》教学课件
- 2025年增强现实技术笔试模拟题集
- 年产2万套分布式驱动及10万套EMB项目可行性研究报告模板-立项备案
- 2025年媒体编辑初级面试题及答案
- 2025年电子商务市场推广考核试题及答案解析
- 2025年安全员考试复习技巧
- 2025年教师安全知识测试题库含答案
- 《道德经》少儿教学课件
- GB/T 7252-2001变压器油中溶解气体分析和判断导则
- GB/T 5184-2016叉车挂钩型货叉和货叉架安装尺寸
- GB/T 24151-2009塑料玻璃纤维增强阻燃聚对苯二甲酸丁二醇酯专用料
- 考研英语5500词汇表讲解
- MSA测量系统分析第四版
- 围手术期质量评价标准(手术室)
- 化学品安全技术说明(胶水)
- 吊篮操作工岗位风险告知卡
- 输血法律法规培训PPT
- 海姆立克急救(生命的拥抱)课件
- 越南语基础实践教程1第二版完整版ppt全套教学教程最全电子课件整本书ppt
评论
0/150
提交评论