静态路由综合实验

一.实验拓扑图 

二.实验要求

1、R6为ISP,接口IP地址均为公有地址,该设备只能配置IP地址,之后不能再对其进行任何配置;

2、R1-R5为局域网,私有IP地址192.168.1.0/24,请合理分配;

3、R1、R2、R4,各有两个环回IP地址;R5,R6各有一个环回地址;所有路由器上环回均代表连接用户的接口;

4、R3下面的两台PC通过DHCP自动获取IP地址;

5、选路最佳,路由表尽量小,避免环路;

6、R1-R5均可以访问R6的环回;

7、R6 telnet R5的公有地址时,实际登录到R1上;

8、R4与R5正常通过1000M链路,故障时通过100m链路;

三.实验思路

1.根据网段数并且简化路由再划分IP

2.配置DHCP服务,下发给主机IP

3.配置静态路由,使得内网全通

4.配置路由防止成环

5. R4与R5正常通过1000M链路,故障时通过100m链路,即修改优先级

6.配置Easy IP技术,使得公网与私网互通

7.R6telentR5,实则登录R1

四.实验步骤

 IP地址的划分

 IP地址的配置实现全网可达

//R1的环回地址的配置
[R1]interface LoopBack 0
[R1-LoopBack0]ip address 192.168.1.33 28
[R1-LoopBack0]quit
[R1]interface LoopBack 1
[R1-LoopBack1]ip address 192.168.1.49 28
[R1-LoopBack1]quit
//接口ip的配置
[R1]interface g0/0/0
[R1-GigabitEthernet0/0/0]ip ad 192.168.1.1 30
Mar 20 2024 10:40:04-08:00 R1 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[R1-GigabitEthernet0/0/0]quit
[R1]interface g0/0/1	
[R1-GigabitEthernet0/0/1]ip address 192.168.1.9 30
Mar 20 2024 10:44:21-08:00 R1 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP 
on the interface GigabitEthernet0/0/1 has entered the UP state.
//路由表的配置
[R1]ip route-static 192.168.1.16 30 192.168.1.10
[R1]ip route-static 192.168.1.20 30 192.168.1.10
[R1]ip route-static 12.0.0.0 24 192.168.1.10
[R1]ip route-static 192.168.1.4 30 192.168.1.2
[R1]ip route-static 192.168.1.12 30 192.168.1.10 
[R1]ip route-static 192.168.1.32 27 192.168.1.2
[R1]ip route-static 192.168.1.96 27 192.168.1.2
[R1]ip route-static 192.168.1.128 27 192.168.1.10
[R1]ip route-static 192.168.1.160 27 192.168.1.10
[R1]ip route-static 0.0.0.0 0 192.168.1.10
//避免环路
[R1]ip route-static 192.168.1.32 27 null 0
//R2环回地址的配置
[R2]interface LoopBack 0
[R2-LoopBack0]ip ad 192.168.1.65 28
[R2-LoopBack0]q
[R2]interface LoopBack 1
[R2-LoopBack1]ip ad 192.168.1.81 28
[R2-LoopBack1]quit
//接口IP的配置
[R2]interface g0/0/0
[R2-GigabitEthernet0/0/0]ip ad 192.168.1.2 30
Mar 20 2024 11:19:36-08:00 R2 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[R2-GigabitEthernet0/0/0]quit
[R2]interface g0/0/1
[R2-GigabitEthernet0/0/1]ip ad 192.168.1.6 30
Mar 20 2024 11:20:30-08:00 R2 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP 
on the interface GigabitEthernet0/0/1 has entered the UP state. 
//路由表的配置
[R2]ip route-static 192.168.1.8 30 192.168.1.1
[R2]ip route-static 192.168.1.16 30 192.168.1.1
[R2]ip route-static 12.0.0.0 24 192.168.1.1
[R2]ip route-static 192.168.1.20 30 192.168.1.1
[R2]ip route-static 192.168.1.12 30 192.168.1.5
[R2]ip route-static 192.168.1.32 27 192.168.1.1
[R2]ip route-static 192.168.1.128 27 192.168.1.1
[R2]ip route-static 192.168.1.96 27 192.168.1.5
[R2]ip route-static 192.168.1.160 27 192.168.1.1
[R2]ip route-static 0.0.0.0 0 192.168.1.1
//避免环路
[R2]ip route-static 192.168.1.64 27 null 0

