玩转华为ENSP模拟器系列 | 调整静态BFD检测时间

Posted COCOgsta

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了玩转华为ENSP模拟器系列 | 调整静态BFD检测时间相关的知识,希望对你有一定的参考价值。

素材来源:华为路由器配置指南

一边学习一边整理试验笔记,并与大家分享,侵权即删,谢谢支持!

附上汇总贴:玩转华为ENSP模拟器系列 | 合集_COCOgsta的博客-CSDN博客_ensp实验大全


目标

配置BFD报文收发间隔和检测倍数

组网模型

配置思路

  • 配置静态BFD
  • 配置本端标识符和远端标识符
  • 配置BFD报文发送间隔
  • 配置BFD报文接收间隔
  • 配置本地检测倍数

操作步骤

  1. 配置各接口IP地址(略)
  2. 全局使能BFD功能

配置CX1

CX1:
bfd

配置CX2

CX2:
bfd
  1. 配置静态BFD for IP

配置CX1

CX1:
bfd cx1-cx2 bind peer-ip 10.1.1.2 source-ip 10.1.1.1

配置CX2

CX2:
bfd cx2-cx1 bind peer-ip 10.1.1.1 source-ip 10.1.1.2
  1. 配置本端标识符和远端标识符

配置CX1

CX1:
bfd cx1-cx2 bind peer-ip 10.1.1.2 source-ip 10.1.1.1
 discriminator local 80
 discriminator remote 100

配置CX2

CX2:
bfd cx2-cx1 bind peer-ip 10.1.1.1 source-ip 10.1.1.2
 discriminator local 100
 discriminator remote 80
  1. 配置BFD报文检测倍数、接收间隔、发送间隔

配置CX1

CX1:
bfd cx1-cx2 bind peer-ip 10.1.1.2 source-ip 10.1.1.1
 detect-multiplier 6
 min-tx-interval 55
 min-rx-interval 55

配置CX2

CX2:
bfd cx2-cx1 bind peer-ip 10.1.1.1 source-ip 10.1.1.2
 detect-multiplier 6
 min-tx-interval 55
 min-rx-interval 55
  1. 配置验证

查询静态BFD状态,以CX1的显示为例

[~CX1-bfd-session-cx1-cx2]dis bfd session all verbose 
(w): State in WTR
(*): State is invalid
--------------------------------------------------------------------------------
  (Multi Hop) State : Up                    Name : cx1-cx2
--------------------------------------------------------------------------------
  Local Discriminator    : 80               Remote Discriminator   : 100 
  Session Detect Mode    : Asynchronous Mode Without Echo Function
  BFD Bind Type          : Peer IP Address  
  Bind Session Type      : Static  
  Bind Peer IP Address   : 10.1.1.2         
  Bind Interface         : -                                                 
  Track Interface        : - 
  Bind Source IP Address : 10.1.1.1   
  FSM Board Id           : 1                TOS-EXP                : 7
  Min Tx Interval (ms)   : 55               Min Rx Interval (ms)   : 55 
  Actual Tx Interval (ms): 55               Actual Rx Interval (ms): 55 
  Local Detect Multi     : 6                Detect Interval (ms)   : 330 
  Echo Passive           : Disable          Acl Number             : - 
  Destination Port       : 4784             TTL                    : 254 
  Proc Interface Status  : Disable          Process PST            : Disable    
  WTR Interval (ms)      : -                Config PST             : Disable    
  Active Multi           : 6   
  Last Local Diagnostic  : No Diagnostic
  Bind Application       : No Application Bind
  Session TX TmrID       : -                Session Detect TmrID   : - 
  Session Init TmrID     : -                Session WTR TmrID      : - 
  Session Echo Tx TmrID  : -   
  Session Description    : - 
--------------------------------------------------------------------------------
    Total UP/DOWN Session Number : 1/0
[~CX1-bfd-session

 

以上是关于玩转华为ENSP模拟器系列 | 调整静态BFD检测时间的主要内容,如果未能解决你的问题,请参考以下文章

玩转华为ENSP模拟器系列 | 配置静态BFD检测三层IP链路

玩转华为ENSP模拟器系列 | 配置静态BFD检测VPWS PW示例

玩转华为ENSP模拟器系列 | 配置动态BFD检测LDP LSP示例

玩转华为ENSP模拟器系列 | 配置静态BFD for IS-IS特性示例

玩转华为ENSP模拟器系列 | 配置BFD会话进入AdminDown状态

玩转华为ENSP模拟器系列 | 配置BFD for OSPF特性示例