From 7098a6a8486f5d4d9371ed64576fbafce9e944e0 Mon Sep 17 00:00:00 2001 From: Vincent Date: Thu, 7 Nov 2024 16:17:32 +0100 Subject: [PATCH] Document network config in config-sample.json (#2781) Specifically document the CIDR notation of the IP address --- examples/config-sample.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/examples/config-sample.json b/examples/config-sample.json index c9beb480..57c1e1da 100644 --- a/examples/config-sample.json +++ b/examples/config-sample.json @@ -99,11 +99,14 @@ "type": "manual", "nics": [ { - "iface": null, - "ip": null, + "iface": "eno1", + "ip": "192.168.1.15/24", "dhcp": true, - "gateway": null, - "dns": null + "gateway": "192.168.1.1", + "dns": [ + "192.168.1.1", + "9.9.9.9" + ] } ] },