You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -228,10 +228,10 @@ It also configures timeouts to control how long `viam-agent` waits for a valid l
228
228
|`hotspot_interface`| string | Optional | The interface to use for hotspot/provisioning/wifi management. Default: first discovered 802.11 device. |
229
229
|`hotspot_prefix`| string | Optional |`viam-agent` will prepend this to the hostname of the device and use the resulting string for the provisioning hotspot SSID. Default: `"viam-setup"`. |
230
230
|`hotspot_password`| string | Optional | The Wifi password for the provisioning hotspot. Default: `"viamsetup"`. |
231
-
|`disable_dns_redirect`| boolean | Optional | By default, ALL DNS lookups using the provisioning hotspot will redirect to the device. This causes most phones/mobile devices to automatically redirect the user to the captive portal as a "sign in" screen. When disabled, only domains ending in .setup (ex: viam.setup) will be redirected. This generally avoids displaying the portal to users and is mainly used in conjunction with a mobile provisioning application workflow. Default: `false`. |
232
-
|`roaming_mode`| boolean | Optional | By default, the device will only attempt to connect to a single wifi network (the one with the highest priority), provided during initial provisioning/setup using the provisioning mobile app or captive web portal. Wifi connection alone is enough to consider the device as "online" even if the global internet is not reachable. If the primary network configured during provisioning cannot be connected to and roaming mode is enabled, the device will attempt connections to all configured networks in `networks`, and only consider the device online if the internet is reachable. Default: `false`. |
233
-
|`offline_timeout`|boolean| Optional | Will only enter provisioning mode (hotspot) after being disconnected longer than this time. Useful on flaky connections, or when part of a system where the device may start quickly, but the wifi/router may take longer to be available. Default: `"2m"` (2 minutes). |
234
-
|`user_timeout`|boolean| Optional | Amount of time before considering a user (using the captive web portal or provisioning app) idle, and resuming normal behavior. Used to avoid interrupting provisioning mode (for example for network tests/retries) when a user might be busy entering details. Default: `"5m"` (5 minutes). |
231
+
|`disable_captive_portal_redirect`| boolean | Optional | By default, ALL DNS lookups using the provisioning hotspot will redirect to the device. This causes most phones/mobile devices to automatically redirect the user to the captive portal as a "sign in" screen. When disabled, only domains ending in .setup (ex: viam.setup) will be redirected. This generally avoids displaying the portal to users and is mainly used in conjunction with a mobile provisioning application workflow. Default: `false`. |
232
+
|`turn_on_hotspot_if_wifi_has_no_internet`| boolean | Optional | By default, the device will only attempt to connect to a single wifi network (the one with the highest priority), provided during initial provisioning/setup using the provisioning mobile app or captive web portal. Wifi connection alone is enough to consider the device as "online" even if the global internet is not reachable. If the primary network configured during provisioning cannot be connected to and roaming mode is enabled, the device will attempt connections to all configured networks in `networks`, and only consider the device online if the internet is reachable. Default: `false`. |
233
+
|`offline_before_starting_hotspot_minutes`|integer| Optional | Will only enter provisioning mode (hotspot) after being disconnected longer than this time. Useful on flaky connections, or when part of a system where the device may start quickly, but the wifi/router may take longer to be available. Default: `2` (2 minutes). |
234
+
|`user_idle_minutes`|integer| Optional | Amount of time before considering a user (using the captive web portal or provisioning app) idle, and resuming normal behavior. Used to avoid interrupting provisioning mode (for example for network tests/retries) when a user might be busy entering details. Default: `5` (5 minutes). |
235
235
|`fallback_timeout`| boolean | Optional | Provisioning mode will exit after this time, to allow other unmanaged (for example wired) or manually configured connections to be tried. Provisioning mode will restart if the connection/online status doesn't change. Default: `"10m"` (10 minutes). |
236
236
|`networks`| array | Optional | Add additional networks the machine can connect to for provisioning. We recommend that you add WiFi settings in the operating system (for example, directly in NetworkManager) rather than in this file, or in the corresponding machine config in the Viam app, if networks aren't needed until after initial provisioning. See [Networks](/manage/reference/viam-agent/#networks). Default: `[]`. |
237
237
|`wifi_power_save`| boolean | Optional | If set, will explicitly enable or disable power save for all WiFi connections managed by NetworkManager. |
@@ -251,10 +251,10 @@ If you know in advance which other networks a machine should be able to connect
251
251
However, if you want to add additional networks to the provisioning configuration you can add them to the `networks` field value.
252
252
253
253
{{< alert title="Important" color="note" >}}
254
-
You must enable `roaming_mode` in the [`agent-provisioning` configuration](/manage/fleet/provision/setup/#configure-agent-provisioning) of the machine to allow the machine to connect to the specified networks after provisioning.
254
+
You must enable `turn_on_hotspot_if_wifi_has_no_internet` in the [`agent-provisioning` configuration](/manage/fleet/provision/setup/#configure-agent-provisioning) of the machine to allow the machine to connect to the specified networks after provisioning.
255
255
{{< /alert >}}
256
256
257
-
If `roaming_mode` is enabled, `agent-provisioning` will try to connect to each specified network in order of `priority` from highest to lowest.
257
+
If `turn_on_hotspot_if_wifi_has_no_internet` is enabled, `agent-provisioning` will try to connect to each specified network in order of `priority` from highest to lowest.
258
258
259
259
<!-- prettier-ignore -->
260
260
| Name | Type | Description |
@@ -272,13 +272,13 @@ The following configuration defines the connection information and credentials f
Copy file name to clipboardexpand all lines: docs/manage/fleet/system-settings.md
+36-73
Original file line number
Diff line number
Diff line change
@@ -16,30 +16,27 @@ The `viam-agent` configuration allows you to configure:
16
16
## Manage OS package updates
17
17
18
18
By default, the configuration in <FILE>/etc/apt/apt.conf.d/</FILE> determines the behavior for updating operating system packages.
19
-
To manage OS package updates using Viam, add an `"agent-syscfg"` object to the `"agent"` object in the machine's JSON configuration, if it doesn't already exist.
20
-
Then, add the `"upgrades"` field in its attributes:
19
+
To manage OS package updates using Viam, add an `"system_configuration"` object to the `"agent"` object in the machine's JSON configuration, if it doesn't already exist.
20
+
Then, add the `"os_auto_upgrade_type"` field in its attributes:
21
21
22
22
```json
23
23
"agent": {
24
-
"agent-syscfg": {
25
-
"release_channel": "stable",
26
-
"attributes": {
27
-
"upgrades": {
28
-
"type": "all|security|disabled"
29
-
}
30
-
}
24
+
"system_configuration": {
25
+
"os_auto_upgrade_type": "security"
31
26
}
32
27
}
33
28
```
34
29
35
-
When the `type` attribute is specified for `"upgrades"`, `viam-agent` will install the `unattended-upgrades` package and replace `20auto-upgrades` and `50unattended-upgrades` in <FILE>/etc/apt/apt.conf.d/</FILE> with an Origins-Pattern list generated automatically from configured repositories on the system.
30
+
When the `os_auto_upgrade_type`is set, `viam-agent` will install the `unattended-upgrades` package and replace `20auto-upgrades` and `50unattended-upgrades` in <FILE>/etc/apt/apt.conf.d/</FILE> with an Origins-Pattern list generated automatically from configured repositories on the system.
36
31
Custom repos installed on the system at the time the setting is enabled will be included.
37
32
38
-
You can set automatic upgrades for all packages by setting the field value to `{ "type": "all" }`.
39
-
Alternatively, you can set automatic upgrades for only packages containing `"security"` in their codename (for example `bookworm-security`), by setting the field value to `{ "type": "security" }`.
40
-
To disable automatic upgrades, set the field value to `{ "type": "disabled" }`.
33
+
You can set automatic upgrades to the following options:
34
+
35
+
-`"all"`: automatic upgrades are performed for all packages
36
+
-`"security"`: automatic upgrades for only packages containing `"security"` in their codename (for example `bookworm-security`)
37
+
-`""`: disable automatic upgrades
41
38
42
-
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#agent-syscfg).
39
+
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#system_configuration).
43
40
44
41
## Configure networks
45
42
@@ -48,8 +45,7 @@ By default, your machine can connect to networks added at the operating system l
48
45
For an already-online device, you can add new WiFi networks by updating the `"agent"` value in the machine's JSON configuration.
49
46
This is primarily useful for a machine that moves between different networks, so the machine can automatically connect when moved between locations.
50
47
51
-
To add networks, add the `networks` field to the `agent-provisioning`'s `attributes` object and set `"roaming_mode": true`.
52
-
You may need to add the `agent-provisioning` object to the `agent` object if it doesn't already exist.
48
+
To add networks, add or update the `additional_networks` field to the `agent` object and set `"turn_on_hotspot_if_wifi_has_no_internet": true`.
53
49
54
50
{{< alert title="Note" color="note" >}}
55
51
If you are using the Viam app to add networks to a machine’s configuration, the machine will need to be connected to the internet to retrieve the configuration information containing the network credentials before it can use them.
@@ -61,26 +57,20 @@ If the `fallbackNetOne` is not available or the machine can connect but internet
61
57
62
58
```json
63
59
"agent": {
64
-
"agent-provisioning": {
65
-
...
66
-
"attributes": {
67
-
"roaming_mode": true,
68
-
"networks": [
69
-
{
70
-
"type": "wifi",
71
-
"ssid": "fallbackNetOne",
72
-
"psk": "myFirstPassword",
73
-
"priority": 30
74
-
},
75
-
{
76
-
"type": "wifi",
77
-
"ssid": "fallbackNetTwo",
78
-
"psk": "mySecondPassword",
79
-
"priority": 10
80
-
}
81
-
]
60
+
"additional_networks": [
61
+
{
62
+
"type": "wifi",
63
+
"ssid": "fallbackNetOne",
64
+
"psk": "myFirstPassword",
65
+
"priority": 30
66
+
},
67
+
{
68
+
"type": "wifi",
69
+
"ssid": "fallbackNetTwo",
70
+
"psk": "mySecondPassword",
71
+
"priority": 10
82
72
}
83
-
}
73
+
]
84
74
}
85
75
```
86
76
@@ -92,63 +82,36 @@ By default, the maximum disk space `journald` will use for `viam-server` logs is
92
82
93
83
To adjust these settings update the `"agent"` value in the machine's JSON configuration.
94
84
95
-
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#agent-syscfg) and the [`journald` docs](https://www.freedesktop.org/software/systemd/man/latest/journald.conf.html#SystemMaxUse=).
85
+
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#system_configuration) and the [`journald` docs](https://www.freedesktop.org/software/systemd/man/latest/journald.conf.html#SystemMaxUse=).
96
86
97
87
### Set the maximum disk space
98
88
99
-
To set the maximum disk space `journald` will use to persist logs, add the `system_max_use` field to the `agent-syscfg`'s `attributes` object.
100
-
You may need to add the `agent-syscfg` object to the `agent` object if it doesn't already exist.
89
+
To set the maximum disk space `journald` will use to persist logs, add the `logging_journald_system_max_use_megabytes` field to the `system_configuration` object.
90
+
You may need to add the `system_configuration` object to the `agent` object if it doesn't already exist.
101
91
102
92
The configured values will take precedence over operating system defaults.
103
93
104
94
```json
105
95
"agent": {
106
-
"agent-syscfg": {
107
-
"release_channel": "stable",
108
-
"attributes": {
109
-
"logging": {
110
-
"system_max_use": "512M"
111
-
}
112
-
}
96
+
"system_configuration": {
97
+
"os_auto_upgrade_type": "security",
98
+
"logging_journald_system_max_use_megabytes": 512
113
99
}
114
100
}
115
101
```
116
102
117
103
### Set the runtime space limit space
118
104
119
-
To set the temporary space limit for logs, add the `runtime_max_use` field to the `agent-syscfg`'s `attributes` object.
120
-
You may need to add the `agent-syscfg` object to the `agent` object if it doesn't already exist.
105
+
To set the temporary space limit for logs, add the `logging_journald_runtime_max_use_megabytes` field to the `system_configuration` object.
106
+
You may need to add the `system_configuration` object to the `agent` object if it doesn't already exist.
121
107
122
108
The configured values will take precedence over operating system defaults.
123
109
124
110
```json
125
111
"agent": {
126
-
"agent-syscfg": {
127
-
"release_channel": "stable",
128
-
"attributes": {
129
-
"logging": {
130
-
"runtime_max_use": "512M"
131
-
}
132
-
}
133
-
}
134
-
}
135
-
```
136
-
137
-
### Use the default operating system settings
138
-
139
-
This configuration does not modify the OS-level logging configuration.
140
-
141
-
The operating system defaults for `journald` will determine the logging settings.
0 commit comments