One of the coolest things that can help streamline networks, is Power over Ethernet. Instead of running a separate electrical cable to devices like wireless access points, VoIP phones, security cameras, or badge readers, PoE allows both power and network traffic to travel over a single Ethernet cable. It sounds simple, but it completely changes how networks are designed and deployed. PoE has the ability to deliver almost 100W of power to end devices, which allow for unique installations that will also save money in the long run. Additionally, since power is being provided by a switch in a central closet, this helps ensure the uptime of end devices. Network switches and closets are usually on battery backups, so if there are power outages or flashes, the end equipment will remain online.
PoE is important because it makes installations cleaner, faster, and much more flexible. If a business wanted to mount a wireless access point on a ceiling in the middle of an office, they don’t need to hire an electrician to place an outlet nearby. As long as they can run ethernet to the device, they can power it directly from the switch. This reduces cost, simplifies cable management, and gives a lot more freedom when deciding where devices should be placed within an office building. In large environments, this can save a massive amount of time and money.
There are several PoE standards for different use cases, and understanding the power limits is important when planning deployments. Standard PoE, known as IEEE 802.3af, provides up to 15.4 watts per port. PoE+ (802.3at) increases that to 30 watts, which is common for newer wireless access points and PTZ cameras. Then there’s PoE++ (802.3bt), which can deliver 60 watts or even 90-100 watts depending on the implementation. This is useful for things like high-end access points, digital signage, or thin client systems. Even if a switch supports PoE, the switch itself has a total power budget that can’t be exceeded. For example, a 48-port switch may support PoE on every port, but maybe only has a 370W power supply. That means you can’t necessarily run maximum power to all 48 ports at the same time.
On Cisco switches, PoE is usually enabled by default, which is nice because devices often just work the moment they’re plugged in. Still, it’s important to know how to verify and configure it. Power draw on ports is something that every engineer should know how to do these days. In newer installs, some companies are even installing PoE lighting, and window shades to save money on electrical.
One of the most useful commands when troubleshooting power issues, is the command below, which shows the overall PoE budget and how much power is being used across the switch.
switch# show power inline
If you need to configure or adjust PoE settings on a specific interface, you can jump into the interface configuration and manually control how power is delivered. This can be useful for troubleshooting or for limiting power usage on certain ports. If you need to at a max power limit on the port, you can do that as well.
switch(config)#interface tw1/0/10
switch(config-if)#power inline auto
switch(config-if)#power inline static max 30000 ! optional command
! The above will limit the port to a max PoE output of 30W
You can also disable PoE entirely on a port if needed. I’ve had to do this occasionally when troubleshooting strange device behavior or when a non-PoE device was having issues negotiating power.
switch(config)#interface tw1/0/10
switch(config-if)#power inline never
Troubleshooting PoE is usually pretty straightforward once you know what to look for. If a device is not powering on, you should first check whether the switch has enough remaining power budget available. After that, you need to verify the interface status and confirm the device is actually requesting power correctly. Cisco switches provide a few great commands for this.
switch#show power inline
switch#show power inline police
switch#show interface status
switch#show logging
One thing that surprises a lot of people entering the field is that PoE cabling is generally considered low voltage. Because of this, the regulations and permitting requirements are often less strict compared to standard electrical work. Of course, building codes still matter and should always be followed, especially in commercial environments, but running ethernet for PoE is usually far simpler than installing traditional electrical circuits. This is one of the reasons PoE has become so popular in offices, warehouses, schools, and even smart homes. It gives network engineers the ability to deploy devices almost anywhere without needing dedicated electrical infrastructure nearby.
At the end of the day, PoE is one of those technologies that quietly makes modern networking possible. Once you start working with wireless access points, IP cameras, and VoIP phones, you realize just how much easier life becomes when both data and power can share the same cable. It keeps deployments clean, scalable, and efficient — and honestly, it’s one of those networking features that feels a little magical the first time you see it in action.