Skip to content

Commit

Permalink
Document network config in config-sample.json
Browse files Browse the repository at this point in the history
Specifically document the CIDR notation of the IP address
  • Loading branch information
zenlord authored Nov 7, 2024
1 parent 0f4e76f commit 3efbeb6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions examples/config-sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
]
},
Expand Down

0 comments on commit 3efbeb6

Please sign in to comment.