arista.eos.eos_lacp 模块 – LACP 资源模块
注意
此模块是 arista.eos 集合(版本 10.0.1)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install arista.eos
。
要在 playbook 中使用它,请指定:arista.eos.eos_lacp
。
arista.eos 1.0.0 中的新增功能
概要
此模块管理 Arista EOS 设备上的全局链路聚合控制协议 (LACP)。
参数
参数 |
注释 |
---|---|
LACP 全局选项。 |
|
LACP 系统选项。 |
|
LACP 协商中使用的系统优先级。 值越低优先级越高。 请参阅供应商文档以获取有效值。 |
|
此选项仅在状态为 *parsed* 时使用。 此选项的值应是通过执行命令 **show running-config | section ^lacp** 从 EOS 设备收到的输出。 状态 *parsed* 从 |
|
模块完成后配置的状态。 选择
|
注释
注意
针对 Arista EOS 4.24.6F 进行了测试
此模块与连接
network_cli
一起使用。请参阅 EOS 平台选项。
示例
# Using merged
# Before state:
# -------------
# veos# show running-config | include lacp
# lacp system-priority 10
- name: Merge provided global LACP attributes with device attributes
arista.eos.eos_lacp:
config:
system:
priority: 20
state: merged
# After state:
# ------------
# veos# show running-config | include lacp
# lacp system-priority 20
#
# Using replaced
# Before state:
# -------------
# veos# show running-config | include lacp
# lacp system-priority 10
- name: Replace device global LACP attributes with provided attributes
arista.eos.eos_lacp:
config:
system:
priority: 20
state: replaced
# After state:
# ------------
# veos# show running-config | include lacp
# lacp system-priority 20
#
# Using deleted
# Before state:
# -------------
# veos# show running-config | include lacp
# lacp system-priority 10
- name: Delete global LACP attributes
arista.eos.eos_lacp:
state: deleted
# After state:
# ------------
# veos# show running-config | include lacp
#
# Using rendered:
- name: Use Rendered to convert the structured data to native config
arista.eos.eos_lacp:
config:
system:
priority: 20
state: rendered
# Output:
# ------------
# rendered:
# - "lacp system-priority 20"
#
# Using parsed:
# parsed.cfg
# lacp system-priority 20
- name: Use parsed to convert native configs to structured data
arista.eos.eos_lacp:
running_config: "{{ lookup('file', 'parsed.cfg') }}"
state: parsed
# Output:
# parsed:
# system:
# priority: 20
# Using gathered:
# nathive config:
# -------------
# lacp system-priority 10
- name: Gather lacp facts from the device
arista.eos.eos_lacp:
state: gathered
# Output:
# gathered:
# system:
# priority: 10
#
返回值
常见的返回值记录在 此处,以下是此模块独有的字段
键 |
描述 |
---|---|
模块完成后,作为结构化数据的配置。 返回: 当更改时 示例: |
|
在模块调用之前,作为结构化数据的配置。 返回: 始终 示例: |
|
推送到远程设备的命令集。 返回: 始终 示例: |