Question 104 of 239 from exam 200-301: Implementing and Administering Cisco Solutions

Question 104 of 239 from exam 200-301: Implementing and Administering Cisco Solutions

Question

An engineer needs to configure LLDP to send the port description type length value (TLV). Which command sequence must be implemented?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

D

The correct answer is A. switch(config-if)#lldp port-description

LLDP (Link Layer Discovery Protocol) is a vendor-neutral protocol that allows network devices to advertise information about themselves to other devices on the network. LLDP is used to discover network topology information and to assist with troubleshooting.

The port description TLV is used to advertise a textual description of the port. This information can be useful for network administrators to quickly identify where a particular device is connected in the network. To configure LLDP to send the port description TLV, the engineer should use the following command sequence:

  1. Enter configuration mode on the switch:
c
switch# configure terminal
  1. Navigate to the interface configuration mode for the port that needs to send the TLV:
go
switch(config)# interface <interface-id>
  1. Enable LLDP on the interface:
c
switch(config-if)# lldp enable
  1. Configure the port description TLV:
c
switch(config-if)# lldp port-description

This command sequence will enable LLDP on the specified interface and configure it to send the port description TLV. The TLV will contain the textual description of the port as configured on the switch.

Option B, switch#lldp port-description, is incorrect as it does not specify the interface or enter interface configuration mode.

Option C, switch(config-line)#lldp port-description, is incorrect as it enters line configuration mode, which is used to configure console or VTY lines, not interface settings.

Option D, switch(config)#lldp port-description, is incorrect as it does not specify the interface or enter interface configuration mode, and it configures the global LLDP settings rather than the interface-specific settings.