An engineer needs to configure LLDP to send the port description time length value (TLV)
Which command sequence must be implemented?
Click on the arrows to vote for the correct answer
A. B. C. D.D.
The correct command sequence to configure LLDP to send the port description time length value (TLV) is A: switch(config-if)#lldp port-description
.
LLDP (Link Layer Discovery Protocol) is a vendor-neutral protocol used to discover information about directly connected devices. TLVs (Type-Length-Value) are used by LLDP to carry information about the device, interface, and port. The port description TLV is used to carry a textual description of the port.
To configure LLDP to send the port description TLV, you need to enter the LLDP port description command in the interface configuration mode. The correct syntax for the command is lldp port-description
.
Therefore, the correct command sequence is as follows:
switch(config)#
switch(config)# interface interface-id
switch(config-if)# lldp enable
switch(config-if)# lldp port-description
Note that options B, C, and D are not valid because they do not include the config-if
command, which is required to configure an interface-specific parameter such as the port description TLV.