cisco.nxos.nxos_lldp_interfaces 模块 – LLDP 接口资源模块
注意
此模块是 cisco.nxos 集合(版本 9.2.1)的一部分。
如果您使用的是 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install cisco.nxos
。
要在剧本中使用它,请指定:cisco.nxos.nxos_lldp_interfaces
。
cisco.nxos 1.0.0 中的新功能
概要
此模块管理 NX-OS 平台上链路层发现协议 (LLDP) 的接口配置。
参数
参数 |
注释 |
---|---|
接口的链路层发现配置列表。 |
|
接口的名称 |
|
用于启用或禁用该接口上 LLDP 数据包的接收。默认情况下,全局启用 LLDP 后,此项启用。 选项
|
|
用于配置接口上的 TLV 参数 |
|
用于提及接口的 IPv4 或 IPv6 管理地址 |
|
用于提及接口的 VLAN |
|
用于启用或禁用该接口上 LLDP 数据包的传输。默认情况下,全局启用 LLDP 后,此项启用。 选项
|
|
此选项仅在状态为 parsed 时使用。 此选项的值应是通过执行命令 show running-config | section ^interface 从 NX-OS 设备收到的输出。 状态 parsed 从 |
|
配置应保留的状态 选项
|
注释
注意
在 VIRL 上针对 NXOS 7.3.(0)D1(1) 进行了测试
不支持 Cisco MDS
在使用此模块之前,需要启用 LLDP 功能
示例
# Using merged
# Before state:
# -------------
#
- name: Merge provided configuration with device configuration
cisco.nxos.nxos_lldp_interfaces:
config:
- name: Ethernet1/4
receive: false
transmit: true
tlv_set:
management_address: 192.168.122.64
vlan: 12
state: merged
# After state:
# -------------
#
# interface Ethernet1/4
# no lldp receive
# lldp tlv-set management-address 192.168.122.64
# lldp tlv-set vlan 12
# Using replaced
# Before state:
# ------------
#
# interface Ethernet1/4
# no lldp receive
# lldp tlv-set management-address 192.168.122.64
# interface Ethernet1/5
# no lldp transmit
# lldp tlv-set vlan 10
- name: Replace LLDP configuration on interfaces with given configuration
cisco.nxos.nxos_lldp_interfaces:
config:
- name: Ethernet1/4
transmit: false
tlv_set:
vlan: 2
state: replaced
# After state:
# -----------
#
# interface Ethernet1/4
# no lldp transmit
# lldp tlv_set vlan 2
# interface Ethernet1/5
# no lldp transmit
# lldp tlv-set vlan 10
# Using overridden
# Before state:
# ------------
#
# interface Ethernet1/4
# no lldp receive
# lldp tlv-set management-address 192.168.122.64
# interface Ethernet1/5
# no lldp transmit
# lldp tlv-set vlan 10
- name: Override LLDP configuration on all interfaces with given configuration
cisco.nxos.nxos_lldp_interfaces:
config:
- name: Ethernet1/7
receive: false
tlv_set:
vlan: 12
state: overridden
# After state:
# -----------
#
# interface Ethernet1/7
# no lldp receive
# lldp tlv_set vlan 12
# Using deleted
# Before state:
# ------------
#
# interface Ethernet1/4
# lldp tlv-set management vlan 24
# no lldp transmit
# interface mgmt0
# no lldp receive
- name: Delete LLDP interfaces configuration
cisco.nxos.nxos_lldp_interfaces:
state: deleted
# After state:
# ------------
#
返回值
常见返回值在此处记录此处,以下是此模块独有的字段
键 |
描述 |
---|---|
生成的配置模型调用。 返回: 当更改时 示例: |
|
模型调用之前的配置。 返回: 始终 示例: |
|
推送到远程设备的命令集。 返回: 始终 示例: |