热门标签 | 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,如需转载请自行联系原作者


推荐阅读
  • 2023年京东Android面试真题解析与经验分享
    本文由一位拥有6年Android开发经验的工程师撰写,详细解析了京东面试中常见的技术问题。涵盖引用传递、Handler机制、ListView优化、多线程控制及ANR处理等核心知识点。 ... [详细]
  • 本文介绍了如何通过 Maven 依赖引入 SQLiteJDBC 和 HikariCP 包,从而在 Java 应用中高效地连接和操作 SQLite 数据库。文章提供了详细的代码示例,并解释了每个步骤的实现细节。 ... [详细]
  • 本文介绍如何使用阿里云的fastjson库解析包含时间戳、IP地址和参数等信息的JSON格式文本,并进行数据处理和保存。 ... [详细]
  • 帝国CMS多图上传插件详解及使用指南
    本文介绍了一款用于帝国CMS的多图上传插件,该插件通过Flash技术实现批量图片上传功能,显著提升了多图上传效率。文章详细说明了插件的安装、配置和使用方法。 ... [详细]
  • 本文介绍如何使用Python进行文本处理,包括分词和生成词云图。通过整合多个文本文件、去除停用词并生成词云图,展示文本数据的可视化分析方法。 ... [详细]
  • 本文探讨了如何在 PHP 的 Eloquent ORM 中实现数据表之间的关联查询,并通过具体示例详细解释了如何将关联数据嵌入到查询结果中。这不仅提高了数据查询的效率,还简化了代码逻辑。 ... [详细]
  • 本文探讨了在Koa框架下,如何在启动服务前检查指定端口是否已被占用的方法,并提供了相应的代码示例。 ... [详细]
  • 详解Linux中的mount命令及其应用
    本文旨在深入解析Linux系统中的mount命令,涵盖其基本用法及高级特性,如挂载各种存储设备和网络文件系统。适合初学者及有一定经验的技术人员学习。 ... [详细]
  • 如何彻底清除顽固软件如360
    本文详细介绍了如何彻底卸载难以删除的软件,如360安全卫士。这类软件不仅难以卸载,还会在开机时启动多个应用,影响系统性能。我们将提供两种有效的方法来帮助您彻底清理这些顽固软件。 ... [详细]
  • 本文介绍如何使用 Python 获取文件和图片的创建、修改及拍摄日期。通过多种方法,如 PIL 库的 _getexif() 函数和 os 模块的 getmtime() 和 stat() 方法,详细讲解了这些技术的应用场景和注意事项。 ... [详细]
  • 本文详细探讨了网站流量统计中常用的三个关键指标:页面浏览量(PV)、独立访客数(UV)和独立IP数(IP)。通过分析这些指标的定义、计算方法及其应用场景,帮助网站运营者更好地理解用户行为,优化网站内容与用户体验。 ... [详细]
  • 探索12个能显著提升iPhone使用体验的隐藏技巧,掌握这些功能后,你会发现生活更加便捷高效。 ... [详细]
  • 在众多不为人知的软件中,这些工具凭借其卓越的功能和高效的性能脱颖而出。本文将为您详细介绍其中八款精品软件,帮助您提高工作效率。 ... [详细]
  • 网易严选Java开发面试:MySQL索引深度解析
    本文详细记录了网易严选Java开发岗位的面试经验,特别针对MySQL索引相关的技术问题进行了深入探讨。通过本文,读者可以了解面试官常问的索引问题及其背后的原理。 ... [详细]
  • 分享一个简化版的Silverlight链接图项目:Link Map Simplified
    本文介绍了一个使用Silverlight开发的可视化工具,主要用于展示和操作复杂的实体关系图(Graph)。该工具在犯罪调查系统中得到了广泛应用,帮助用户直观地获取和理解相关信息。 ... [详细]
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社区 版权所有