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

相关推荐
Me4神秘10 小时前
电信、移动、联通、广电跨运营商网速慢原因
网络
数通Dinner11 小时前
RSTP 拓扑收敛机制
网络·网络协议·tcp/ip·算法·信息与通信
liulilittle12 小时前
SNIProxy 轻量级匿名CDN代理架构与实现
开发语言·网络·c++·网关·架构·cdn·通信
tan77º13 小时前
【Linux网络编程】Socket - UDP
linux·服务器·网络·c++·udp
小白爱电脑13 小时前
光纤的最小弯曲半径是多少?
网络
花落已飘15 小时前
多线程 vs 异步
linux·网络·系统架构
qq_1715388517 小时前
TCP/IP协议精解:IP协议——互联网世界的邮政编码系统
网络·网络协议·tcp/ip
珹洺17 小时前
计算机网络:(七)网络层(上)网络层中重要的概念与网际协议 IP
网络·tcp/ip·计算机网络
兮动人18 小时前
获取终端外网IP地址
java·网络·网络协议·tcp/ip·获取终端外网ip地址
怦然星动_18 小时前
eNSP中实现vlan间路由通信(路由器)
网络·智能路由器