community.network.ce_vrf_interface 模块 – 管理华为 CloudEngine 交换机上的接口特定 VPN 配置。

注意

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

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

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

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

注意

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

已弃用

移除于:

版本 6.0.0

原因:

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

替代方案:

未知。

概要

  • 管理华为 CloudEngine 交换机的接口特定 VPN 配置。

别名:network.cloudengine.ce_vrf_interface

参数

参数

注释

state

字符串

管理资源的状态。

选项

  • "present" ←(默认)

  • "absent"

vpn_interface

字符串 / 必需

可以绑定 VPN 实例的接口,例如 40GE1/0/22、Vlanif10。必须是完全限定的接口名称。接口类型,例如 10GE、40GE、100GE、LoopBack、MEth、Tunnel、Vlanif…。

vrf

字符串 / 必需

VPN 实例,vrf 名称的长度为 1 ~ 31,例如“test”,但不能是 _public_

备注

注意

  • 确保已创建 VPN 实例,并且已为 VPN 实例启用 IPv4 地址族。

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

  • 推荐的连接是 netconf

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

示例

- name: VRF interface test
  hosts: cloudengine
  connection: local
  gather_facts: false

  tasks:

  - name: "Configure a VPN instance for the interface"
    community.network.ce_vrf_interface:
      vpn_interface: 40GE1/0/2
      vrf: test
      state: present

  - name: "Disable the association between a VPN instance and an interface"
    community.network.ce_vrf_interface:
      vpn_interface: 40GE1/0/2
      vrf: test
      state: absent

返回值

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

描述

changed

布尔值

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

返回:始终

示例: true

end_state

字典

接口上结束属性的 k/v 对

返回:详细模式

示例: {"vpn_interface": "40GE2/0/17", "vrf": "jss"}

existing

字典

接口上现有属性的 k/v 对

返回:详细模式

示例: {"vpn_interface": "40GE2/0/17", "vrf": null}

proposed

字典

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

返回:详细模式

示例: {"state": "present", "vpn_interface": "40GE2/0/17", "vrf": "jss"}

updates

列表 / 元素=字符串

发送到设备的命令列表

返回:始终

示例: ["ip binding vpn-instance jss"]

状态

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

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

作者

  • Zhijin Zhou (@QijunPan)