From b43eed0546a4a6d1689dfa4c1921e614918ac2a7 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 24 Mar 2026 03:35:56 +0000 Subject: [PATCH] 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 --- switch_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/switch_backend.py b/switch_backend.py index ebf3423..dedb207 100644 --- a/switch_backend.py +++ b/switch_backend.py @@ -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"), }