arista.eos.eos_lldp 模块 – 管理 Arista EOS 网络设备上的 LLDP 配置

注意

此模块是 arista.eos 集合(版本 10.0.1)的一部分。

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

要安装它,请使用:ansible-galaxy collection install arista.eos

要在 playbook 中使用它,请指定:arista.eos.eos_lldp

arista.eos 1.0.0 中的新增功能

概要

  • 此模块提供对 Arista EOS 网络设备上 LLDP 服务的声明式管理。

参数

参数

注释

状态

字符串

LLDP 配置的状态。 如果值为 present,则将启用 lldp,否则,如果为 absent,则将禁用 lldp。

选择

  • "present" ← (默认)

  • "absent"

  • "enabled"

  • "disabled"

说明

注意

  • 已针对 Arista EOS 4.24.6F 进行测试

示例

- name: Enable LLDP service
  arista.eos.eos_lldp:
    state: present

- name: Disable LLDP service
  arista.eos.eos_lldp:
    state: absent

返回值

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

描述

命令

列表 / 元素=字符串

要发送到设备的配置模式命令列表

返回: 始终,除非使用 Netconf 传输来管理设备的平台。

示例: ["lldp run"]

作者

  • Ganesh Nalawade (@ganeshrn)