community.network.ce_eth_trunk 模块 – 管理华为CloudEngine交换机上的Eth-Trunk接口。

注意

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

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

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

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

注意

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

已弃用

在以下版本中移除:

6.0.0版本

原因:

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

替代方案:

未知。

概要

  • 管理华为CloudEngine交换机上Eth-Trunk的特定配置参数。

别名:network.cloudengine.ce_eth_trunk

参数

参数

注释

force

布尔值

如果为true,则强制Eth-Trunk成员与members参数中声明的内容匹配。这可用于移除成员。

选项

  • false ← (默认)

  • true

hash_type

字符串

用于在Eth-Trunk成员接口之间进行负载均衡的哈希算法。

选项

  • "src-dst-ip"

  • "src-dst-mac"

  • "enhanced"

  • "dst-ip"

  • "dst-mac"

  • "src-ip"

  • "src-mac"

members

字符串

将在给定Eth-Trunk中管理的接口列表。接口名称必须是全名。

字符串

指定处于Up状态的Eth-Trunk成员链路的最小数量。该值是一个整数,范围从1到可以添加到Eth-Trunk接口的最大接口数。

mode

字符串

指定Eth-Trunk接口的工作模式。

选项

  • "manual"

  • "lacp-dynamic"

  • "lacp-static"

state

字符串

管理资源的状态。

选项

  • "present" ← (默认)

  • "absent"

trunk_id

字符串 / 必需

Eth-Trunk接口编号。该值是一个整数。值范围取决于分配的转发eth-trunk模式命令。当指定256时,值范围为0到255。当指定512时,值范围为0到511。当指定1024时,值范围为0到1023。

备注

注意

  • state=absent 如果Eth-Trunk配置和接口已存在,则将其移除。如果没有显式传递要移除的成员,则移除所有现有成员(如有),并移除Eth-Trunk。

  • 成员必须是一个列表。

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

  • 推荐连接方式为 netconf

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

示例

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

  tasks:
  - name: Ensure Eth-Trunk100 is created, add two members, and set to mode lacp-static
    community.network.ce_eth_trunk:
      trunk_id: 100
      members: ['10GE1/0/24','10GE1/0/25']
      mode: 'lacp-static'
      state: present
      provider: '{{ cli }}'

返回值

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

描述

changed

布尔值

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

返回:始终

示例: true

end_state

字典

模块执行后Eth-Trunk信息的键值对

返回:始终

示例: {"hash_type": "mac", "members_detail": [{"memberIfName": "10GE1/0/24", "memberIfState": "Down"}, {"memberIfName": "10GE1/0/25", "memberIfState": "Down"}], "min_links": "1", "mode": "lacp-static", "trunk_id": "100"}

现有

字典

现有Eth-Trunk的键值对

返回:始终

示例: {"hash_type": "mac", "members_detail": [{"memberIfName": "10GE1/0/25", "memberIfState": "Down"}], "min_links": "1", "mode": "manual", "trunk_id": "100"}

建议

字典

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

返回:始终

示例: {"members": ["10GE1/0/24", "10GE1/0/25"], "mode": "lacp-static", "trunk_id": "100"}

更新

列表 / 元素=字符串

发送到设备的命令

返回:始终

示例: ["interface Eth-Trunk 100", "mode lacp-static", "interface 10GE1/0/25", "eth-trunk 100"]

状态

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

  • 更多信息请参见 已弃用

作者

  • 潘启均 (@QijunPan)