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
参数
参数 |
注释 |
---|---|
如果为true,则强制Eth-Trunk成员与members参数中声明的内容匹配。这可用于移除成员。 选项
|
|
用于在Eth-Trunk成员接口之间进行负载均衡的哈希算法。 选项
|
|
将在给定Eth-Trunk中管理的接口列表。接口名称必须是全名。 |
|
指定处于Up状态的Eth-Trunk成员链路的最小数量。该值是一个整数,范围从1到可以添加到Eth-Trunk接口的最大接口数。 |
|
指定Eth-Trunk接口的工作模式。 选项
|
|
管理资源的状态。 选项
|
|
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 }}'
返回值
常见的返回值已在 此处 记录,以下是此模块特有的字段
键 |
描述 |
---|---|
检查设备上是否进行了更改 返回:始终 示例: |
|
模块执行后Eth-Trunk信息的键值对 返回:始终 示例: |
|
现有Eth-Trunk的键值对 返回:始终 示例: |
|
传递到模块的参数的键值对 返回:始终 示例: |
|
发送到设备的命令 返回:始终 示例: |
状态
此模块将在6.0.0版本中移除。[已弃用]
更多信息请参见 已弃用。