OSPF是什么

OSPF(Open Shortest Pass First,开放最短路径优先协议),是一个最常用的内部网管协议,是一个链路状态协议。

使用场景:适用于运营商、政府机构等大型网络中多节点要求互联互通

网络结构:支持两层结构 1骨干区域 2 子区域

OSPF基于IP

OSPF不属于网络层协议

PC12 配置好IP信息后启动

PC13 同样操作配置好IP信息后启动

路由设备配置部分

R6  基础环境配置

<Huawei>system-view    #切换模式

[Huawei]sysname R6    #给设备起个名字 R6

[R6]display ip interface brief    #查看设备接口信息

[R6]int GigabitEthernet 0/0/0    #进入 GE 0 接口

[R6]ip add 10.0.1.1 24    #配置IP

[R6]q    #退出并返回上一级目录

[R6]int GigabitEthernet 0/0/1

[R6-GigabitEthernet0/0/1]ip add 20.0.2.1 24

[R6-GigabitEthernet0/0/1]

[R6-GigabitEthernet0/0/1]display ip interface brief

R8  基础环境配置

<Huawei>

<Huawei>system-view    #切换模式

Enter system view, return user view with Ctrl+Z.

[Huawei]

[Huawei]sysname R8    #给设备起个名字 R8

[R8]

[R8]int GigabitEthernet 0/0/0    #进入 GE 0 接口

[R8-GigabitEthernet0/0/0]

[R8-GigabitEthernet0/0/0]ip add 20.0.2.2 24    #配置IP

[R8-GigabitEthernet0/0/0]

Mar  6 2019 11:07:24-08:00 R8 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP

on the interface GigabitEthernet0/0/0 has entered the UP state.

[R8-GigabitEthernet0/0/0]

[R8-GigabitEthernet0/0/0]int GigabitEthernet 0/0/1    #进入 GE 1 接口

[R8-GigabitEthernet0/0/1]

[R8-GigabitEthernet0/0/1]ip add 30.0.3.2 24    #配置IP

Mar  6 2019 11:08:48-08:00 R8 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP

on the interface GigabitEthernet0/0/1 has entered the UP state.

[R8-GigabitEthernet0/0/1]q    #退出并返回上一级目录

[R8]

[R8]interface LoopBack0

[R8-LoopBack0]q    #退出并返回上一级目录

[R8]

[R8]interface LoopBack0    #配置回环口 0

[R8-LoopBack0]ip add 6.6.6.6 24    #配置IP

[R8-LoopBack0]q    #退出并返回上一级目录

[R8]

[R8]display ip interface brief    #查看设备接口信息

*down: administratively down

^down: standby

(l): loopback

(s): spoofing

The number of interface that is UP in Physical is 4

The number of interface that is DOWN in Physical is 0

The number of interface that is UP in Protocol is 4

The number of interface that is DOWN in Protocol is 0

Interface                         IP Address/Mask      Physical   Protocol

GigabitEthernet0/0/0              20.0.2.2/24          up         up

GigabitEthernet0/0/1              30.0.3.2/24          up         up

LoopBack0                         6.6.6.6/24           up         up(s)

NULL0                             unassigned           up         up(s)

R9  基础环境配置

<Huawei>SY

<Huawei>system-view

Enter system view, return user view with Ctrl+Z.

[Huawei]

[Huawei]SY

[Huawei]sysname R9

[R9]

[R9]int

[R9]interface  gi

[R9]interface  GigabitEthernet 0/0/0

[R9-GigabitEthernet0/0/0]ip add 30.0.3.3 24

[R9-GigabitEthernet0/0/0]

Mar  6 2019 11:20:22-08:00 R9 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP

on the interface GigabitEthernet0/0/0 has entered the UP state.

[R9-GigabitEthernet0/0/0]interface  GigabitEthernet 0/0/1

[R9-GigabitEthernet0/0/1]ip add 60.0.6.3 24

Mar  6 2019 11:20:55-08:00 R9 %%01IFNET/4/LINK_STATE(l)[1]:The line protocol IP

on the interface GigabitEthernet0/0/1 has entered the UP state.

[R9-GigabitEthernet0/0/1]q

[R9]

[R9]display ip interface brief

*down: administratively down

^down: standby

(l): loopback

(s): spoofing

The number of interface that is UP in Physical is 3

The number of interface that is DOWN in Physical is 0

The number of interface that is UP in Protocol is 3

The number of interface that is DOWN in Protocol is 0

Interface                         IP Address/Mask      Physical   Protocol

GigabitEthernet0/0/0              30.0.3.3/24          up         up

GigabitEthernet0/0/1              60.0.6.3/24          up         up

NULL0                             unassigned           up         up(s)

[R9]

[R9]

OSPF配置部分

R6  配置OSPF

R8  配置OSPF

<R8>system-view    #切换模式

Enter system view, return user view with Ctrl+Z.

[R8]

[R8]ospf 2    #创建OSPF线程2

[R8-ospf-2]area 6    #创建区域 6

[R8-ospf-2-area-0.0.0.6]network 20.0.2.0 255.255.255.0    #宣告网段

[R8-ospf-2-area-0.0.0.6]network 30.0.3.0 255.255.255.0    #宣告网段

[R8-ospf-2-area-0.0.0.6]network 6.6.6.6 255.255.255.0    #宣告网段

