community.network.ce_vxlan_tunnel 模块 – 管理华为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_tunnel

注意

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

已弃用

在以下版本中移除:

6.0.0版本

原因:

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

替代方案:

未知。

概要

  • 此模块提供了设置VNI并映射到BD,以及在华为CloudEngine设备上配置入站复制列表的功能。

别名:network.cloudengine.ce_vxlan_tunnel

参数

参数

注释

bridge_domain_id

字符串

指定桥接域ID。值是一个整数,范围从1到16777215。

nve_mode

字符串

指定NVE接口的工作模式。

选项

  • "mode-l2"

  • "mode-l3"

nve_name

字符串

指定NVE接口的编号。取值范围为1到2。

peer_list_ip

字符串

指定远程VXLAN隧道端点(VTEP)的IP地址。值为点分十进制表示法。

protocol_type

字符串

路由协议的操作类型。

选项

  • "bgp"

  • "null"

source_ip

字符串

指定源VTEP的IP地址。值为点分十进制表示法。

state

字符串

管理资源的状态。

选项

  • "present" ← (默认)

  • "absent"

vni_id

字符串

指定VXLAN网络标识符(VNI)ID。值是一个整数,范围从1到16000000。

备注

注意

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

  • 推荐连接方式为 netconf

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

示例

- name: Vxlan tunnel 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: Make sure nve_name is exist, ensure vni_id and protocol_type is configured on Nve1 interface.
    community.network.ce_vxlan_tunnel:
      nve_name: Nve1
      vni_id: 100
      protocol_type: bgp
      state: present
      provider: "{{ cli }}"

返回值

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

描述

changed

布尔值

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

返回:始终

示例: true

end_state

字典

模块执行后配置的键值对

返回:始终

示例: {"nve_interface_name\"": "Nve1", "nve_mode\"": "mode-l3", "source_ip": "0.0.0.0"}

existing

字典

现有回滚的键值对

返回:始终

示例: {"nve_interface_name\"": "Nve1", "nve_mode\"": "mode-l3", "source_ip": "0.0.0.0"}

proposed

字典

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

返回:始终

示例: {"nve_interface_name\"": "Nve1", "nve_mode\"": "mode-l2", "source_ip": "0.0.0.0"}

updates

列表 / 元素=字符串

发送到设备的命令

返回:始终

示例: ["interface Nve1", "mode l3"]

状态

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

  • 更多信息请参见 已弃用

作者

  • 李燕峰 (@QijunPan)