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

注意

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

已弃用

在以下版本中移除:

6.0.0 版

原因:

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

替代方案:

未知。

概要

  • 管理华为 CloudEngine 设备上的 VXLAN 虚拟接入点。

别名:network.cloudengine.ce_vxlan_vap

参数

参数

注释

bind_vlan_id

字符串

指定绑定到 BD(桥接域)的 VLAN。值是一个整数,范围为 1 到 4094。

bridge_domain_id

字符串

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

ce_vid

字符串

当 *encapsulation* 为 'dot1q' 时,指定外层 VLAN 标签中的 VLAN ID。当 *encapsulation* 为 'qinq' 时,指定双标记数据包要由第 2 层子接口接收的外层 VLAN ID。值是一个整数,范围为 1 到 4094。

encapsulation

字符串

指定允许通过第 2 层子接口的数据包的封装类型。

选项

  • "dot1q"

  • "default"

  • "untag"

  • "qinq"

  • "none"

l2_sub_interface

字符串

指定子接口全名,例如“10GE1/0/41.1”。值是一个 1 到 63 个字符(大小写不敏感)的字符串,支持空格。

pe_vid

字符串

当 *encapsulation* 为 'qinq' 时,指定双标记数据包要由第 2 层子接口接收的内层 VLAN ID。值是一个整数,范围为 1 到 4094。

state

字符串

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

选项

  • "present" ← (默认)

  • "absent"

备注

注意

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

  • 推荐连接方式为 netconf

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

示例

- name: Vxlan vap module test
  hosts: ce128
  connection: local
  gather_facts: false

  tasks:

  - name: Create a mapping between a VLAN and a BD
    community.network.ce_vxlan_vap:
      bridge_domain_id: 100
      bind_vlan_id: 99

  - name: Bind a Layer 2 sub-interface to a BD
    community.network.ce_vxlan_vap:
      bridge_domain_id: 100
      l2_sub_interface: 10GE2/0/20.1

  - name: Configure an encapsulation type on a Layer 2 sub-interface
    community.network.ce_vxlan_vap:
      l2_sub_interface: 10GE2/0/20.1
      encapsulation: dot1q

返回值

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

描述

changed

布尔值

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

返回:始终

示例: true

end_state

字典

模块执行后配置的键值对

返回:详细模式

示例: {"bind_intf_list": ["110GE2/0/20.1", "10GE2/0/20.2"], "bind_vlan_list": ["99"], "bridge_domain_id": "100"}

existing

字典

现有配置的键值对

返回:详细模式

示例: {"bind_intf_list": ["10GE2/0/20.1", "10GE2/0/20.2"], "bind_vlan_list": [], "bridge_domain_id": "100"}

建议值

字典

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

返回:详细模式

示例: {"bind_vlan_id": "99", "bridge_domain_id": "100", "state=\"present\"": null}

更新

列表 / 元素=字符串

发送到设备的命令

返回:始终

示例: ["bridge-domain 100", "l2 binding vlan 99"]

状态

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

  • 更多信息请参见 已弃用

作者

  • 潘启军 (@QijunPan)