Document network config in config-sample.json (#2781)

Specifically document the CIDR notation of the IP address
This commit is contained in:
Vincent 2024-11-07 16:17:32 +01:00 committed by GitHub
parent 0f4e76f142
commit 7098a6a848
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 4 deletions

View File

@ -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"
]
}
]
},