What is Power over Ethernet (PoE)?

Power over Ethernet (PoE) allows network cables to carry both data and electrical power to devices like IP phones, wireless access points, and security cameras, eliminating the need for separate power adapters.

PoE Standards

StandardMax Power per PortDevices Supported
802.3af (PoE)15.4WPhones, small APs
802.3at (PoE+)30WHigh-power APs, cameras
802.3bt (PoE++)60-100WLED lights, laptops

How to Enable PoE on a Cisco Switch

Most Cisco switches support PoE by default, but you can manually enable or configure it.

1. Check if the Switch Supports PoE

Run:

Switch#show power inline

If you see available power and usage stats, the switch supports PoE.


2. Enable PoE on an Interface

Run:

Switch#conf t
interface <interface_id>
power inline auto
exit

To disable PoE on a port:

Switch#conf t
interface <interface_id>
power inline never
exit

3. Set Power Limits for Devices

By default, the switch assigns power dynamically. You can manually set power limits:

Switch#conf t
interface <interface_id>
power inline static max 20000
exit

To check power consumption:

Switch#show power inline interface <interface_id> detail

4. Troubleshoot PoE Issues

If a device is not powering up:


Summary

TaskCommand
Enable PoEpower inline auto
Disable PoEpower inline never
Set power limitpower inline static max <mW>
Check PoE statusshow power inline
Check port power useshow power inline interface <interface_id> detail
renjithbs Avatar

Posted by

Leave a comment