doc/reference/system/network: Update for struct renaming and addition of timezone field

Signed-off-by: Mathias Gibbens <mathias.gibbens@futurfusion.io>
This commit is contained in:
Mathias Gibbens
2025-11-17 13:40:41 -07:00
parent 01d9da6936
commit 479369bbaf

View File

@@ -30,10 +30,10 @@ The following configuration options can be set:
* `dns`: Optionally, configure custom DNS information for the system.
* `ntp`: Optionally, configure custom NTP server(s) for the system.
* `proxy`: Optionally, configure a proxy for the system.
* `time`: Optionally, configure custom NTP server(s) and timezone for the system.
### Examples
Configure two network interfaces, one with IPv4 and the other with IPv6:
@@ -93,7 +93,7 @@ Configure a VLAN with ID 123 on top of an active-backup bond composed of two int
}
```
Configure custom DNS and NTP for IncusOS:
Configure custom DNS, NTP, and timezone for IncusOS:
```
{
@@ -103,8 +103,9 @@ Configure custom DNS and NTP for IncusOS:
"search_domains": ["example.com", "example.org"],
"nameservers": ["ns1.example.com", "ns2.example.com"]
},
"ntp": {
"timeservers": ["ntp.example.com"]
"time": {
"ntp_servers": ["ntp.example.com"],
"timezone": "America/New_York"
}
}
```