Use show poe-main-status instead of per-port PoE command

show poe-port status rejects all argument formats on this firmware;
show poe-main-status gives overall PoE power and health data instead.

https://claude.ai/code/session_01JR2EMK7rwrZJowpstcaxQ6
This commit is contained in:
Claude
2026-03-24 03:35:56 +00:00
parent ea6203f5e6
commit b43eed0546
+1 -1
View File
@@ -476,7 +476,7 @@ def _poll_loop():
try:
data = {
"port_status": read_cmd("show interfaces"),
"poe_status": read_cmd("show poe-port status ALL"),
"poe_status": read_cmd("show poe-main-status"),
"vlan_members": read_cmd("show vlan"),
"sys_info": read_cmd("show sys-info"),
}