[R8-ospf-2-area-0.0.0.6]q    #退出并返回上一级目录

[R8-ospf-2]

[R8-ospf-2]display this    #查看设备接口信息

[V200R003C00]

#

ospf 2

area 0.0.0.6

network 6.6.6.0 0.0.0.255

network 20.0.2.0 0.0.0.255

network 30.0.3.0 0.0.0.255

#

return

[R8-ospf-2]

R9  配置OSPF

华为路由器配置OSPF的更多相关文章

  1. Zabbix监控华为路由器配置

    zabbix监控华为路由器 一.配置路由器界面: 开启snmpv2c功能,同时勾选v2c版本(不要勾v1,不安全,其实v2也不安全,如果很注重安全的话,一定要只配置v3). 手里没有路由器登录账号,大 ...

  2. 路由器配置——OSPF协议(2)

    一.实验目的:使用OSPF协议达到全网互通的效果 二.拓扑图 三.具体步骤配置 (1)R1路由器配置 Router>enableRouter#configure terminalEnter co ...

  3. 路由器配置——OSPF协议(1)

    一.实验目的:用OSPF协议使全网互通 二.拓扑图 三.具体步骤配置 (1)R1路由器配置 Router>enableRouter#configure terminalEnter configu ...

  4. 华为路由器OSPF配置常用命令

    OSPF单区域配置 ospf 1 进入ospf视图1代表进程号 area 0 创建区域并进入OSPF区域视图,输入要创建的区域ID,骨干区域即区域0 network +IP +匹配码 display ...

  5. 华为路由器AR1220F-S的端口映射NAT配置(拨号光纤上网)

    telnet 登录 或者ssh登录路由器 //进入系统试图界面 sys-view //第一步. 添加acl规则, 允许内网本身访问对外的公网ip. 否则,只能外部人员访问你的公网ip [Huawei] ...

  6. 华为路由器GRE配置

    1. 协议简介 gre(generic routing encapsulation,通用路由封装)协议是对某些网络层协议(如ip 和ipx)的数据报进行封装,使这些被封装的数据报能够在另一个网络层协议 ...

  7. 路由器配置——基于链路的OSPF简单口令认证

    一.实验目的:掌握基于链路的OSPF简单口令认证 二.拓扑图: 三.具体步骤配置: (1)R1路由器配置 Router>enable Router#configure terminal Ente ...

  8. 路由器配置——基于区域的OSPF,MD5认证

    一.实验目的:掌握OSPF基于区域的MD5认证 二.拓扑图: 三.具体步骤配置 (1)R1路由器配置 Router>enable Router#configure terminal Enter ...

  9. 路由器配置——基于区域的OSPF简单认证

    一.实验目的:掌握区域的OSPF简单认证 二.拓扑图: 三.具体步骤配置: (1)R1路由器配置 Router>enable Router#configure terminal Enter co ...

随机推荐

  1. HTML全局属性(global attribute)有哪些(包含H5)

    1.accesskey:提供了为当前元素生成键盘快捷键的提示.这个属性由空格分隔的字符列表组成.浏览器应该使用在计算机键盘布局上存在的第一个. 2.autocapitalize:控制用户的文本输入是否 ...

  2. 初等函数——指数函数(Exponential Function)

    一般地,函数叫做指数函数,其中x是自变量,函数的定义域是R.

  3. adb命令—monkey篇

    monkey 目录 monkey 1.Monkey介绍 2.Monkey是用来做什么的 3.Monkey程序介绍 下面就是一些Monkey命令了 1.Monkey介绍 顾名思义,Monkey就是猴子, ...

  4. Redis哨兵模式(sentinel)部署

    1 主机环境 我这里使用的操作系统是centos 6.5,安装在vmware上,共三台. 主机名 IP 操作系统 用户名 安装目录 node1 192.168.1.101 centos 6.5 wxy ...

  5. JSON数据处理框架Jackson精解第一篇-序列化与反序列化核心用法

    Jackson是Spring Boot默认的JSON数据处理框架,但是其并不依赖于任何的Spring 库.有的小伙伴以为Jackson只能在Spring框架内使用,其实不是的,没有这种限制.它提供了很 ...

  6. Linux实战(16):Centos history命令进阶

    因在使用history命令是发现历史命令不同步,没有时间戳,在查看历史操作的时候很不方便,特查询了相关文档,发现可通过系统自带的logger来记录跟踪,历史命令执行的用户,时间,登录IP. vim / ...

  7. Docker实战(1):通过配置文件启动MongoDB

    系统环境:Centos7 MongoDB 4.0.0 创建文件 注意:创建文件全是为了Docker run做准备,文件所对应的路径需与下一步的映射路径所对应,路径可自我更改. mkdir mongo ...

  8. python 第二节课内容和练习

    一.列表 []表示列表,用','进行分隔,list有序 能够进行索引 切片 (in append extend count index insert pop remove,reverse sort c ...

  9. Elasticsearch(1):基础入门

      1 Elasticsearch¶   在如今数据为王的时代,如何充分高效实现数据检索和分析是数据应用的关键.以电商平台为例,输入一个商品名称,那么就要求系统以最快的速度将所有相关的商品搜索处理.现 ...

  10. python与Oracle

    1.python 3.6.6 2.使用cx_Oracle      -----------安装方法:pip install cx_Oracle 3.游标 cursor -----游标是系统为用户开创的 ...