热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

小五思科技术学习笔记之浮动路由(floatingstaticroute)

实验拓扑图 点击图片查看清晰大图,或者下载附件中的拓扑图源文件 实验要求:为Router1和Router2之间做一条备份路由。 相关资料:首先看一下Cisco 制定的各个路由协议的

实验拓扑图  
《小五思科技术学习笔记之浮动路由(floating static route)》
点击图片查看清晰大图,或者下载附件中的拓扑图源文件  
实验要求:
为Router1和Router2之间做一条备份路由。  
相关资料:
首先看一下Cisco 制定的各个路由协议的管理距离(AD):  

《小五思科技术学习笔记之浮动路由(floating static route)》1.直接相连:0 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》2.静态路由:1 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》3.EIGRP 汇总路由(summary route):5 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》4.外部BGP:20 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》5.内部EIGRP:90 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》6:IGRP:100 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》7.OSPF:110 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》8.IS-IS:115 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》9.RIP(v1,v2):120 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》10.外部EIGRP:170 

《小五思科技术学习笔记之浮动路由(floating static route)》 

《小五思科技术学习笔记之浮动路由(floating static route)》11.内部BGP:200
Floating Status Route
因为静态路由的AD 比一些动态路由协议的AD 高,假如你又想优先采用动态路由,而让静态
路由作为备份路由的话,就可以在配置静态路由的时候指定一个AD 值,这个AD 值要比你采
用的动态路由协议要高才行.所以一般当动态路由正常的时候,你在路由表里是看不到这条静
态路由的;当动态路由出问题的时候,静态路由开始生效,于是出现在路由表里,这样的静态路
由就叫做浮动静态路由(floating static route)。  
实验步骤:
1、首先了解什么是浮动路由,通俗的理解就是一条备份线路
2、利用Visio画出拓扑图
3、规划IP地址
4、用Packet Tracer 5.0进行模拟实验。    
具体实验步骤:
因为涉及到的设备比较少,我这里面就把模拟器中的配置全部复制出来
Router1
Router>en
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
//配置IP地址
Router(config)#int s0/0/0
Router(config-if)#ip address 172.16.10.10 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shut
Router(config-if)#exit
Router(config)#int s0/0/1
Router(config-if)#ip address 172.16.20.10 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#no shut
Router(config-if)#exit
Router(config)#hostname Router1
Router1(config)#int f0/0
Router1(config-if)#ip address 192.168.10.254 255.255.255.0
Router1(config-if)#no shut
Router1(config-if)#exit
//配置RIP动态路由协议
Router1(config)#router rip 
Router1(config-router)#version 2
Router1(config-router)#network 172.168.10.0
Router1(config-router)#network 172.168.20.0
Router1(config-router)#network 192.168.10.0
Router1(config-router)#exit
Router1(config)#end
//配置一条浮动路由
Router1(config)#ip route 192.168.20.0 255.255.255.0 172.16.20.20 125
Router2
Router>en
Router#conf t
Router(config)#hostname rouer2
//配置IP地址
rouer2(config)#int s0/0/0
rouer2(config-if)#ip address 172.16.10.20 255.255.255.0
rouer2(config-if)#no shut
rouer2(config-if)#exit
rouer2(config)#int s0/0/1
rouer2(config-if)#ip address 172.16.20.20 255.255.255.0
rouer2(config-if)#no shut
rouer2(config-if)#exit
rouer2(config)#int f0/0
rouer2(config-if)#ip address 192.168.20.254 255.255.255.0
rouer2(config-if)#no shut
rouer2(config-if)#exit
//配置RIP动态路由协议
rouer2(config)#router rip 
rouer2(config-router)#version 2
rouer2(config-router)#network 192.168.20.0
rouer2(config-router)#network 172.16.10.0
rouer2(config-router)#network 172.16.20.0
rouer2(config-router)#exit
rouer2(config)#end
rouer2#show ip route 
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
       D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
       N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
       E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
       i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
       * – candidate default, U – per-user static route, o – ODR
       P – periodic downloaded static route
Gateway of last resort is not set
     172.16.0.0/24 is subnetted, 2 subnets
C       172.16.10.0 is directly connected, Serial0/0/0
C       172.16.20.0 is directly connected, Serial0/0/1
R    192.168.10.0/24 [120/1] via 172.16.20.10, 00:00:17, Serial0/0/1
                     [120/1] via 172.16.10.10, 00:00:17, Serial0/0/0
C    192.168.20.0/24 is directly connected, FastEthernet0/0
Success rate is 100 percent (5/5), round-trip min/avg/max = 62/62/63 ms
rouer2#conf t
//配置一条浮动路由
rouer2(config)#ip route 192.168.10.0 255.255.255.0 172.16.20.10 125
rouer2(config)#end
rouer2#show ip route 
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
       D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
       N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
       E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
       i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
       * – candidate default, U – per-user static route, o – ODR
       P – periodic downloaded static route
Gateway of last resort is not set
//这里我们看不到那条浮动路由,但是如果我们关闭Rip协议,也就是当Rip协议不能正常工作的时候,我们就会看到那条浮动路由
     172.16.0.0/24 is subnetted, 2 subnets
