cisco.nxos.nxos_lacp 模块 – LACP 资源模块
注意
此模块是 cisco.nxos 集合(版本 9.2.1)的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install cisco.nxos
。
要在 playbook 中使用它,请指定: cisco.nxos.nxos_lacp
。
cisco.nxos 1.0.0 中的新增功能
概要
此模块管理 NX-OS 设备上的全局链路聚合控制协议 (LACP)。
参数
参数 |
注释 |
---|---|
LACP 全局选项。 |
|
LACP 系统选项 |
|
用于 LACP 协议交换的 MAC 地址 |
|
MAC 地址(格式:xxxx.xxxx.xxxx)。 |
|
交换机的角色。 选择
|
|
LACP 协商中使用的系统优先级。 |
|
此选项仅与状态parsed 一起使用。 此选项的值应是通过执行命令 **show running-config | include lacp** 从 NX-OS 设备收到的输出。 状态 *parsed* 从 |
|
模块完成后配置的状态。 对于此模块,状态 选择
|
说明
注意
在 VIRL 上针对 NXOS 7.3.(0)D1(1) 进行了测试。
不支持 Cisco MDS
此模块应启用 lacp 功能。
示例
# Using merged
# Before state:
# -------------
#
- name: Merge provided configuration with device configuration.
cisco.nxos.nxos_lacp:
config:
system:
priority: 10
mac:
address: 00c1.4c00.bd15
state: merged
# After state:
# ------------
#
# lacp system-priority 10
# lacp system-mac 00c1.4c00.bd15
# Using replaced
# Before state:
# -------------
#
# lacp system-priority 10
- name: Replace device global lacp configuration with the given configuration.
cisco.nxos.nxos_lacp:
config:
system:
mac:
address: 00c1.4c00.bd15
state: replaced
# After state:
# ------------
#
# lacp system-mac 00c1.4c00.bd15
# Using deleted
# Before state:
# -------------
#
# lacp system-priority 10
- name: Delete global LACP configurations.
cisco.nxos.nxos_lacp:
state: deleted
# After state:
# ------------
#
# Using rendered
- name: Render platform specific configuration lines (without connecting to the device)
cisco.nxos.nxos_lacp:
config:
system:
priority: 10
mac:
address: 00c1.4c00.bd15
role: secondary
state: rendered
# Task Output (redacted)
# -----------------------
# rendered:
# - "lacp system-priority 10"
# - "lacp system-mac 00c1.4c00.bd15 role secondary"
# Using parsed
# parsed.cfg
# ------------
# lacp system-priority 10
# lacp system-mac 00c1.4c00.bd15 role secondary
- name: Use parsed state to convert externally supplied config to structured format
cisco.nxos.nxos_lacp:
running_config: "{{ lookup('file', 'parsed.cfg') }}"
state: parsed
# Task output (redacted)
# -----------------------
# parsed:
# system:
# priority: 10
# mac:
# address: 00c1.4c00.bd15
# role: secondary
# Using gathered
# Existing device config state
# -------------------------------
# Nexus9000v# show running-config | include lacp
# lacp system-priority 11
# lacp system-mac 00c1.4c00.bd15 role primary
- name: Gather lacp facts from the device using nxos_lacp
cisco.nxos.nxos_lacp:
state: gathered
# Task output (redacted)
# -----------------------
# gathered:
# system:
# priority: 11
# mac:
# address: 00c1.4c00.bd15
# role: primary
返回值
常见的返回值记录在 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
模块完成后配置的结构化数据。 返回: 当发生更改时 示例: |
|
在模块调用之前配置的结构化数据。 返回: 始终 示例: |
|
推送到远程设备的命令集。 返回: 始终 示例: |