//接口IP的配置
[R3]interface g0/0/1
[R3-GigabitEthernet0/0/1]ip ad 192.168.1.14 30
Mar 20 2024 11:09:09-08:00 R3 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/1 has entered the UP state. 
[R3]interface g0/0/0
[R3-GigabitEthernet0/0/0]ip ad 192.168.1.5 30
Mar 20 2024 11:09:46-08:00 R3 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[R3]interface g0/0/2
[R3-GigabitEthernet0/0/0]ip ad 192.168.1.97 27
Mar 20 2024 11:09:46-08:00 R3 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
//路由表的配置
[R3]ip route-static 192.168.1.0 30 192.168.1.6
[R3]ip route-static 192.168.1.8 30 192.168.1.13
[R3]ip route-static 192.168.1.16 30 192.168.1.13
[R3]ip route-static 192.168.1.20 30 192.168.1.13
[R3]ip route-static 12.0.0.0 24 192.168.1.13
[R3]ip route-static 192.168.1.32 27 192.168.1.6
[R3]ip route-static 192.168.1.64 27 192.168.1.6
[R3]ip route-static 192.168.1.128 27 192.168.1.13
[R3]ip route-static 192.168.1.160 27 192.168.1.13
[R3]ip route-static 0.0.0.0 0 192.168.1.13
//R4环回地址
[R4]interface LoopBack 0
[R4-LoopBack0]ip address 192.168.1.129 28
[R4]interface LoopBack 1
[R4-LoopBack1]ip address 192.168.1.145 28
//接口ip的配置
[R4]interface g0/0/0
[R4-GigabitEthernet0/0/0]ip address 192.168.1.10 30
Mar 20 2024 10:49:04-08:00 R4 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[R4]interface g0/0/1
[R4-GigabitEthernet0/0/1]ip ad 192.168.1.13 30
Mar 20 2024 10:49:34-08:00 R4 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP 
on the interface GigabitEthernet0/0/1 has entered the UP state. 
[R4]interface g4/0/0
[R4-GigabitEthernet4/0/0]ip ad 192.168.1.17 30
[R4-GigabitEthernet4/0/0]
Mar 20 2024 10:50:03-08:00 R4 %%01IFNET/4/LINK_STATE(l)[2]:The line protocol IP 
on the interface GigabitEthernet4/0/0 has entered the UP state. 
[R4]interface g0/0/2
[R4-GigabitEthernet0/0/2]ip ad 192.168.1.21 30
Mar 20 2024 10:50:31-08:00 R4 %%01IFNET/4/LINK_STATE(l)[3]:The line protocol IP 
on the interface GigabitEthernet0/0/2 has entered the UP state. 
//路由表的配置
[R4]ip route-static 12.0.0.0 24 192.168.1.18
[R4]ip route-static 1.0.0.0 24 192.168.1.18
[R4]ip route-static 192.168.1.0 30 192.168.1.9
[R4]ip route-static 192.168.1.4 30 192.168.1.14
R4]ip route-static 192.168.1.32 27 192.168.1.9
[R4]ip route-static 192.168.1.64 27 192.168.1.9
[R4]ip route-static 192.168.1.96 27 192.168.1.14
[R4]ip route-static 192.168.1.160 27 192.168.1.18
[R4]ip route-static 0.0.0.0 0 192.168.1.18
//避免环路
[R4]ip route-static 192.168.1.128 27 null 0

//R5环回地址的配置
[r5]interface LoopBack 0
[r5-LoopBack0]ip ad 192.168.1.161 27
//接口IP的配置
[r5]interface g0/0/2
[r5-GigabitEthernet0/0/2]ip address 192.168.1.18 30
Mar 20 2024 10:54:52-08:00 r5 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/2 has entered the UP state. 
[r5]interface g0/0/0
[r5-GigabitEthernet0/0/0]ip address 192.168.1.22 30
Mar 20 2024 10:55:37-08:00 r5 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[r5]interface g0/0/1
[r5-GigabitEthernet0/0/1]ip address 12.0.0.1 24
Mar 20 2024 10:56:04-08:00 r5 %%01IFNET/4/LINK_STATE(l)[2]:The line protocol IP 
on the interface GigabitEthernet0/0/1 has entered the UP state.
//路由表的配置
[r5]ip route-static 192.168.1.0 30 192.168.1.17
[r5]ip route-static 192.168.1.8 30 192.168.1.17
[r5]ip route-static 192.168.1.12 30 192.168.1.17
[r5]ip route-static 192.168.1.4 30 192.168.1.17 
[r5]ip route-static 192.168.1.32 27 192.168.1.17
[r5]ip route-static 192.168.1.64 27 192.168.1.17
[r5]ip route-static 192.168.1.96 27 192.168.1.17
[r5]ip route-static 192.168.1.128 27 192.168.1.17
[r5]ip route-static 192.168.1.160 27 192.168.1.17
[r5]ip route-static 0.0.0.0 0 12.0.0.2
//R6环回地址的配置
[R6]interface LoopBack 0
[R6-LoopBack0]ip ad 1.0.0.1 24
//接口IP的配置
[R6]interface g0/0/0
[R6-GigabitEthernet0/0/0]ip ad 12.0.0.2 24
Mar 20 2024 11:05:52-08:00 R6 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 

