community.network.ce_vxlan_global 模块 – 管理华为 CloudEngine 设备上的 VXLAN 和桥接域的全局属性。

注意

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

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

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

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

注意

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

已弃用

在版本中移除:

6.0.0 版

原因:

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

替代方案:

未知。

概要

  • 管理华为 CloudEngine 设备上的 VXLAN 和桥接域的全局属性。

别名:network.cloudengine.ce_vxlan_global

参数

参数

注释

bridge_domain_id

字符串

指定桥接域 ID。该值是一个从 1 到 16777215 的整数。

nvo3_acl_extend

字符串

启用或禁用 VXLAN ACL 扩展功能。

选项

  • "enable"

  • "disable"

nvo3_ecmp_hash

字符串

通过优化模式下的 ECMP 对 VXLAN 数据包进行负载均衡。

选项

  • "enable"

  • "disable"

nvo3_eth_trunk_hash

字符串

从优化模式下对 VXLAN 数据包进行负载均衡的 Eth-Trunk。

选项

  • "enable"

  • "disable"

nvo3_gw_enhanced

字符串

配置在非环回模式下工作的第 3 层 VXLAN 网关。

选项

  • "l2"

  • "l3"

nvo3_prevent_loops

字符串

在非增强模式下防止 VXLAN 流量循环。当设备在非增强模式下工作时,VXLAN 流量的板间转发可能会导致循环。

选项

  • "enable"

  • "disable"

nvo3_service_extend

字符串

启用或禁用 VXLAN 服务扩展功能。

选项

  • "enable"

  • "disable"

state

字符串

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

选项

  • "present" ←(默认)

  • "absent"

tunnel_mode_vxlan

字符串

配置 VXLAN 功能时,将隧道模式设置为 VXLAN。

选项

  • "enable"

  • "disable"

注释

注意

  • 建议的连接是 network_cli

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

示例

- name: Vxlan global 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: Create bridge domain and set tunnel mode to VXLAN
    community.network.ce_vxlan_global:
      bridge_domain_id: 100
      nvo3_acl_extend: enable
      provider: "{{ cli }}"

返回值

此处记录了常见的返回值 here,以下是此模块特有的字段

描述

changed

布尔值

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

返回:始终

示例: true

end_state

字典

模块执行后配置的 k/v 对

返回:详细模式

示例: {"bridge_domain_id": {"100": null, "80": null, "90": null}, "nvo3_acl_extend": "enable"}

existing

字典

现有配置的 k/v 对

返回:详细模式

示例: {"bridge_domain": {"80": null, "90": null}, "nvo3_acl_extend": "disable"}

proposed

字典

传递到模块的参数的 k/v 对

返回:详细模式

示例: {"bridge_domain_id": "100", "nvo3_acl_extend": "enable", "state=\"present\"": null}

updates

列表 / 元素=字符串

发送到设备的命令

返回:始终

示例: ["bridge-domain 100", "ip tunnel mode vxlan"]

状态

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

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

作者

  • QijunPan (@QijunPan)