From 647df8eafa381268c36be2f954ccb62547544ccb Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Fri, 9 Sep 2022 02:37:22 -0400 Subject: [PATCH] Document connectivity check unsupported evaluation (#23988) --- .../unsupported/connectivity_check.markdown | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 source/more-info/unsupported/connectivity_check.markdown diff --git a/source/more-info/unsupported/connectivity_check.markdown b/source/more-info/unsupported/connectivity_check.markdown new file mode 100644 index 00000000000..f563473a83a --- /dev/null +++ b/source/more-info/unsupported/connectivity_check.markdown @@ -0,0 +1,17 @@ +--- +title: "Connectivity check" +description: "More information on why disabling Network Manager's connectivity check marks the installation as unsupported." +--- + +## The issue + +Home Assistant needs to know when it has a stable network connection in order to disable functionality which requires that. +Without this check you will face an increased number of errors and performance issues due to connection timeouts. + +## The solution + +From the host shell execute the following command to re-enable Network Manager's connectivity check: + +```sh +busctl set-property org.freedesktop.NetworkManager /org/freedesktop/NetworkManager org.freedesktop.NetworkManager ConnectivityCheckEnabled b true +```