ensp静态路由综合实验(一)

实验拓扑:

实验目的:

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链路;

实验内容:

子网划分:

R1环回  192.168.1.32/28 192.168.1.48/28  汇总192.168.1.32/27

R2环回  192.168.1.64/28 192.168.1.80/28  汇总 192.168.1.64/27

 R4环回   192.168.1.128/28 192.168.144/28  汇总  192.168.1.128/27 

R1配置:
<Huawei>sys    
<Huawei>system-view 
[Huawei]sys    
[Huawei]sysname R1
[R1]
#配置环回接口
[R1]int loopback 0
[R1-LoopBack0]ip add 192.168.1.33 28
[R1-LoopBack0]int loopback 1
[R1-LoopBack1]ip add 192.168.1.49 28
[R1-LoopBack1]q
[R1]int g 0/0/0
[R1-GigabitEthernet0/0/0]ip add 192.168.1.1 30
[R1-GigabitEthernet0/0/0]q
[R1]int g 0/0/1 
[R1-GigabitEthernet0/0/1]ip add 192.168.1.9 30
[R1-GigabitEthernet0/0/1]q#配置静态路由
[R1]ip route-static 192.168.1.64 27 192.168.1.2
[R1]ip route-static 192.168.1.5 28 192.168.1.2
[R1]ip route-static 192.168.1.97 27 192.168.1.10
[R1]ip route-static 192.168.1.13 30 192.168.1.10
[R1]ip route-static 192.168.1.14 30 192.168.1.10
[R1]ip route-static 192.168.1.128 27 192.168.1.10
[R1]ip route-static 192.168.1.17 30 192.168.1.2
[R1]ip route-static 192.168.1.21 30 192.168.1.2
[R1]ip route-static 192.168.1.161 27 192.168.1.2
[R1]ip route-static 192.168.1.161 27 192.168.1.10
[R1]ip route-static 192.168.1.128 27 192.168.1.2[R1]ip route-static 192.168.1.32 27 NULL 0#缺省路由
[R1]ip route-static 0.0.0.0 0 192.168.1.2
[R1]ip route-static 0.0.0.0 0 192.168.1.10#配置telent服务
[R1]aaa
[R1-aaa]local-user rrl password cipher  rrl12345 privilege level 15
Info: Add a new user.
[R1-aaa]local-user rrl service-type telnet 
[R1-aaa]q	
[R1]user-in	
[R1]user-interface v	
[R1]user-interface vty 0 4
[R1-ui-vty0-4]au	
[R1-ui-vty0-4]authentication-mode aaa
R2配置:
<Huawei>sys    
<Huawei>system-view 
[Huawei]sys    
[Huawei]sysname R2
[R2]
#配置环回接口
[R2]int loopback 0
[R2-LoopBack0]ip add 192.168.1.65 28
[R2-LoopBack0]int loopback 1
[R2-LoopBack1]ip add 192.168.1.81 28
[R2-LoopBack1]q
[R2]int g 0/0/0
[R2-GigabitEthernet0/0/0]ip add 192.168.1.2 30
[R2-GigabitEthernet0/0/0]q
[R2]int g 0/0/1 
[R2-GigabitEthernet0/0/1]ip add 192.168.1.5 30
[R2-GigabitEthernet0/0/1]q#配置静态路由
[R2]ip route-static 192.168.1.9 30 192.168.1.1
[R2]ip route-static 192.168.1.128 27 192.168.1.6
[R2]ip route-static 192.168.1.17 30 192.168.1.6
[R2]ip route-static 192.168.1.21 30 192.168.1.6
[R2]ip route-static 192.168.1.14 30 192.168.1.6
[R2]ip route-static 192.168.1.97 27 192.168.1.6
[R2]ip route-static 192.168.1.97 27 192.168.1.1
[R2]ip route-static 192.168.1.161 27 192.168.1.6
[R2]ip route-static 192.168.1.32 27 192.168.1.1[R2]ip route-static 192.168.1.64 27 NULL 0#缺省路由
[R2]ip route-static 0.0.0.0 0 192.168.1.6
R3配置:
[R3]int g 0/0/0
[R3-GigabitEthernet0/0/0]ip add	
[R3-GigabitEthernet0/0/0]ip address 192.168.1.10 30
Mar 19 2024 16:02:10-08:00 R3 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface GigabitEthernet0/0/0 has entered the UP state. 
[R3-GigabitEthernet0/0/0]q
[R3]
[R3]int g0/0/2
[R3-GigabitEthernet0/0/2]ip add 192.168.1.97 27
[R3-GigabitEthernet0/0/2]q
[R3]int g0/0/1
[R3-GigabitEthernet0/0/1]ip add 192.168.1.13 30
[R3-GigabitEthernet0/0/1]q#dhcp配置
[R3]dhcp enable
Info: The operation may take a few seconds. Please wait for a moment.done.
[R3]int g0/0/2	
[R3-GigabitEthernet0/0/2]dhcp select global 
[R3-GigabitEthernet0/0/2]q
[R3]ip pool 1
Info: It's successful to create an IP address pool.
[R3-ip-pool-1]network 192.168.1.96 mask 27
[R3-ip-pool-1]gateway-list 192.168.1.97
[R3-ip-pool-1]dns	
[R3-ip-pool-1]dns-list 114.114.114.114
[R3-ip-pool-1]q#静态路由配置
[R3]ip route-static 192.168.1.32 27 192.168.1.9
[R3]ip route-static 192.168.1.1 30 192.168.1.9
[R3]ip route-static 192.168.1.6 30 192.168.1.14
[R3]ip route-static 192.168.1.128 27 192.168.1.14
[R3]ip route-static 192.168.1.17 30 192.168.1.14
[R3]ip route-static 192.168.1.21 30 192.168.1.14
[R3]ip route-static 192.168.1.65 28 192.168.1.9
[R3]ip route-static 192.168.1.65 28 192.168.1.14
[R3]ip route-static 192.168.1.81 28 192.168.1.14
[R3]ip route-static 192.168.1.81 28 192.168.1.9
[R3]ip route-static 192.168.1.161 27 192.168.1.14#缺省路由
[R3]ip route-static 0.0.0.0 0 192.168.1.14
R4配置:
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]sys	
[Huawei]sysname R4
[R4]int loo	
[R4]int LoopBack 0
[R4-LoopBack0]ip add 192.168.1.129 28
[R4-LoopBack0]q
[R4]int loo	
[R4]int LoopBack 1
[R4-LoopBack1]ip add 192.168.1.145 28
[R4-LoopBack1]q
[R4]int g0/0/0
[R4-GigabitEthernet0/0/0]ip add 192.168.1.6 30
[R4-GigabitEthernet0/0/0]q
[R4]int g0/0/1
[R4-GigabitEthernet0/0/1]ip add 192.168.1.14 30
[R4-GigabitEthernet0/0/1]q
[R4]int g0/0/2
[R4-GigabitEthernet0/0/2]ip add 192.168.1.17 30
[R4-GigabitEthernet0/0/2]q
[R4]int g4/0/0
[R4-GigabitEthernet4/0/0]ip add 192.168.1.21 30
[R4-GigabitEthernet4/0/0]q#静态路由配置
[R4]ip route-static 192.168.1.2 30 192.168.1.5	
[R4]ip route-static 192.168.1.97 27 192.168.1.13
[R4]ip route-static 192.168.1.10 30 192.168.1.13
[R4]ip route-static 192.168.1.33 30 192.168.1.13
[R4]ip route-static 192.168.1.49 30 192.168.1.13
[R4]ip route-static 192.168.1.65 28 192.168.1.5
[R4]ip route-static 192.168.1.81 28 192.168.1.5
[R4]ip route-static 192.168.1.161 27 192.168.1.18
[R4]ip route-static 192.168.1.161 27 192.168.1.22
[R4]ip route-static 192.168.1.33 30 192.168.1.5
[R4]ip route-static 192.168.1.49 30 192.168.1.5[R4]ip route-static 192.168.1.128 27 NULL 0#缺省路由
[R4]ip route-static 0.0.0.0 0 192.168.1.18
[R4]ip route-static 0.0.0.0 0 192.168.1.22#更改优先级
[R4]ip route-static 0.0.0.0 0 192.168.1.22 preference 61
R5配置:
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]sys	
[Huawei]sysname R5
#环回接口
[R5]int LoopBack 0
[R5-LoopBack0]ip add 192.168.1.161 27
[R5]int g0/0/0
[R5-GigabitEthernet0/0/0]ip add 192.168.1.18 30
[R5-GigabitEthernet0/0/0]q
[R5]int g0/0/2
[R5-GigabitEthernet0/0/2]ip add 192.168.1.22 30
[R5-GigabitEthernet0/0/2]q
[R5]int g0/0/1 
[R5-GigabitEthernet0/0/1]ip add 12.0.0.1 24
[R5-GigabitEthernet0/0/1]q
[R5]q
<R5>save#静态路由配置
[R5]ip route-static 192.168.1.6 30 192.168.1.17
[R5]ip route-static 192.168.1.65 28 192.168.1.17
[R5]ip route-static 192.168.1.81 28 192.168.1.17
[R5]ip route-static 192.168.1.14 30 192.168.1.17
[R5]ip route-static 192.168.1.97 27 192.168.1.17
[R5]ip route-static 192.168.1.2 30 192.168.1.17
[R5]ip route-static 192.168.1.10 30 192.168.1.17
[R5]ip route-static 192.168.1.33 28 192.168.1.17
[R5]ip route-static 192.168.1.49 28 192.168.1.17
[R5]ip route-static 192.168.1.129 28 192.168.1.21
[R5]ip route-static 192.168.1.145 28 192.168.1.21
[R5]ip route-static 192.168.1.6 30 192.168.1.21
[R5]ip route-static 192.168.1.65 28 192.168.1.21
[R5]ip route-static 192.168.1.81 28 192.168.1.21
[R5]ip route-static 192.168.1.2 30 192.168.1.21
[R5]ip route-static 192.168.1.33 28 192.168.1.21
[R5]ip route-static 192.168.1.49 28 192.168.1.21
[R5]ip route-static 192.168.1.10 30 192.168.1.21
[R5]ip route-static 192.168.1.97 27 192.168.1.21#公网配置
[R5]ip route-static 0.0.0.0 0 12.0.0.6
[R5]acl 2000                	
[R5-acl-basic-2000]rule permit source 192.168.1.0 0.0.0.255
[R5-acl-basic-2000]q
[R5]  int 0/0/1
[R5]int g0/0/1
[R5-GigabitEthernet0/0/1]nat o	
[R5-GigabitEthernet0/0/1]nat outbound 2000
[R5-GigabitEthernet0/0/1]q#telent地址1映射
[R5]int g0/0/1
[R5-GigabitEthernet0/0/1]nat server protocol tcp global current-interface 23 in	[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#更改优先级,将192.168.1.20网段优先级改为61
[R5]ip route-static 192.168.1.0 30 192.168.1.21 pre 61
Info: Succeeded in modifying route.
[R5]ip route-static 192.168.1.4 30 192.168.1.21 pre 61
Info: Succeeded in modifying route.
[R5]ip route-static 192.168.1.8 30 192.168.1.21 pre 61
Info: Succeeded in modifying route.
[R5]ip route-static 192.168.1.12 30 192.168.1.21 pre 61
[R5]ip route-static 192.168.1.64 27 192.168.1.21 pre 61
[R5]ip route-static 192.168.1.32 27 192.168.1.21 pre 61
[R5]ip route-static 192.168.1.128 27 192.168.1.21 pre 61
[R5]ip route-static 192.168.1.96 27 192.168.1.21 pre 61

R6配置:

<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]sys	
[Huawei]sysname R6
[R6]int g0/0/0
[R6-GigabitEthernet0/0/0]ip add 12.0.0.6 24
[R6-GigabitEthernet0/0/0]q
[R6]int LoopBack 0
[R6-LoopBack0]ip add 1.1.1.6 24

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

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

