From 70ca7d9639eb8ab91cb3a1108fd0636908b5e7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Fri, 13 Nov 2020 09:31:28 +0100 Subject: [PATCH] Add new keys to /network/info (#723) --- docs/api/supervisor/endpoints.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/api/supervisor/endpoints.md b/docs/api/supervisor/endpoints.md index 181b538c..6548a8e8 100644 --- a/docs/api/supervisor/endpoints.md +++ b/docs/api/supervisor/endpoints.md @@ -1406,6 +1406,8 @@ Get network information. | ---------- | ---------------------------------------------------------------------- | | interfaces | A list of [Network interface models](api/supervisor/models.md#network-interface) | | docker | Information about the internal docker network | +| host_internet | Boolean to indicate if the host can reach the internet. | +| supervisor_internet | Boolean to indicate if the Supervisor can reach the internet. | **Example response:** @@ -1434,7 +1436,9 @@ Get network information. "address": "172.30.32.0/23", "gateway": "172.30.32.1", "dns": "172.30.32.3" - } + }, + "host_internet": true, + "supervisor_internet": true } ```