community.network.ce_vxlan_arp 模块 – 管理华为 CloudEngine 设备上 VXLAN 的 ARP 属性。

注意

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

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

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

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

注意

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

已弃用

在以下版本中移除:

6.0.0 版本

原因:

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

替代方案:

未知。

概要

  • 管理华为 CloudEngine 设备上 VXLAN 的 ARP 属性。

别名:network.cloudengine.ce_vxlan_arp

参数

参数

注释

arp_collect_host

字符串

启用 EVN BGP 或 BGP EVPN 来收集主机信息。

选项

  • "enable"

  • "disable"

arp_suppress

字符串

在 BD 中启用 ARP 广播抑制。

选项

  • "enable"

  • "disable"

bridge_domain_id

字符串

指定 BD(桥接域)ID。该值是一个介于 1 到 16777215 之间的整数。

evn_bgp

字符串

启用 EVN BGP。

选项

  • "enable"

  • "disable"

evn_peer_ip

字符串

指定 EVN BGP 对等方的 IP 地址。该值采用点分十进制表示法。

evn_reflect_client

字符串

将本地设备配置为路由反射器 (RR),将其对等方配置为客户端。

选项

  • "enable"

  • "disable"

evn_server

字符串

将本地设备配置为 EVN 网络上的路由反射器 (RR)。

选项

  • "enable"

  • "disable"

evn_source_ip

字符串

指定 EVN BGP 对等方的源地址。该值采用点分十进制表示法。

host_collect_protocol

字符串

启用 EVN BGP 或 BGP EVPN 以通告主机信息。

选项

  • "bgp"

  • "none"

state

字符串

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

选项

  • "present" ←(默认)

  • "absent"

vbdif_name

字符串

VBDIF 接口的完整名称,例如 Vbdif100。

注释

注意

  • 建议使用 network_cli 连接。

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

示例

- name: Vxlan arp module test
  hosts: ce128
  connection: local
  gather_facts: false
  vars:
    cli:
      host: "{{ inventory_hostname }}"
      port: "{{ ansible_ssh_port }}"
      username: "{{ username }}"
      password: "{{ password }}"
      transport: cli

  tasks:

  - name: Configure EVN BGP on Layer 2 and Layer 3 VXLAN gateways to establish EVN BGP peer relationships.
    community.network.ce_vxlan_arp:
      evn_bgp: enable
      evn_source_ip: 6.6.6.6
      evn_peer_ip: 7.7.7.7
      provider: "{{ cli }}"
  - name: Configure a Layer 3 VXLAN gateway as a BGP RR.
    community.network.ce_vxlan_arp:
      evn_bgp: enable
      evn_server: enable
      provider: "{{ cli }}"
  - name: Enable EVN BGP on a Layer 3 VXLAN gateway to collect host information.
    community.network.ce_vxlan_arp:
      vbdif_name: Vbdif100
      arp_collect_host: enable
      provider: "{{ cli }}"
  - name: Enable Layer 2 and Layer 3 VXLAN gateways to use EVN BGP to advertise host information.
    community.network.ce_vxlan_arp:
      host_collect_protocol: bgp
      provider: "{{ cli }}"
  - name: Enable ARP broadcast suppression on a Layer 2 VXLAN gateway.
    community.network.ce_vxlan_arp:
      bridge_domain_id: 100
      arp_suppress: enable
      provider: "{{ cli }}"

返回值

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

描述

changed

布尔值

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

返回: 始终

示例: true

end_state

字典

模块执行后配置的键值对

返回: 详细模式

示例: {"evn_bgp": "enable", "evn_peer_ip": ["7.7.7.7"], "evn_source_ip": "6.6.6.6"}

existing

字典

现有配置的键值对

返回: 详细模式

示例: {"evn_bgp": "disable", "evn_peer_ip": [], "evn_source_ip": null}

proposed

字典

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

返回: 详细模式

示例: {"evn_bgp": "enable", "evn_peer_ip": "7.7.7.7", "evn_source_ip": "6.6.6.6", "state": "present"}

updates

列表 / 元素=字符串

发送到设备的命令

返回: 始终

示例: ["evn bgp", "source-address 6.6.6.6", "peer 7.7.7.7"]

状态

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

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

作者

  • QijunPan (@QijunPan)