使用ensp搭建路由拓扑,并使用ospf协议实现网络互通实操

使用,ensp,搭建,路由,拓扑,ospf,协议,实现,网络,互通 · 浏览次数 : 8

小编点评

**拓扑配置** ```                            # DeviceA Huawei>display current-configuration configuration ospf#ospf 1 area 0.0.0.0 network 192.168.0.0 0.0.0.255 area 0.0.0.1 network 192.168.1.0 0.0.0.255#return<Huawei>display current-configuration interface Ethernet 0/0/1#interface Ethernet0/0/1 ip address 192.168.1.1 255.255.255.0#return<Huawei>display current-configuration interface Ethernet 0/0/0#interface Ethernet0/0/0 ip address 192.168.0.1 255.255.255.0#return<Huawei> # DeviceB Huawei>display current-configuration configuration ospf#ospf 1 area 0.0.0.0 network 192.168.0.0 0.0.0.255#return<Huawei>display current-configuration interface Ethernet 0/0/0#interface Ethernet0/0/0 ip address 192.168.2.2 255.255.255.0#return<Huawei>display current-configuration interface Ethernet 0/0/1#interface Ethernet0/0/1 ip address 172.17.1.1 255.255.255.0#return<Huawei> # DeviceC Huawei>display current-configuration configuration ospf#ospf 1 area 0.0.0.0 network 192.168.0.0 0.0.0.255#return<Huawei>display current-configuration interface Ethernet 0/0/0#interface Ethernet0/0/0 ip address 192.168.2.3 255.255.255.0#return<Huawei>display current-configuration configuration ospf#ospf 1 area 0.0.0.0 network 192.168.1.0 0.0.0.255#return<Huawei>display current-configuration interface Ethernet 0/0/1#interface Ethernet0/0/1 ip address 172.17.1.2 255.255.255.0#return<Huawei> # DeviceD Huawei>display current-configuration configuration ospf#ospf 1 area 0.0.0.0 network 192.168.0.0 0.0.0.255#return<Huawei>display current-configuration interface Ethernet 0/0/0#interface Ethernet0/0/0 ip address 192.168.2.4 255.255.255.0#return<Huawei>display current-configuration interface Ethernet 0/0/1#interface Ethernet0/0/1 ip address 172.17.1.3 255.255.255.0#return<Huawei> # DeviceE Huawei>display current-configuration configuration ospf#ospf 1 area 0.0.0.0 network 172.16.1.0 0.0.0.255#return<Huawei>display current-configuration interface Ethernet 0/0/0#interface Ethernet0/0/0 ip address 172.16.1.2 255.255.255.0#return<Huawei>display current-configuration interface Ethernet 0/0/1#interface Ethernet0/0/1 ip address 172.16.1.1 255.255.255.0#return<Huawei> # DeviceF Huawei>display current-configuration configuration ospf#ospf 1 area 0.0.0.2 network 172.17.1.0 0.0.0.255#return<Huawei>display current-configuration interface Ethernet 0/0/0#interface Ethernet0/0/0 ip address 172.17.1.2 255.255.255.0#return<Huawei>display current-configuration interface Ethernet 0/0/1#interface Ethernet0/0/1 ip address 172.17.1.1 255.255.255.0#return<Huawei> ```

正文

转载请注明出处:

1.使用ENSP 搭建如下拓扑:

                          

数据准备

  为完成此配置例,需准备如下的数据:

设备

Router ID

Process ID

IP地址

DeviceA

1.1.1.1

1

区域0:192.168.0.0/24

区域1:192.168.1.0/24

DeviceB

2.2.2.2

1

区域0:192.168.0.0/24

区域2:192.168.2.0/24

DeviceC

3.3.3.3

1

区域1:192.168.1.0/24、172.16.1.0/24

DeviceD

4.4.4.4

1

区域2:192.168.2.0/24、172.17.1.0/24

DeviceE

5.5.5.5

1

