Skip to content

Latest commit

 

History

History
124 lines (91 loc) · 3.39 KB

arista.eos.eos_lldp_module.rst

File metadata and controls

124 lines (91 loc) · 3.39 KB

arista.eos.eos_lldp

Manage LLDP configuration on Arista EOS network devices

Version added: 1.0.0

  • This module provides declarative management of LLDP service on Arista EOS network devices.
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.

Note

  • Tested against 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

Common return values are documented here, the following are the fields unique to this module:

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']


Authors

  • Ganesh Nalawade (@ganeshrn)