C       172.16.10.0 is directly connected, Serial0/0/0
C       172.16.20.0 is directly connected, Serial0/0/1
R    192.168.10.0/24 [120/1] via 172.16.20.10, 00:00:23, Serial0/0/1
                     [120/1] via 172.16.10.10, 00:00:23, Serial0/0/0
C    192.168.20.0/24 is directly connected, FastEthernet0/0
//关闭Rip协议,同样在router1上也关闭Rip,这里不再写出,与router2相同
rouer2#conf t
rouer2(config)#no router rip 
rouer2#show ip route 
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
       D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
       N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
       E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
       i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
       * – candidate default, U – per-user static route, o – ODR
       P – periodic downloaded static route
Gateway of last resort is not set
     172.16.0.0/24 is subnetted, 2 subnets
C       172.16.10.0 is directly connected, Serial0/0/0
C       172.16.20.0 is directly connected, Serial0/0/1
S    192.168.10.0/24 [125/0] via 172.16.20.10
C    192.168.20.0/24 is directly connected, FastEthernet0/0
rouer2#




本文转自 Jhuster 51CTO博客,原文链接:http://blog.51cto.com/xwnet/114353,如需转载请自行联系原作者


推荐阅读
  • 使用R语言进行Foodmart数据的关联规则分析与可视化
    本文探讨了如何利用R语言中的arules和arulesViz包对Foodmart数据集进行关联规则的挖掘与可视化。文章首先介绍了数据集的基本情况,然后逐步展示了如何进行数据预处理、规则挖掘及结果的图形化呈现。 ... [详细]
  • 探索OpenWrt中的LuCI框架
    本文深入探讨了OpenWrt系统中轻量级HTTP服务器uhttpd的工作原理及其配置,重点介绍了LuCI界面的实现机制。 ... [详细]
  • C基本语法C程序可以定义为对象的集合,这些对象通过调用彼此的方法进行交互。现在让我们简要地看一下什么是类、对象,方法、即时变量。对象-对象具有状态和行为 ... [详细]
  • 时序数据是指按时间顺序排列的数据集。通过时间轴上的数据点连接,可以构建多维度报表,揭示数据的趋势、规律及异常情况。 ... [详细]
  • jquery java 文件上传_jQuery文件上传
    插件描述:这是一个文件上传的展示,看很多插件,并不满意就自己写了一个,可能兼容性不是很好,没有准确进行测试过& ... [详细]
  • 深入解析轻量级数据库 SQL Server Express LocalDB
    本文详细介绍了 SQL Server Express LocalDB,这是一种轻量级的本地 T-SQL 数据库解决方案,特别适合开发环境使用。文章还探讨了 LocalDB 与其他轻量级数据库的对比,并提供了安装和连接 LocalDB 的步骤。 ... [详细]
  • 本文介绍了如何通过编辑特定配置文件来自定义Linux系统中Bash的登录界面以及登录成功后的显示信息,包括本地和远程连接时的提示。 ... [详细]
  • 基于51单片机的多项目设计实现与优化
    本文探讨了基于51单片机的多个项目的设计与实现,包括PID控制算法的开关电源设计、八音电子琴仿真设计、智能抽奖系统控制设计及停车场车位管理系统设计。每个项目均采用先进的控制技术和算法,旨在提升系统的效率、稳定性和用户体验。 ... [详细]
  • 深入解析Java并发之ArrayBlockingQueue
    本文详细探讨了ArrayBlockingQueue,这是一种基于数组实现的阻塞队列。ArrayBlockingQueue在初始化时需要指定容量,因此它是一个有界的阻塞队列。文章不仅介绍了其基本概念和数据结构,还深入分析了其源码实现,包括各种入队、出队、获取元素和删除元素的方法。 ... [详细]
  • 如何为PDF文档添加水印?简单步骤实现
    为了增强PDF文档的安全性和版权保护,添加水印是一个有效的方法。本文将介绍如何通过专业软件或在线工具轻松为PDF文档添加水印,确保您的文档在共享时仍能保持其独特性和安全性。 ... [详细]
  • 本文探讨了在不同场景下如何高效且安全地存储Token,包括使用定时器刷新、数据库存储等方法,并针对个人开发者与第三方服务平台的不同需求提供了具体建议。 ... [详细]
  • 页面预渲染适用于主要包含静态内容的页面。对于依赖大量API调用的动态页面,建议采用SSR(服务器端渲染),如Nuxt等框架。更多优化策略可参见:https://github.com/HaoChuan9421/vue-cli3-optimization ... [详细]
  • 本文将详细介绍Fuel CMS如何基于CodeIgniter框架构建,包括其单入口模式的实现方式及关键配置文件的作用。通过分析本地环境中的index.php和.htaccess文件,我们将更好地理解Fuel CMS的核心架构。 ... [详细]
  • 高效产品原型设计:技巧、经验和注意事项
    本文由PMTalk社区资深作者AllenDan撰写,分享了如何在日常产品工作中快速有效地设计产品原型,并确保设计易于理解,减少评审时的质疑。文章不仅提供了实用的技巧和经验,还强调了设计过程中的注意事项。 ... [详细]
  • Kubernetes Services详解
    本文深入探讨了Kubernetes中的服务(Services)概念,解释了如何通过Services实现Pods之间的稳定通信,以及如何管理没有选择器的服务。 ... [详细]
author-avatar
阿梓喵1995
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有