区域1:172.16.1.0/24

DeviceF

6.6.6.6

1

区域2:172.17.1.0/24

2.配置ospf

  DeviceA配置如下:

<Huawei>display current-configuration configuration ospf
#
ospf 1
 area 0.0.0.0
  network 192.168.0.0 0.0.0.255
 area 0.0.0.1
  network 192.168.1.0 0.0.0.255
#
return
<Huawei>display current-configuration interface Ethernet 0/0/1
#
interface Ethernet0/0/1
 ip address 192.168.1.1 255.255.255.0
#
return
<Huawei>display current-configuration interface Ethernet 0/0/0
#
interface Ethernet0/0/0
 ip address 192.168.0.1 255.255.255.0
#
return
<Huawei>

  DeviceB 配置:

<Huawei>display current-configuration configuration ospf
#
ospf 1
 area 0.0.0.0
  network 192.168.0.0 0.0.0.255
 area 0.0.0.2
  network 192.168.2.0 0.0.0.255
#
return
<Huawei>display current-configuration interface Ethernet 0/0/0
#
interface Ethernet0/0/0
 ip address 192.168.0.2 255.255.255.0
#
return
<Huawei>display current-configuration interface Ethernet 0/0/1
#
interface Ethernet0/0/1
 ip address 192.168.2.1 255.255.255.0
#
return
<Huawei>

  DeviceC 配置:

<Huawei>display current-configuration configuration ospf
#
ospf 1
 area 0.0.0.1
  network 192.168.1.0 0.0.0.255
  network 172.16.1.0 0.0.0.255
#
return
<Huawei>display current-configuration interface Ethernet 0/0/0
#
interface Ethernet0/0/0
 ip address 192.168.1.2 255.255.255.0
#
return
<Huawei>display current-configuration interface Ethernet 0/0/1
#
interface Ethernet0/0/1
 ip address 172.16.1.1 255.255.255.0
#
return
<Huawei>

  DeviceD配置如下:

<Huawei>display current-configuration configuration ospf
#
ospf 1
 area 0.0.0.2
  network 192.168.2.0 0.0.0.255
  network 172.17.1.0 0.0.0.255
#
return
<Huawei>display current-configuration interface Ethernet 0/0/0
#
interface Ethernet0/0/0
 ip address 192.168.2.2 255.255.255.0
#
return
<Huawei>display current-configuration interface Ethernet 0/0/1
#
interface Ethernet0/0/1
 ip address 172.17.1.1 255.255.255.0
#
return
<Huawei>

  DeviceE配置如下:

<Huawei>display current-configuration configuration ospf
#
ospf 1
 area 0.0.0.1
  network 172.16.1.0 0.0.0.255
#
return
<Huawei>display current-configuration interface Ethernet 0/0/0
#
interface Ethernet0/0/0
 ip address 172.16.1.2 255.255.255.0
#
return
<Huawei>

  DeviceF配置如下:

<Huawei>display current-configuration configuration ospf
#
ospf 1
 area 0.0.0.2
  network 172.17.1.0 0.0.0.255
#
return
<Huawei>
<Huawei>display current-configuration interface Ethernet 0/0/0
#
interface Ethernet0/0/0
 ip address 172.17.1.2 255.255.255.0
#
return
<Huawei>
<Huawei>

3.验证网络是否打通:

  在 DeviceE 设备上ping 另一个边缘区域的DeviceF,并跟踪过程:

                    

 4.分别查看每个设备上的路由和ospf路由:

  DeviceA 的路由表和ospf 路由表:

                   

   DeviceB 的路由表和ospf 路由表:

                   

   DeviceC 的路由表和ospf 路由表:

                     

   DeviceD 的路由表和ospf 路由表:

                     

   DeviceE 的路由表和ospf 路由表:

                  

   DeviceF 的路由表和ospf 路由表:

                   

 

与使用ensp搭建路由拓扑,并使用ospf协议实现网络互通实操相似的内容:

