EIGRP实验

实验大纲

一、基本配置

1.构建网络拓扑结构图

2.路由器基本配置

3.配置PC

4.测试连通性

5.保存配置文件

二、配置EIGRP

1.查看路由表

2.配置EIGRP动态路由

3.查看路由器路由表

4.测试网络连通性

5.查看所有路由器的路由协议

6.保存配置文件

三、配置OSPF

1.配置路由器ID

2.配置OSPF

3.查看路由信息

4.关闭EIGRP

5.检查路由表并测试网络连通性

6.保存配置

7.测试到各个网络的连通性

一、基本配置

1.构建网络拓扑结构图

2.路由器基本配置

复制代码
RA#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
RA(config)#interface f0/0
RA(config-if)#ip add 172.16.199.1 255.255.255.128
RA(config-if)#no shut
RA(config-if)#interface s0/0
RA(config-if)#ip add 172.16.199.225 255.255.255.252
RA(config-if)#clock rate 2000000
RA(config-if)#no shut

RC#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
RC(config)#interface f0/0
RC(config-if)#ip add 172.16.199.129 255.255.255.192
RC(config-if)#no shut
RC(config-if)#int s0/0
RC(config-if)#ip add 172.16.199.230 255.255.255.252
RC(config-if)#no shut

RB#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
RB(config)#int f0/0
RB(config-if)#ip add 172.16.199.193 255.255.255.224
RB(config-if)#no shut
RB(config-if)#int s0/0
RB(config-if)#ip add 172.16.199.226 255.255.255.252
RB(config-if)#no shut
RB(config-if)#int s0/1
RB(config-if)#ip add 172.16.199.229 255.255.255.252
RB(config-if)#no shut

3.配置PC

4.测试连通性

RA ping PCA 和RB

RB ping PCB、RA 和 RC

RC ping PCC 和 RB

5.保存配置文件

复制代码
RA#copy run start
Destination filename [startup-config]? 
Building configuration...
[OK]

RB#copy run start
Destination filename [startup-config]? 
Building configuration...
[OK]

RC#copy run start
Destination filename [startup-config]? 
Building configuration...
[OK]

二、配置EIGRP

1.查看路由表

复制代码
show ip route

2.配置EIGRP动态路由

复制代码
# 在RA上配置EIGRP
RA(config)#router eigrp 333     #启动EIGRP进行
RA(config-router)#no auto-summary       #取消自动汇总 
RA(config-router)#network 172.16.0.0    #通告网络
RA(config-router)#passive-interface f0/0    #被动接口

RB(config)#router eigrp 333
RB(config-router)#no auto-summary 
RB(config-router)#network 172.16.0.0
RB(config-router)#
%DUAL-5-NBRCHANGE: IP-EIGRP 333: Neighbor 172.16.199.225 (Serial0/0) is up: new adjacency
​
RB(config-router)#passive-interface f0/0
RB(config-router)#end

RC(config)#router eigrp 333
RC(config-router)#no auto-summary 
RC(config-router)#network 172.16.0.0
RC(config-router)#
%DUAL-5-NBRCHANGE: IP-EIGRP 333: Neighbor 172.16.199.229 (Serial0/0) is up: new adjacency
​
RC(config-router)#passive-interface f0/0

3.查看路由器路由表

复制代码
show ip route

4.测试网络连通性

在各个路由器测试到各个PC机的连通性

RA到PCA、PCB 和 PCC

RB到PCA、PCB 和 PCC

RC到PCA、PCB 和 PCC

5.查看所有路由器的路由协议

复制代码
show ip protocols

6.保存配置文件

复制代码
RA#copy run start
Destination filename [startup-config]? 
Building configuration...
[OK]

RB#copy run start
Destination filename [startup-config]? 
Building configuration...
[OK]

RC#copy run start
Destination filename [startup-config]? 
Building configuration...
[OK]

三、配置OSPF

为了使OSPF易于识别路由器而使网络管理和故障排除更加容易,利用Loopback接口设置路由器的ID; 在各路由器配置OSPF动态路由; 再检查路由信息,并与之前做比较; 测试和检验网络连通性。 注:反掩码用255.255.255.255减去子网掩码获得。

1.配置路由器ID

复制代码
RA#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
RA(config)#int loopback 0
​
RA(config-if)#
%LINK-5-CHANGED: Interface Loopback0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up
​
RA(config-if)#ip add 10.199.1.1 255.255.255.255
RA(config-if)#exit

RB#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
RB(config)#int loopback 0
​
RB(config-if)#
%LINK-5-CHANGED: Interface Loopback0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up
​
RB(config-if)#ip add 10.199.2.2 255.255.255.255
RB(config-if)#exit

RC#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
RC(config)#int loopback 0
​
RC(config-if)#
%LINK-5-CHANGED: Interface Loopback0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up
​
RC(config-if)#ip add 10.199.3.3 255.255.255.255
RC(config-if)#exit

2.配置OSPF

复制代码
RA(config)#router ospf 100
RA(config-router)#network 172.16.199.0 0.0.0.127 area 0
RA(config-router)#network 172.16.199.224 0.0.0.3 area 0
RA(config-router)#end

RB(config)#router ospf 200
RB(config-router)#network 172.16.199.192 0.0.0.31 area 0
RB(config-router)#network 172.16.199.224 0.0.0.3 area 0
RB(config-router)#end

RC(config)#router ospf 300
RC(config-router)#network 172.16.199.128 0.0.0.63 area 0
RC(config-router)#network 172.16.199.228 0.0.0.3 area 0
RC(config-router)#end

3.查看路由信息

复制代码
show ip route

起作用的仍为EIGRP动态路由

此时EIGRP和OSPF同时进行,因为他们的管理距离分别是90和110,所以EIGRP优先起作用。查看路由表可以验证。为了使OSPF起作用,必须关闭EIGRP。然后检查路由表,并与之前做比较。

4.关闭EIGRP

复制代码
RA(config)#no route eigrp 333

RB(config)#no route eigrp 333

RC(config)#no route eigrp 333

5.检查路由表并测试网络连通性

复制代码
show ip route
show ip protocols

6.保存配置

7.测试到各个网络的连通性

RA到PCA

RB到PCB

RC到PCC

相关推荐
Fine姐1 小时前
The Network Link Layer: 无线传感器中Delay Tolerant Networks – DTNs 延迟容忍网络
开发语言·网络·php·硬件架构
网络研究院2 小时前
新的“MadeYouReset”方法利用 HTTP/2 进行隐秘的 DoS 攻击
网络·网络协议·安全·http·攻击·漏洞
189228048612 小时前
NY270NY273美光固态闪存NY277NY287
服务器·网络·数据库·科技·性能优化
秃了也弱了。12 小时前
WireShark:非常好用的网络抓包工具
网络·测试工具·wireshark
清源妙木真菌13 小时前
应用层协议——HTTP
网络·网络协议·http
网硕互联的小客服17 小时前
Apache 如何支持SHTML(SSI)的配置方法
运维·服务器·网络·windows·php
共享家952719 小时前
linux-数据链路层
linux·网络·macos
189228048611 天前
NY243NY253美光固态闪存NY257NY260
大数据·网络·人工智能·缓存
玩转以太网1 天前
3 种方式玩转网络继电器!W55MH32 实现网页 + 阿里云 + 本地控制互通
网络·物联网·阿里云
How_doyou_do1 天前
关于casdoor重定向问题
网络