相关文章

Web API —— BOM 学习(完结)

目录 一、BOM 介绍 二、Window 对象 &#xff08;一&#xff09;基本介绍 &#xff08;二&#xff09;定时器 —— 延时函数 1.语法 2.清除时间函数 3.和 interval 间歇函数的区别 &#xff08;三&#xff09;JS 执行机制 1.介绍 2.同步任务 3.异步任务 4.执行过程…

编程出现bug?怎么用Python打印异常

在 Python 编程中&#xff0c;异常是指程序执行过程中出现的错误或异常情况。当程序遇到异常时&#xff0c;为了更好地调试和定位问题&#xff0c;我们需要打印异常信息。本文将详细介绍如何在 Python 中打印异常&#xff0c;并提供一些示例和注意事项。 一、try-except 语句捕…

C++资产设备管理系统

一、引言 1.1 项目设计背景及意义 1.1.1理论研究基础 &#xff08;1&#xff09;C在C的基础上增加了面向对象的机制。 &#xff08;2&#xff09;充分利用面向对象机制中的多态性实现函数的设计。 1.1.2 技术层面的支持 运用系统为C面向对象程序设计提供的各种设计方法和V…

24.park和unpark方法

1.park方法可以暂停线程&#xff0c;线程状态为wait。 2.unpark方法可以恢复线程&#xff0c;线程状态为runnable。 3.LockSupport的静态方法。 4.park和unpark方法调用不分先后&#xff0c;unpark先调用&#xff0c;park后执行也可以恢复线程。 public class ParkDemo {pu…

