community.network.ce_bfd_view 模块 – 管理华为 CloudEngine 设备上的 BFD 会话视图配置。

注意

此模块是 community.network 集合(版本 5.1.0)的一部分。

如果您正在使用 ansible 包,则可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.network

要在 playbook 中使用它,请指定: community.network.ce_bfd_view

注意

community.network 集合已被弃用,并将从 Ansible 12 中删除。有关更多信息,请参阅讨论主题

已弃用

在以下版本中删除:

版本 6.0.0

原因:

此集合及其中的所有内容都未维护且已弃用。

替代方案:

未知。

概要

  • 管理华为 CloudEngine 设备上的 BFD 会话视图配置。

别名:network.cloudengine.ce_bfd_view

参数

参数

注释

admin_down

布尔值

使 BFD 会话进入 AdminDown 状态。默认情况下,BFD 会话已启用。默认值为 bool 类型。

选择

  • false ← (默认)

  • true

description

字符串

指定 BFD 会话的描述。该值是一个字符串,包含 1 到 51 个区分大小写的字符,可以包含空格。

detect_multi

字符串

指定 BFD 会话的本地检测乘数。该值是一个介于 3 到 50 之间的整数。

local_discr

字符串

指定 BFD 会话的本地鉴别器。该值是一个介于 1 到 16384 之间的整数。

min_rx_interval

字符串

指定发送 BFD 数据包的最小间隔。该值是一个介于 50 到 1000 之间的整数,以毫秒为单位。

min_tx_interval

字符串

指定接收 BFD 数据包的最小间隔。该值是一个介于 50 到 1000 之间的整数,以毫秒为单位。

remote_discr

字符串

指定 BFD 会话的远程鉴别器。该值是一个介于 1 到 4294967295 之间的整数。

session_name

字符串 / 必需

指定 BFD 会话的名称。该值是一个字符串,包含 1 到 15 个区分大小写的字符,不包含空格。

state

字符串

确定设备上是否应存在配置。

选择

  • "present" ← (默认)

  • "absent"

tos_exp

字符串

指定 BFD 控制数据包的优先级。该值是一个介于 0 到 7 之间的整数。默认值为 7,这是最高优先级。

wtr_interval

字符串

指定 BFD 会话的 WTR 时间。该值是一个介于 1 到 60 之间的整数,以分钟为单位。默认值为 0。

备注

注意

  • 此模块要求在被管理的远程设备上启用 netconf 系统服务。

  • 推荐的连接是 netconf

  • 此模块也适用于用于旧版 playbook 的 local 连接。

示例

- name: Bfd view module test
  hosts: cloudengine
  connection: local
  gather_facts: false

  tasks:
  - name: Set the local discriminator of a BFD session to 80 and the remote discriminator to 800
    community.network.ce_bfd_view:
      session_name: atob
      local_discr: 80
      remote_discr: 800
      state: present

  - name: Set the minimum interval for receiving BFD packets to 500 ms
    community.network.ce_bfd_view:
      session_name: atob
      min_rx_interval: 500
      state: present

返回值

通用返回值记录在 此处,以下是此模块独有的字段

描述

changed

布尔值

检查设备上是否进行了更改

返回: 始终

示例: true

end_state

字典

模块执行后配置的键/值对

返回: 始终

示例: {"session": {"adminDown": "false", "createType": "SESS_STATIC", "description": null, "detectMulti": "3", "localDiscr": "80", "minRxInt": null, "minTxInt": null, "remoteDiscr": "800", "sessName": "atob", "tosExp": null, "wtrTimerInt": null}}

现有配置

字典

现有配置的键/值对

返回: 始终

示例: {"session": {"adminDown": "false", "createType": "SESS_STATIC", "description": null, "detectMulti": "3", "localDiscr": null, "minRxInt": null, "minTxInt": null, "remoteDiscr": null, "sessName": "atob", "tosExp": null, "wtrTimerInt": null}}

提议配置

字典

传递到模块的参数的键/值对

返回: 始终

示例: {"admin_down": false, "description": null, "detect_multi": null, "local_discr": 80, "min_rx_interval": null, "min_tx_interval": null, "remote_discr": 800, "session_name": "atob", "state": "present", "tos_exp": null, "wtr_interval": null}

更新

列表 / 元素=字符串

发送到设备的命令

返回: 始终

示例: ["bfd atob", "discriminator local 80", "discriminator remote 800"]

状态

  • 此模块将在 6.0.0 版本中移除。[已弃用]

  • 有关更多信息,请参阅已弃用

作者

  • QijunPan (@QijunPan)