.. _arista.eos.eos_lldp_module: ******************* arista.eos.eos_lldp ******************* **Manage LLDP configuration on Arista EOS network devices** Version added: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- - This module provides declarative management of LLDP service on Arista EOS network devices. Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
state
string
    Choices:
  • present ←
  • absent
  • enabled
  • disabled
State of the LLDP configuration. If value is present lldp will be enabled else if it is absent it will be disabled.

Notes ----- .. note:: - Tested against Arista EOS 4.24.6F Examples -------- .. code-block:: yaml - name: Enable LLDP service arista.eos.eos_lldp: state: present - name: Disable LLDP service arista.eos.eos_lldp: state: absent Return Values ------------- Common return values are documented `here `_, the following are the fields unique to this module: .. raw:: html
Key Returned Description
commands
list
always, except for the platforms that use Netconf transport to manage the device.
The list of configuration mode commands to send to the device

Sample:
['lldp run']


Status ------ Authors ~~~~~~~ - Ganesh Nalawade (@ganeshrn)