使用ensp搭建路由拓扑,并使用ospf协议实现网络互通实操

转载请注明出处: 1.使用ENSP 搭建如下拓扑: 数据准备 为完成此配置例,需准备如下的数据: 设备 Router ID Process ID IP地址 DeviceA 1.1.1.1 1 区域0:192.168.0.0/24 区域1:192.168.1.0/24 DeviceB 2.2.2.2

使用ensp搭建路由拓扑,并使用isis协议实现网络互通实操

转载请注明出处: 1.通过拓扑搭建如下拓扑: 其中R7、R8为L1,R6为L1/2,R9为L2。 2.配置isis实现网络互通 R7配置如下: [Huawei]isis 1 [Huawei-isis-1]di th # isis 1 is-level level-1 network-entity 1

我如何使用工具学习网络技术?

在学习中使用哪些工具 “工欲善其事必先利其器。”在网络技术的学习过程中,往往需要使用一些工具,来辅助我们学习,以此将抽象的技术通过具体的方式来表现出来,便于加深网络理论的印象。 今天,我将列举我在学习过程中使用过的工具。以网络仿真工具为例,建议初学者选择一个厂商的软件作为主用软件(如eNSP或者HC

DHCP欺骗劫持与防御策略

DHCP欺骗劫持与防御策略 一、任务目的 掌握DHCP的欺骗原理与DHCP监听配置 二、任务设备、设施 ensp win10 VMware typora win7 三、任务拓扑结构图 四、基本配置 1.接口IP与默认路由配置(在这里同样可以使用ospf,加上反掩码效果一样) R1 system-vi

使用Cloudflare Worker加速docker镜像

前言 开发者越来越难了,现在国内的docker镜像也都️了,没有镜像要使用docker太难了,代理又很慢 现在就只剩下自建镜像的办法了 GitHub上有开源项目可以快速搭建自己的镜像库,不过还是有点麻烦,还好Cloudflare暂时还活着‍ 本文记录一下使用 Cloudf

使用C#/.NET解析Wiki百科数据实现获取历史上的今天

创建一个webapi项目做测试使用。 创建新控制器,搭建一个基础框架,包括获取当天日期、wiki的请求地址等 创建一个Http请求帮助类以及方法,用于获取指定URL的信息 使用http请求访问指定url,先运行一下,看看返回的内容。内容如图右边所示,实际上是一个Json数据。我们主要解析 大事记 部

Pybind11和CMake构建python扩展模块环境搭建

使用pybind11的CMake模板来创建拓展环境搭建 从Github上下载cmake_example的模板,切换分支,并升级pybind11子模块到最新版本 拉取pybind11使用cmake构建工具的模板仓库 git clone --recursive https://github.com/mr

说说RabbitMQ延迟队列实现原理?

使用 RabbitMQ 和 RocketMQ 的人是幸运的,因为这两个 MQ 自身提供了延迟队列的实现,不像用 Kafka 的同学那么苦逼,还要自己实现延迟队列。当然,这都是题外话,今天咱们重点来聊聊 RabbitMQ 延迟队列的实现原理,以及 RabbitMQ 实现延迟队列的优缺点有哪些? 很多人

使用FModel提取游戏资产

目录前言FModel简介FModel安装FModel使用初次使用资产预览资产导出附录dumperDumper-7生成usmap文件向游戏中注入dll 前言 这篇文章仅记录我作为初学者使用FModel工具提取某款游戏模型的过程。 FModel简介 FModel是一个开源软件,可以用于查看和提取UE4-

使用GSAP制作动画视频

GSAP 3Blue1Brown给我留下了深刻印象。利用动画制作视频,内容简洁,演示清晰。前两天刚好碰到一件事,我就顺便学习了一下怎么用代码做动画。 以javascrip为例,有两个动画引擎,GSAP和Animajs。由于网速的原因,询问了GPT后,我选择了GSAP来制作我的第一个动画视频。 制作动