What is LLDP and how does it help with network management?
44
✓
✓ Best Answer
LLDP (Link Layer Discovery Protocol), defined in IEEE 802.1AB, is a vendor-neutral protocol that lets network devices advertise their identity and capabilities to neighbors.
Information Exchanged
- Device name and description
- Port ID and description
- System capabilities (bridge, router, etc.)
- Management IP address
- VLAN membership
- Power over Ethernet capabilities (LLDP-MED)
Benefits
- Auto-discovery: Network topology mapping
- Troubleshooting: Identify neighboring devices without physical inspection
- Cable verification: Confirm connections match design
- Voice VLAN: IP phones auto-configure via LLDP-MED
- PoE negotiation: Fine power adjustment
LLDP-MED Extensions
Media Endpoint Discovery adds capabilities for VoIP and multimedia:
- Network policy (VLAN, QoS) push to endpoints
- Location identification
- Extended PoE power negotiation
Configuration Basics
- Enable globally:
lldp run - Per-port control: transmit/receive independently
- Timer settings: hold time (default 120s), tx interval (default 30s)
Security Considerations
- LLDP reveals network topology to eavesdroppers
- Disable on untrusted access ports (guest ports)
- Keep enabled between trusted switches for management
Viewing Neighbors
Common commands: show lldp neighbors, show lldp detail. Neighbor tables often integrate with NMS tools for topology visualization.
2 Other Answers
13
LLDP is a lifesaver in complex racks — no more chasing cables.
15
CDP (Cisco proprietary) is similar but LLDP is universal — always prefer LLDP.
Your Answer
You must be signed in to post an answer.