From 78415bc1ffb8ea436b96ef383e108c38384be5d8 Mon Sep 17 00:00:00 2001 From: Robert Svensson Date: Wed, 4 Feb 2026 14:43:04 +0100 Subject: [PATCH] =?UTF-8?q?Add=20missing=20OUI=20to=20Axis=20integration,?= =?UTF-8?q?=20discovery=20would=20abort=20with=20unsup=E2=80=A6=20(#161943?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homeassistant/components/axis/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/axis/config_flow.py b/homeassistant/components/axis/config_flow.py index 0596eb65503..7ac0a3a0ebd 100644 --- a/homeassistant/components/axis/config_flow.py +++ b/homeassistant/components/axis/config_flow.py @@ -52,7 +52,7 @@ from .const import ( from .errors import AuthenticationRequired, CannotConnect from .hub import AxisHub, get_axis_api -AXIS_OUI = {"00:40:8c", "ac:cc:8e", "b8:a4:4f"} +AXIS_OUI = {"00:40:8c", "ac:cc:8e", "b8:a4:4f", "e8:27:25"} DEFAULT_PORT = 443 DEFAULT_PROTOCOL = "https" PROTOCOL_CHOICES = ["https", "http"]