




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、实验13:CISCO EIGRP 路由协议配置练习一、实验目的1、了解EIGRP 动态路由协议原理;2、练习使用CISCO EIGRP 路由协议构建网络二、实验环境packet tracer 5.0三、EIGRP 介绍EIGRP(Enhanced Interior Gateway Routing Protocol,增强型内部网关路由协议)。EIGRP 是Cisco 的私有路由协议,它综合了距离矢量和链路状态2 者的优点,它的特点包括:1.快速收敛:链路状态包(Link-State Packet,LSP) 的转发是不依靠路由计算的,所以大型网络可以较为快速的进行收敛.它只宣告链路和链路状态,而不
2、宣告路由,所以即使链路发生了变化,不会引起该链路的路由被宣告.但是链路状态路由协议使用的是Dijkstra 算法,该算法比较复杂,并且较占CPU 和内存资源和其他路由协议单独计算路由相比, 链路状态路由协议采用种扩散计算(diffusingcomputations ),通过多个路由器并行的记性路由计算,这样就可以在无环路产生的情况下快速的收敛.2.减少带宽占用:EIGRP 不作周期性的更新,它只在路由的路径和度发生变化以后做部分更新.当路径信息改变以后,DUAL 只发送那条路由信息改变了的更新,而不是发送整个路由表.和更新传输到一个区域内的所有路由器上的链路状态路由协议相比,DUAL 只发送更
3、新给需要该更新信息的路由器。在WAN 低速链路上,EIGRP可能会占用大量带宽,默认只占用链路带宽50%,之后发布的IOS 允许使用命令ip bandwidth-percent eigrp 来修改这一默认值.3.支持多种网络层协议:EIGRP 通过使用“协议相关模块”(即protocoldependentmodule),可以支持IPX,ApplleTalk,IP,IPv6 和NovellNetware 等协议.4.无缝连接数据链路层协议和拓扑结构:EIGRP 不要求对OSI 参考模型的层2 协议做特别是配置.不像OSPF,OSPF 对不同的层2 协议要做不同配置,比如以太网和帧中继总之,EIG
4、RP 能够有效的工作在LAN 和WAN 中,而且EIGRP 保证网络不会产生环路(loop-free);而且配置起来很简单;支持VLSM;它使用多播和单播,不使用广播,这样做节约了带宽;它使用和IGRP 一样的度的算法,但是是32 位长的;它可以做非等价的路径的负载平衡.EIGRP 的四个组件1. Protocol-DependentModule(PDM)2.可靠传输协议(Reliable Transport Protocol,RTP)3.邻居的发现/恢复4.弥散更新算法(Diffusing Update Algorithm,DUAL)配置Cisco EIGRP 的基本命令:Router(co
5、nfig)#router eigrp 100 开启EIGRP 进程,100 为AS 编号(165535)Router(config-router)#network xx.xx.xx.xx 在网络上通告自己所直接连接的网段四、实验步骤:一、配置实例拓扑图配置命令:Router 5:RouterenableRouter#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Router(config)#interface FastEthernet0/0Router(config-if)#ip ad
6、dress 172.16.0.1 255.255.255.0 /配置Fa0/0 口IP 地址Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#interface Serial1/0 /配置S1/0 口IP 地址Router(config-if)#ip address 192.168.0.1 255.255.255.0Router(config-if)#clock rate 64000 /配置串行链路时钟Router(config-if)#no shutdownRouter(config-if)#exitRoute
7、r(config)#router eigrp 24 /开启EIGRP 进程,编号为24Router(config-router)#no auto-suRouter(config-router)#no auto-summary /关闭自动汇总Router(config-router)#network 192.168.0.0 /通告直连网段Router(config-router)#network 172.16.0.0Router(config-router)#exitRouter(config)#Router 6:RouterenableRouter#configure terminalEnte
8、r configuration commands, one per line. End with CNTL/Z.Router(config)#interface FastEthernet0/0Router(config-if)#ip address 172.17.0.1 255.255.255.0Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#interface Serial1/0Router(config-if)#ip address 192.168.0.2 255.255.255.0Router(confi
9、g-if)#clock rate 64000Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#interface Serial1/1Router(config-if)#ip address 192.168.1.1 255.255.255.0Router(config-if)#clock rate 64000Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#router eigrp 24Router(config-router)#no
10、 auto-suRouter(config-router)#no auto-summaryRouter(config-router)#network 192.168.1.0Router(config-router)#network 192.168.0.0Router(config-router)#network 172.17.0.0Router(config-router)#exitRouter(config)#Router 3:RouterenableRouter#configure terminalEnter configuration commands, one per line. En
11、d with CNTL/Z.Router(config)#interface FastEthernet0/0Router(config-if)#ip address 172.18.0.1 255.255.255.0Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#interface Serial1/0Router(config-if)#ip address 192.168.1.2 255.255.255.0Router(config-if)#clock rate 64000Router(config-if)#no
12、 shutdownRouter(config-if)#exitRouter(config)#interface Serial1/1Router(config-if)#ip address 192.168.2.1 255.255.255.0Router(config-if)#clock rate 64000Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#router eigrp 24Router(config-router)#no auto-suRouter(config-router)#no auto-summ
13、aryRouter(config-router)#network 192.168.1.0Router(config-router)#network 192.168.2.0Router(config-router)#network 172.18.0.0Router(config-router)#exitRouter(config)#Router 4:RouterenableRouter#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Router(config)#interface Fas
14、tEthernet0/0Router(config-if)#ip address 10.1.1.0 255.255.255.0Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#interface Serial1/0Router(config-if)#ip address 192.168.2.2 255.255.255.0Router(config-if)#clock rate 64000Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#router eigrp 24Router(config-router)#no auto-suRouter(config-router)#no auto-summaryRouter(config-router)#network 192.168.2.0Router(config-router)#network 10.1.1.0Router(config-router)#exitRouter(config)#二、检验与排错完
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 家具定制合同
- 房屋使用权转让协议
- 以项目为翼展职校计算机教学新程:项目教学法在《计算机应用基础》中的深度融合与实践
- 云南民营航空公司低成本经营战略的多维审视与发展路径探究
- 中国人口与经济空间分布的耦合关系及协同发展研究
- NKA-9吸附技术:新生儿病理性黄疸治疗的新曙光
- 34例青少年腰椎间盘突出症的多维度剖析与诊疗策略探究
- 导航原理(第3版)课件 第九章2-着陆导航控制-
- 基因科技基础知识培训课件
- 培训课件不值钱的原因
- 厂房建造承包施工合同范本
- GB/T 25052-2024连续热浸镀层钢板和钢带尺寸、外形、重量及允许偏差
- 2024至2030年中国短肽型肠内营养制剂行业发展监测及投资战略规划报告
- YBT 6259-2024《微氮合金》规范要求
- JBT 14685-2023 无油涡旋空气压缩机 (正式版)
- MOOC 中国电影经典影片鉴赏-北京师范大学 中国大学慕课答案
- 医疗设备维保服务售后服务方案
- 建筑垃圾清运服务投标方案技术标
- 《光伏发电工程安全验收评价规程》(NB-T 32038-2017)
- QRQC专业培训资料V.0
- 2023-2024年七年级期末语文考试试卷
评论
0/150
提交评论