DHCP协议的设置

[R3]dhcp enable
Info: The operation may take a few seconds. Please wait for a moment.done.
[R3]ip pool rjw
Info: It's successful to create an IP address pool.
[R3-ip-pool-rjw]network 192.168.1.96 mask 27
[R3-ip-pool-rjw]gateway-list 192.168.1.97
[R3-ip-pool-rjw]dns-list 114.114.114.114
[R3-ip-pool-rjw]q
[R3]interface g0/0/2
[R3-GigabitEthernet0/0/2]dhcp select global

R5配置easy IP :

[r5]acl 2000
[r5-acl-basic-2000]rule 10 permit source 192.168.1.0 0.0.255.255
[r5-acl-basic-2000]int g0/0/1
[r5-GigabitEthernet0/0/1]nat out	
[r5-GigabitEthernet0/0/1]nat outbound 2000

telnet协议:

//R1路由器上的配置
[R1]aaa
[R1-aaa]local-user admin privilege level 15 password cipher 123456
[R1-aaa]local-user admin service-type telnet
[R1]user-interface vty 0 4
[R1-ui-vty0-4]authentication-mode aaa
//R5配置
[R5-GigabitEthernet0/0/1]nat server protocol tcp global current-interface 23 ins
ide 192.168.1.1 23
Warning:The port 23 is well-known port. If you continue it may cause function fa
ilure.
Are you sure to continue?[Y/N]:y
R6验证:
<R6>telnet 12.0.0.2

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/766739.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

亚马逊云科技《生成式 AI 精英速成计划》

最近亚马逊云科技推出了「生成式AI精英速成计划」&#xff0c;获取包含&#xff1a;免费学习热门生成式AI课程、技能证书、人力主管的面试辅导、云计算国际认证、免费去往北美参加全球用户大会等&#xff5e; 针对开发者和企业非技术专业人士&#xff0c;了解如何使用大模型平台…

OpenCV学习笔记(十一)——利用Sobel算子计算梯度

Sobel算子是基于一阶导数的离散差分算子&#xff0c;其中Sobel对于像素值的变化是十分敏感的&#xff0c;在进行边缘检测的时候&#xff0c;Sobel算子常用于对周围像素的重要性进行检测。 Sobel算子包括检验水平方向的算子和检测竖直方向的算子 计算机梯度值的操作如下&#x…

Java设计模式 | 抽象工厂模式

抽象工厂模式 工厂方法模式中考虑的是一类产品的生产&#xff0c;如幼儿园只培养小朋友&#xff0c;鞋厂只生产鞋子。这些工厂只生产同种类产品&#xff0c;同种类产品称为同等级产品&#xff0c;即工厂方法模式只考虑生产同等级的产品&#xff0c;但是在现实生活中许多工厂都…

【计算机网络】计算机网络概述

文章目录 一、计算机网络的概念二、 计算机网络的功能1. 数据通信2. 资源共享3. 分布式处理4. 提高可靠性5. 负载均衡 补充&#xff1a; 计算机的发展阶段小结三、计算机网络的组成1. 组成部分2. 工作方式3. 功能组成 四、 计算机网络的分类1. 按分布范围2. 按使用者3. 按交换技…

图片html5提供的懒加载与vue-lazyload的区别

原生HTML lazy loading特性 <img src"/images/ocean.jpeg" alt"Ocean" loading"lazy"> loading"lazy" 是HTML5的一个原生特性&#xff0c;它允许浏览器延迟加载图片直至图片距离视口很近或者即将进入视口时。这是一种由浏览器…

vue3之路由导航故障

通常一个导航守卫函数中会发生这四件事之一&#xff1a; 1.通过调用 return false 中断了这次导航 2.通过返回一个新的位置&#xff0c;重定向到其他地方 (例如&#xff0c;return ‘/login’) 3.正常导航到指定路由 4.抛出了一个 Error 检测导航故障 可以使用vue-router提供的…

Docker 【通过Dockerfile构建镜像】【docker容器与镜像的关系】

文章目录 前言一、前期的准备工作二、上手构建一个简单的镜像三、DcokerFile1 指令总览2 指令详情 四、Dockerfile文件规范五、docker运行build时发生了什么?六、调试手段1. 修改镜像打包后&#xff0c;如何验证新内容已更新至镜像 七、Dockerfile优化方案 前言 docker构建镜…

JavaEE-文件操作和IO

我们先来认识狭义上的⽂件(file)。针对硬盘这种持久化存储的I/O设备&#xff0c;当我们想要进⾏数据保存时&#xff0c;往往不是保存成⼀个整体&#xff0c;⽽是独⽴成⼀个个的单位进⾏保存&#xff0c;这个独⽴的单位就被抽象成⽂件的概念&#xff0c;就类似办公桌上的⼀份份真…

