CCNP认证考试重发布实验案例详解【单点双向---线型网络拓扑图】

  发布时间:2020-04-15 14:36:37   作者:我畏时光   我要评论
这篇文章主要介绍了CCNP认证考试重发布实验,结合具体实验案例形式分析了思科CCNP重发布单点双向---线型网络拓扑图结构配置命令与相关操作技巧,需要的朋友可以参考下

本文实例讲述了CCNP认证考试重发布实验案例。分享给大家供大家参考,具体如下:

CCNP---重发布实验(单点双向---线型网络拓扑图)

目录

搭建拓扑图

在这里插入图片描述

实验要求

1.R1 起 RIP 协议,R3 起 OSPF 协议,R5 起 EIGRP 协议。
2.全网可达。

配置过程

配置IP地址

R1:
 

R1#conf t
R1(config)#int se 4/0
R1(config-if)#ip add 10.1.1.1 255.255.255.0
R1(config-if)#no shu
R1(config-if)#int lo 1
R1(config-if)#ip add 1.1.1.1 255.255.255.0
R1(config-if)#exit

R2:
 

R2#conf t
R2(config)#int se 4/1
R2(config-if)#ip add 10.1.1.2 255.255.255.0
R2(config-if)#no shu
R2(config-if)#int se 4/0
R2(config-if)#ip add 20.1.1.1 255.255.255.0
R2(config-if)#no shu
R2(config-if)#int lo 1
R2(config-if)#ip add 2.2.2.2 255.255.255.0
R2(config-if)#exit

R3:
 

R3#conf t
R3(config)#int se 4/1
R3(config-if)#ip add 20.1.1.2 255.255.255.0
R3(config-if)#no shu
R3(config-if)#int se 4/0
R3(config-if)#ip add 30.1.1.1 255.255.255.0
R3(config-if)#no shu
R3(config-if)#int lo 1
R3(config-if)#ip add 3.3.3.3 255.255.255.0
R3(config-if)#exit

R4:
 

R4#conf t
R4(config)#int se 4/1
R4(config-if)#ip add 30.1.1.2 255.255.255.0
R4(config-if)#no shu
R4(config-if)#int se 4/0
R4(config-if)#ip add 40.1.1.1 255.255.255.0
R4(config-if)#no shu
R4(config-if)#int lo 1
R4(config-if)#ip add 4.4.4.4 255.255.255.0
R4(config-if)#exit

R5:
 

R5#conf t
R5(config)#int se 4/1
R5(config-if)#ip add 40.1.1.2 255.255.255.0
R5(config-if)#no shu
R5(config-if)#int lo 1
R5(config-if)#ip add 5.5.5.5 255.255.255.0
R5(config-if)#exit

配置协议

R1(RIP):
 

R1(config)#router rip
R1(config-router)#ver 2
R1(config-router)#no auto-summary
R1(config-router)#net 1.0.0.0
R1(config-router)#net 10.0.0.0
R1(config)#end
R1#write

R3(OSPF):
 

R3(config)#router ospf 1
R3(config-router)#router-id 3.3.3.3
R3(config-router)#net 3.3.3.3 0.0.0.0 a 0
R3(config-router)#net 20.1.1.2 0.0.0.0 a 0
R3(config-router)#net 30.1.1.1 0.0.0.0 a 0
R3(config-router)#end
R3#write

R5(EIGRP):
 

R5(config-if)#router eigrp 90
R5(config-router)#no auto-summary
R5(config-router)#net 5.0.0.0
R5(config-router)#net 40.0.0.0
R5(config-router)#end

R2(ASBR):
 

R2(config)#router rip
R2(config-router)#ver 2
R2(config-router)#net 10.0.0.0
R2(config-router)#exit
R2(config)#router ospf 1
R2(config-router)#router-id 2.2.2.2
R2(config-router)#net 20.1.1.1 0.0.0.0 a 0
R2(config-router)#end

R4(ASBR):
 

R4(config)#router ospf 1
R4(config-router)#router-id 4.4.4.4
R4(config-router)#net 30.1.1.2 0.0.0.0 a 0
R4(config-router)#exit
R4(config)#router eigrp 90
R4(config-router)#no auto-summary
R4(config-router)#net 40.0.0.0
R4(config-router)#end

此时各路由器路由表如下:
R1:
在这里插入图片描述
R2:
在这里插入图片描述
R3:
在这里插入图片描述
R4:
在这里插入图片描述
R5:
在这里插入图片描述

重发布

(1)RIP 重发布到 OSPF:
 

R2(config)#router ospf 1
R2(config-router)#redistribute rip subnets
R2(config-router)#redistribute static subnets
R2(config-router)#redistribute connected subnets
R2(config-router)#exit