冗余双写方案下数据一致性问题解决及延申问题处理方案

主要整理了采用冗余双写方案后的问题解决方案。 1、问题&#xff1a;冗余双写场景下&#xff0c;如何解决数据一致性问题&#xff1f; 方案一&#xff1a; 直接RPC调用Seata分布式事务框架&#xff0c;采用该方式实现了事务的强一致性&#xff0c;代码逻辑简单的同时业务侵入…

【题解】—— LeetCode一周小结12

【题解】—— 每日一道题目栏 上接&#xff1a;【题解】—— LeetCode一周小结11 18.区域和检索 - 数组不可变 题目链接&#xff1a;303. 区域和检索 - 数组不可变 1.计算索引 left 和 right &#xff08;包含 left 和 right&#xff09;之间的 nums 元素的 和 &#xff0c;其…

嵌入式学习46——硬件相关2串口通信

串口&#xff1a; 端口&#xff1a; COM 波特率&#xff1a; 9600 115200 &#xff08;bps&#xff09; 每秒传输的数据…

Multimodal Chain-of-Thought Reasoning in Language Models阅读笔记

论文&#xff08;2023年&#xff09;链接&#xff1a;https://arxiv.org/pdf/2302.00923.pdf GitHub项目链接&#xff1a;GitHub - amazon-science/mm-cot: Official implementation for "Multimodal Chain-of-Thought Reasoning in Language Models" (stay tuned a…