stm32平衡车

目录 一.所需材料 二.PID算法&#xff08;简单说明&#xff09; 直立环 速度环 串级PID 三.使用到的外设 1.定时器输出比较-PWM 2.定时器编码器模式 3.编码器读取速度 4.电机驱动函数 5.外部中断 四、小车 调试 一.所需材料 1.陀螺仪MPU6050--读取三轴的加速度…

隐语笔记2 —— 隐私计算开源如何助力数据要素流通

数据生命周期 数据流转链路主要包括&#xff1a;采集、存储、加工、使用、提供、传输 数据要素外循环是构建数据要素市场的核心 数据外循环中的信任焦虑 三个代表性问题&#xff1a; 不可信内部人员不按约定使用用户隐私泄漏 数据权属问题 解决方案&#xff1a;从主体信任…

设计模式(行为型设计模式——访问者模式)

设计模式&#xff08;行为型设计模式——访问者模式&#xff09; 访问者模式 基本定义 将作用于某种数据结构中的各元素的操作分离出来封装成独立的类&#xff0c;使其在不改变数据结构的前提下可以添加作用于这些元素的新的操作&#xff0c;为数据结构中的每个元素提供多种访…

ALPHA开发板修改CAN的设备树节点信息

一. 简介 上一篇文章通过查看 CAN硬件原理图知道了 CAN1接口对应的IO。文章地址如下&#xff1a; ALPHA开发板中CAN硬件图-CSDN博客 通过ALPHA开发板上的 CAN接口的硬件原理图知道&#xff0c;CAN1_TX 和 CAN1_RX 是 I.MX6ULL的 FlexCAN1 的发送和接收引脚&#xff0c;分别对…

Eureka和Nacos的关系

目录 它们的比较&#xff1a; 结论&#xff1a; Eureka和Nacos都是服务发现和注册中心&#xff0c;它们在微服务架构中扮演着关键角色&#xff0c;但它们是由不同的组织开发的&#xff0c;服务于类似但不完全相同的目的。以下是它们之间的关系&#xff1a; Eureka&#xff1a…

JDK下载配置

一、JDK的作用 Java开发环境&#xff1a;JDK提供了完整的Java开发环境&#xff0c;包含编译器&#xff08;javac&#xff09;、解释器&#xff08;java&#xff09;、打包工具&#xff08;jar&#xff09;、文档生成工具&#xff08;javadoc&#xff09;等一系列工具&#xff0…

SpringBoot健康监控

文章目录 1-SpringBoot2-监控-健康监控服务2-SpringBoot2-监控-Admin可视化 在Spring Boot中&#xff0c;可以通过Actuator模块实现应用程序的健康监控。Actuator是Spring Boot提供的一个用于监控和管理应用程序的模块&#xff0c;可以轻松地查看应用程序的运行状况、性能指标和…

Python3条件控制实战

在Python编程中,条件控制是一种重要的编程概念,它允许我们根据条件的成立与否来执行不同的代码块。在本文中,我们将探讨Python3中条件控制的实际运用,并通过示例来演示其用法。 什么是条件控制? 条件控制是编程中的一种结构,它允许根据条件的真假来选择执行不同的代码路…

有什么可以下载网页视频的浏览器插件 浏览器如何下载网页视频 网页视频怎么下载到本地 网页视频下载软件 IDM下载

在视频网站上看电影追剧&#xff0c;已经成为了大众生活中必不可少的一部分。为了保护自家视频的版权&#xff0c;很多平台都禁止用户下载会员视频。其实只要掌握了正确的方法&#xff0c;一样可以将会员视频下载到本地保存。那么有关有什么可以下载网页视频的浏览器&#xff0…

Websocket + Vue使用

这里有一篇文档可以参考一下> 闪现 POM文件 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-websocket</artifactId><version>2.7.0</version> </dependency> WebSocketConf…

数据库之MongoDB应用与开发

MongoDB应用与开发 1. MongoDB安装 l 官网下载安装介质&#xff1a; Try MongoDB Atlas Products | MongoDB 选择对应版本 修改环境变量 vi /etc/profile export MONGODB_HOME/home/lijin/mongodb export PATH P A T H : PATH: PATH:MONGODB_HOME/bin source /etc/profile …

TnT-LLM: Text Mining at Scale with Large Language Models

TnT-LLM: Text Mining at Scale with Large Language Models 相关链接&#xff1a;arxiv 关键字&#xff1a;Large Language Models (LLMs)、Text Mining、Label Taxonomy、Text Classification、Prompt-based Interface 摘要 文本挖掘是将非结构化文本转换为结构化和有意义的…