dellemc.enterprise_sonic.sonic_lldp_global module – Manage Global LLDP configurations on SONiC
Note
This module is part of the dellemc.enterprise_sonic collection (version 2.2.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install dellemc.enterprise_sonic
.
To use it in a playbook, specify: dellemc.enterprise_sonic.sonic_lldp_global
.
New in dellemc.enterprise_sonic 2.1.0
Synopsis
This module provides configuration management of global LLDP parameters for use on LLDP enabled Layer 2 interfaces of devices running SONiC.
It is intended for use in conjunction with LLDP Layer 2 interface configuration applied on participating interfaces.
Parameters
Parameter |
Comments |
---|---|
The set of link layer discovery protocol global attribute configurations |
|
This argument is a boolean value to enable or disable LLDP. Choices:
|
|
Frequency at which LLDP advertisements are sent (in seconds). The range is from 5 to 254 sec |
|
By default both transmit and receive of LLDP frames is enabled. This command can be used to configure either in receive only or transmit only mode. Choices:
|
|
Multiplier value is used to determine the timeout interval (i.e. hello-time x multiplier value) The range is from 1 to 10 |
|
Description of this system to be sent in LLDP advertisements. When configured, this value is used in the advertisements instead of the default system description. |
|
Specifying a descriptive system name using this command, user may find it easier to distinguish the device with LLDP. By default, the host name is used. |
|
By default, management address and system capabilities TLV are advertised in LLDP frames. This configuration option can be used to selectively suppress sending of these TLVs to the Peer. |
|
Enable or disable management address TLV. Choices:
|
|
Enable or disable system capabilities TLV. Choices:
|
|
The state specifies the type of configuration update to be performed on the device. If the state is “merged”, merge specified attributes with existing configured attributes. For “deleted”, delete the specified attributes from existing configuration. Choices:
|
Examples
# Using deleted
#
# Before State:
# -------------
#
# sonic# show running-configuration
# !
# lldp receive
# lldp timer 200
# lldp multiplier 1
# lldp system-name 8999_System
# lldp system-description sonic_system
# !
- name: Delete LLDP configurations
dellemc.enterprise_sonic.sonic_lldp_global:
config:
hello_time: 200
system_description : sonic_system
mode: receive
multiplier: 1
state: deleted
# After State:
# ------------
# sonic# show running-configuration | grep lldp
# !
# lldp system-name 8999_System
# !
# sonic#
# Using deleted
#
# Before State:
# -------------
#
# sonic# show running-configuration | grep lldp
# sonic#
- name: Delete default LLDP configurations
dellemc.enterprise_sonic.sonic_lldp_global:
config:
tlv_select:
system_capabilities: true
state: deleted
# After State:
# ------------
# sonic# show running-configuration
# !
# no lldp tlv-select system-capabilities
# !
# Using deleted
#
# Before State:
# -------------
#
# sonic# show running-configuration | grep lldp
# !
# lldp receive
# lldp timer 200
# lldp multiplier 1
# lldp system-name 8999_System
# lldp system-description sonic_system
# !
- name: Delete all LLDP configuration
dellemc.enterprise_sonic.sonic_lldp_global:
config:
state: deleted
# After State: (No LLDP global configuration present.)
# ------------
# sonic# show running-configuration | grep lldp
# sonic#
# Using Merged
#
# Before State:
# -------------
#
# sonic# show running-configuration | grep lldp
# sonic#
- name: Modify LLDP configurations
dellemc.enterprise_sonic.sonic_lldp_global:
config:
enable: false
multiplier: 9
system_name : CR_sonic
hello_time: 18
mode: receive
system_description: Sonic_System
tlv_select:
management_address: true
system_capabilities: false
state: merged
# After State:
# ------------
# sonic# show running-configuration | grep lldp
# !
# no lldp enable
# no lldp tlv-select system_capabilities
# lldp receive
# lldp timer 18
# lldp multiplier 9
# lldp system-name CR_sonic
# lldp system-description Sonic_System
# !
# Using Merged
#
# Before State:
# -------------
#
# sonic# show running-configuration | grep lldp
# !
# lldp receive
# lldp timer 200
# lldp multiplier 1
# lldp system-name 8999_System
# lldp system-description sonic_system
# !
- name: Modify LLDP configurations
dellemc.enterprise_sonic.sonic_lldp_global:
config:
multiplier: 9
system_name : CR_sonic
state: merged
# After State:
# ------------
# sonic# show running-configuration | grep lldp
# !
# lldp receive
# lldp timer 200
# lldp multiplier 9
# lldp system-name CR_sonic
# lldp system-description sonic_system
# !
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
The resulting configuration model invocation. Returned: when changed Sample: |
|
The configuration prior to the model invocation. Returned: always Sample: |
|
The set of commands pushed to the remote device. Returned: always Sample: |