此时R3路由器路由表:
在这里插入图片描述
此时R4路由器路由表:
在这里插入图片描述
(2)OSPF 重发布到 EIGRP:
 

R4(config)#router eigrp 90
R4(config-router)#redistribute ospf 1 metric 1544 100 255 1 1500
R4(config-router)#redistribute static
R4(config-router)#redistribute connected
R4(config-router)#exit

此时R5路由器路由表:
在这里插入图片描述
(2.5)从 EIGRP 下发缺省
 

R5(config)#int se 4/0
R5(config-if)#ip summary-address eigrp 90 0.0.0.0 0.0.0.0
R5(config-router)#end
R5#write

(3)EIGPR 重发布到 OSPF:
 

R4(config)#router ospf 1
R4(config-router)#redistribute eigrp 90 subnets
R4(config-router)#redistribute static subnets
R4(config-router)#redistribute connected subnets
R4(config-router)#default-information originate
R4(config-router)#exit

此时R3路由器路由表:
在这里插入图片描述
此时R2路由器路由表:
在这里插入图片描述
(4)OSPF 重发布到 RIP:
 

R2(config)#router rip
R2(config-router)#redistribute ospf 1 metric 2
R2(config-router)#redistribute static
R2(config-router)#redistribute connected
R2(config-router)#exit

此时R1路由器路由表:
在这里插入图片描述
此时全网可达。

相关文章

  • CCNP认证考试重发布实验案例详解【单点双向---星型网络拓扑图】

    这篇文章主要介绍了CCNP认证考试重发布实验,结合具体实验案例形式分析了思科CCNP认证考试中重发布单点双向---星型网络拓扑图结构相关配置方法,需要的朋友可以参考下
    2020-04-15
  • CCNP认证考试重发布原理与配置方法分析

    这篇文章主要介绍了CCNP认证考试重发布原理与配置方法,结合案例形式分析了思科CCNP认证考试重发布基本概念、原理、配置方法及相关操作注意事项,需要的朋友可以参考下
    2020-04-14
  • CCNP认证考试OSPF 实验案例详解

    这篇文章主要介绍了CCNP认证考试OSPF 实验案例,结合具体实验案例形式分析了思科CCNP考试中OSPF的基本概念、原理、配置方法及操作注意事项,需要的朋友可以参考下
    2020-04-14
  • CCNP 认证考试OSPF基本概念与原理详解

    这篇文章主要介绍了CCNP 认证考试OSPF基本概念与原理,较为详细的分析了CCNP 认证考试中OSPF基本概念、原理、配置方法及相关操作注意事项,需要的朋友可以参考下
    2020-04-10
  • 思科CCNP认证交换知识点笔记总结

    这篇文章主要介绍了思科CCNP认证交换知识点,总结记录了思科CCNP认证交换技术与交换机操作相关概念、原理、知识点与注意事项,需要的朋友可以参考下
    2020-03-26
  • CCNP TSHOOT(642-832)认证考试指南 中文PDF版 73.7MB

    本书涵盖了与TSHOOT考试相关的Cisco Catalyst交换机和路由器的各种故障检测与排除技术,包括STP、第一跳冗余性协议、EIGRP、OSPF、BGP、路由重分发、IP服务、IP通信以及IPv
    2016-10-19
  • CCNP-ONT认证考试指南 中文PDF扫描版 8.55MB

    本书是Cisco CCNP ONT认证考试(642-845)的官方指南,全书紧密围绕ONT考试主题,在内容的组织和编写上切实凸显了认证考试需求。此外,本书也非常适合从事融合型网络优化和设
    2016-10-10
  • CCNP BCMSN 认证考试指南(第4版) 中文PDF版 13.3MB

    全书分为7个部分,共20章和1个附录,内容包括:园区网概述和设计、交换机端口配置、VLAN和中继、聚合交换机链路、生成树协议、多层交换、路由器、监控引擎和电源冗余、IP电
    2016-10-10
  • CCNP ISCW认证考试指南 中文PDF版 45.9MB

    本书是Cisco CCNP ISCW认证考试(642-825)的官方学习认证指南,主要内容包括基本的远程工作者服务实现技术、帧模式MPLS的实现、站点互联IPSec VPN的实现以及网络安全策略(包
    2016-10-10
  • CCNPSWITCH认证考试指南 中文PDF扫描版 47.6MB

    每章开头的“我已经知道了吗?”测验帮助读者确定如何分配有限的学习时间,末尾的“备考任务”列出了本章的关键主题和重要术语并对涉及的命令进行了总结,配套光盘中的模拟
    2016-10-10

最新评论