community.network.ce_bgp 模块 – 管理华为 CloudEngine 交换机上的 BGP 配置。

注意

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

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

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

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

注意

community.network 集合已被弃用,将从 Ansible 12 中移除。请参阅 讨论主题 以获取更多信息。

已弃用

移除版本:

6.0.0 版本

原因:

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

替代方案:

未知。

概要

  • 管理华为 CloudEngine 交换机上的 BGP 配置。

别名:network.cloudengine.ce_bgp

参数

参数

注释

as_number

字符串

本地 AS 号。该值是 1 到 11 个字符的字符串。

as_path_limit

字符串

AS_Path 属性中 AS 号的最大数量。默认值为 255。

bgp_rid_auto_sel

字符串

启用为所有 VPN BGP 实例自动选择路由器 ID 的功能。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

check_first_as

字符串

检查来自 EBGP 对等方的更新消息的 AS_Path 中的第一个 AS。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

clear_interval

字符串

清除间隔。

confed_id_number

字符串

联盟 ID。该值是 1 到 11 个字符的字符串。

confed_nonstanded

字符串

配置设备以与非标准联盟中的设备兼容。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

confed_peer_as_num

字符串

联盟 AS 号,采用两字节或四字节格式。该值是 1 到 11 个字符的字符串。

conn_retry_time

字符串

ConnectRetry 间隔。该值是一个整数,以秒为单位。默认值为 32 秒。

default_af_type

字符串

创建的地址族的类型,可以是 IPv4 单播或 IPv6 单播。默认类型为 IPv4 单播。

选项

  • "ipv4uni"

  • "ipv6uni"

ebgp_if_sensitive

字符串

如果值为 true,则在启用快速 EBGP 接口感知功能后,当接口关闭时,会立即删除该接口上的 EBGP 会话。如果值为 false,则在启用快速 EBGP 接口感知功能后,当接口关闭时,不会立即删除该接口上的 EBGP 会话。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

gr_peer_reset

字符串

通过 GR 重置对等方连接。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

graceful_restart

字符串

在指定的地址族、对等方地址或对等方组中启用 BGP 扬声器的 GR。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

hold_interval

字符串

保持间隔。

hold_time

字符串

保持时间,以秒为单位。保持时间的值可以为 0 或范围为 3 到 65535。

is_shutdown

字符串

中断 BGP 所有邻居。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

keep_all_routes

字符串

如果值为 true,则系统会在 BGP 连接建立后存储从所有对等方(组)接收到的所有路由更新消息。如果值为 false,则系统仅存储从对等方接收并传递配置的导入策略的 BGP 更新消息。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

keepalive_time

字符串

如果计时器的值发生更改,则路由器之间的 BGP 对等关系断开。该值是 0 到 21845 之间的整数。默认值为 60。

memory_limit

字符串

支持 BGP RIB 内存保护。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

min_hold_time

字符串

最小保持时间,以秒为单位。保持时间的值可以为 0 或范围为 20 到 65535。

router_id

字符串

IPv4 地址格式的路由器 ID。

state

字符串

指定资源的所需状态。

选项

  • "present" ← (默认)

  • "absent"

suppress_interval

字符串

抑制间隔。

time_wait_for_rib

字符串

等待 End-Of-RIB 标志的时间段。该值是 3 到 3000 之间的整数。默认值为 600。

vrf_name

字符串

BGP 实例的名称。该名称是区分大小写的字符字符串。

vrf_rid_auto_sel

字符串

如果值为 true,则启用 VPN BGP 实例以自动选择路由器 ID。如果值为 false,则禁用 VPN BGP 实例自动选择路由器 ID。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

注意

注意

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

  • 推荐的连接方式是 netconf

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

示例

- name: CloudEngine BGP test
  hosts: cloudengine
  connection: local
  gather_facts: false
  vars:
    cli:
      host: "{{ inventory_hostname }}"
      port: "{{ ansible_ssh_port }}"
      username: "{{ username }}"
      password: "{{ password }}"
      transport: cli

  tasks:

  - name: "Enable BGP"
    community.network.ce_bgp:
      state: present
      as_number: 100
      confed_id_number: 250
      provider: "{{ cli }}"

  - name: "Disable BGP"
    community.network.ce_bgp:
      state: absent
      as_number: 100
      confed_id_number: 250
      provider: "{{ cli }}"

  - name: "Create confederation peer AS num"
    community.network.ce_bgp:
      state: present
      confed_peer_as_num: 260
      provider: "{{ cli }}"

返回值

常用的返回值在这里有文档记录,以下是此模块特有的字段

描述

changed

布尔值

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

返回: 始终

示例: true

end_state

字典

模块执行后 aaa 参数的键/值对

返回: 始终

示例: {"bgp_enable": [["100"], ["true"]]}

existing

字典

现有 aaa 服务器的键/值对

返回: 始终

示例: {"bgp_enable": [["100"], ["true"]]}

proposed

字典

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

返回: 始终

示例: {"as_number": "100", "state\"": "present"}

updates

列表 / 元素=字符串

发送到设备的命令

返回: 始终

示例: ["bgp 100"]

状态

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

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

作者

  • wangdezhuang (@QijunPan)