14:有效的符号

给定一个只包括 (&#xff0c;)&#xff0c;{&#xff0c;}&#xff0c;[&#xff0c;] 的字符串 s &#xff0c;判断字符串是否有效。 有效字符串需满足&#xff1a; 左括号必须用相同类型的右括号闭合。左括号必须以正确的顺序闭合。每个右括号都有一个对应的相同类型的左括…

前端-html-02

1.列表 标签名功能和语义属性单标签还是双标签ul无序列表包裹元素双标签 ol 有序列表包裹元素双标签li列表项双标签dl定义列表包裹元素双标签dt定义列表项标题双标签dd定义列表项描述双标签 li必须由Ul或者ol包裹 <!DOCTYPE html> <html><head><…

腾讯云4核8G12M轻量服务器性能测评,支持多少人同时在线?

腾讯云4核8G服务器价格&#xff1a;轻量4核8G12M优惠价格646元15个月、CVM S5服务器4核8G配置1437元买1年送3个月。腾讯云4核8G服务器支持多少人同时在线&#xff1f;支持30个并发数&#xff0c;可容纳日均1万IP人数访问。腾讯云百科txybk.com整理4核8G服务器支持多少人同时在线…

7.JDK下载和安装

文章目录 一、下载二、安装三、JDK的安装目录介绍 写JAVA代码不是随随便便能写的&#xff0c;我们得先做一点准备工作。例如&#xff0c;我们平时想要玩一把游戏&#xff0c;就需要先下载、安装才能玩游戏。JAVA也是一样的&#xff0c;也是需要下载并安装相关的软件&#xff0c…

Avalonia笔记2 -数据集合类控件

学习笔记&#xff1a; 1. DataGrid 笔记1中已经记录&#xff1b; 2. ItemsControl 属性&#xff1a; ItemsSource&#xff1a;数据源 ItemsControl.ItemTemplate&#xff1a;单项数据模板&#xff0c;内部使用<DataTemplate> 示例&#xff1a; <ItemsContr…

【启发式算法】同核分子优化算法 Homonuclear Molecules Optimization HMO算法【Matlab代码#70】

文章目录 【获取资源请见文章第4节&#xff1a;资源获取】1. 算法简介2. 部分代码展示3. 仿真结果展示4. 资源获取 【获取资源请见文章第4节&#xff1a;资源获取】 1. 算法简介 同核分子优化算法&#xff08;Homonuclear Molecules Optimization&#xff0c;HMO&#xff09;是…

【源码】I.MX6ULL移植OpenCV

编译完成的源码&#xff1a; git clone https://gitee.com/wangyoujie11/atkboard_-linux_-driver.git 1.下载源码放在自己的opecv源码目录下 2.QTOpenCV工程代码放置的位置 3.更改.pro工程文件的opencv地址 4.使用命令行编译 前提是自己环境中已经配置好arm-qt的交叉编译…

Springboot整合Redis报错:Unable to connection Redis

今天在做Springboot整合Redis中碰到下列错误&#xff1a; 基于以上的错误首先在Xshell或者其他远程操控虚拟机的软件上看能不能连接到Redis: [zzllocalhost ~]$ redis-cli -h 192.168.136.132 -p 6379 -a ****** Warning: Using a password with -a or -u option on the comma…

xxl-job 适配人大金仓数据库 V8R6

前言 由于一些众所周知的原因&#xff0c;项目需要需要进行改造使其适配人大金仓的数据库。 xxl-job适配人大金仓 特此说明&#xff1a; 当前修改的xxl-job版本 为 2.4.1-SNAPSHOT mysql上的xxl-job库 迁移到 人大金仓数据库上pom中新增依赖 kingbase8 驱动 注意版本<!-…

连接数据库(MySQL)的JDBC

目录 JDBC简介快速入门API详解DriverManager&#xff08;驱动管理类&#xff09;注册驱动&#xff1a;获取数据库连接(对象)&#xff1a; Connection&#xff08;数据库连接对象&#xff09;获取执行SQL的对象管理事务 Statement(执行SQL语句)执行DML、DDL语句执行DQL语句 Resu…

Sora那么牛,他的模型的成本会有多少呢?

Sora的训练需要大量的计算资源&#xff0c;估计需要4211-10528个 Nvidia H100 GPUs运行一个月。推理成本&#xff1a;一个Nvidia H100 GPU大约每小时能生成5分钟的视频。初期的Sora成本将非常高&#xff0c;肯定是不适合普通人来使用&#xff0c;所以目前OpenAI都是先找一些艺术…

STM32串口收发单字节数据原理及程序实现

线路连接&#xff1a; 显示屏的SCA接在B11&#xff0c;SCL接在B10&#xff0c;串口的RX连接A9&#xff0c;TX连接A10。 程序编写&#xff1a; 在上一个博客中实现了串口的发送代码&#xff0c;这里实现串口的接收代码&#xff0c;在上一个代码的基础上增加程序功能。 Seiral.…