- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
EIGRP实验
EIGRP实验
实验环境:现有2台2811路由器,2台普通电脑,3根直通线和3根交叉线,请组建一个简单的EIGRP网络,目标是路由器和普通电脑之间都能互通。
请画出网络拓扑图,并在图上标出相关设备的名称,使用的IP地址,使用的接口编号,使用的线缆类型和EIGRP进程号;
以表格形式列出相关设备名称,使用的IP地址和使用的设备接口编号;
请写出该实验的基本步骤和相关的配置命令。
一.拓扑图
二.地址表
设备 接口 IP地址 R1 F0/0 172.16.1.1 F0/1 172.30.1.1 R2 F0/0 192.168.10.8 F0/1 172.30.1.2 PC1 FastEthernet 172.16.1.2 PC2 FastEthernet 192.168.10.7
三.基本步骤
步骤1:布置一个与拓扑图中类似的网络。
步骤2:在路由器上执行基本的配置任务。
步骤3:配置并激活该接口。
步骤4:在所有路由器上配置EIGRP路由。
步骤5:检验EIGRP的运作情况。
步骤6:检查配置并使路由器与电脑间都能互通。
步骤7:结束后清理实验设备。
四.相关配置命令代码
R1的配置:
Routerenable
Router#configure terminal
Router(config)#hostname R1
R1(config)#line console 0
R1(config-line)#logging synchronous
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#line vty 0 15
R1(config-line)#password cisco
R1(config-line)# login
R1(config-line)#exit
R1(config)#enable secret cisco
R1(config)#service password-encryption
R1(config)#no ip domain-lookup
R1(config)#exit
R1#copy run start
R1#config.
R1(config)#interface f0/0
R1(config-if)#ip address 172.16.1.1 255.255.0.0
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#int f0/1
R1(config-if)#ip address 172.30.1.1 255.255.0.0
R1(config-if)#no shutdown
R1(config)#router rip
R1(config-router)#network 172.0.0.0
R1(config-router)#router rip
R1(config-router)#passive-interface f0/0
R1(config)#router eigrp 1
R1(config-router)#network 172.16.1.0
R1(config-router)#network 172.30.1.0
R2的配置:
Routerenable
Router#configure terminal
Router(config)#hostname R2
R2(config)#line console 0
R2(config-line)#logging synchronous
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#line vty 0 15
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#enable secret cisco
R2(config)#service password-encryption
R2(config)#no ip domain-lookup
R2(config)#exit
R2#copy run start
R2#config
R2(config)#interface f0/0
R2(config-if)#ip address 192.168.10.8 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface f0/1
R2(config-if)#ip address 172.30
文档评论(0)