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
Copy file name to clipboardExpand all lines: articles/databox-online/azure-stack-edge-powershell-based-configuration.md
+17-14Lines changed: 17 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ author: alkohli
6
6
ms.service: databox
7
7
ms.subservice: edge
8
8
ms.topic: article
9
-
ms.date: 03/03/2023
9
+
ms.date: 03/07/2023
10
10
ms.author: alkohli
11
11
---
12
12
# Use a config file to deploy an Azure Stack Edge device
@@ -189,6 +189,8 @@ Once a config.json file has been created, as shown in the previous example, with
189
189
> [!NOTE]
190
190
> Use a config.json file that meets the needs of your organization. [Sample JSON files are available here](https://github.com/Azure-Samples/azure-stack-edge-deploy-vms/tree/master/PowerShellBasedConfiguration/).
191
191
192
+
### Configure a single-node device
193
+
192
194
This sequence of PowerShell cmdlets signs in to the device, applies device configuration settings from a JSON file, verifies completion of the operation, and then fetches the new device configuration.
193
195
194
196
Run the following cmdlets in PowerShell:
@@ -256,6 +258,7 @@ Run the following cmdlets in PowerShell:
256
258
```azurepowershell
257
259
Get-DeviceConfiguration | To-json
258
260
```
261
+
### Configure a two-node device
259
262
260
263
This sequence of PowerShell cmdlets signs in to a two-node device, applies device configuration settings from a JSON file, verifies completion of the operation, and then fetches the new device configuration.
261
264
@@ -1035,13 +1038,13 @@ Use the following steps to sign in to the device and run device diagnostics to v
1035
1038
> [!NOTE]
1036
1039
> Two-node configurations are only supported on Azure Stack Edge Pro GPU and Azure Stack Edge Pro 2 devices.
1037
1040
1038
-
For Azure consistent services and NFS, define a virtual IP that allows you to connect to a clustered device as opposed to a specific node. A virtual IP is an available IP in the cluster network and any client connecting to the cluster network on the two-node device should be able to access this IP.
1041
+
For Azure consistent services and NFS, define a virtual IP that allows you to connect to a clustered device instead of a specific node. A virtual IP is an available IP in the cluster network. Any client connecting to the cluster network on the two-node device should be able to access this IP.
1039
1042
1040
1043
You can set either an ACS or an NFS configuration. Additional options include static or DHCP network settings. For more information about setting virtual IPs, see [Configure virtual IPs](azure-stack-edge-pro-2-deploy-configure-network-compute-web-proxy.md#configure-virtual-ips).
1041
1044
1042
1045
Use the following steps to set the `DeviceVIP` configuration on a two-node Azure Stack Edge device.
1043
1046
1044
-
The example below shows a static ACS configuration, followed by an example that shows a DHCP configuration.
1047
+
The example below shows a static ACS configuration, followed by an example that shows a configuration with DHCP enabled.
1045
1048
1046
1049
1. Sign in to the device.
1047
1050
@@ -1131,7 +1134,7 @@ The example below shows a static ACS configuration, followed by an example that
1131
1134
1132
1135
Use the following steps to set the `DeviceVIP` configuration on a two-node Azure Stack Edge device.
1133
1136
1134
-
The example below shows a DHCP configuration.
1137
+
The example below shows a sequence of steps to enable DHCP.
1135
1138
1136
1139
1. Sign in to the device.
1137
1140
@@ -1151,7 +1154,7 @@ The example below shows a DHCP configuration.
1151
1154
Get-DeviceVip | to-json
1152
1155
```
1153
1156
1154
-
Here's sample output showing **nfsVIP setting "isDhcpEnabled": false** on the device:
1157
+
Here's sample output showing the initial state of **acsVIP setting "isDhcpEnabled": false** on the device:
1155
1158
1156
1159
```output
1157
1160
{
@@ -1163,7 +1166,7 @@ The example below shows a DHCP configuration.
1163
1166
"name": "Cluster Network 1",
1164
1167
"address": "192.168.0.0",
1165
1168
"subnet": "255.255.0.0",
1166
-
"dhcpEnabled": true
1169
+
"dhcpEnabled": false
1167
1170
},
1168
1171
"isDhcpEnabled": false
1169
1172
},
@@ -1179,7 +1182,7 @@ The example below shows a DHCP configuration.
1179
1182
"name": "Cluster Network 1",
1180
1183
"address": "192.168.0.0",
1181
1184
"subnet": "255.255.0.0",
1182
-
"dhcpEnabled": true
1185
+
"dhcpEnabled": false
1183
1186
},
1184
1187
{
1185
1188
"name": "Cluster Network 2",
@@ -1191,7 +1194,7 @@ The example below shows a DHCP configuration.
1191
1194
"name": "Cluster Network 3",
1192
1195
"address": "10.126.72.0",
1193
1196
"subnet": "255.255.248.0",
1194
-
"dhcpEnabled": true
1197
+
"dhcpEnabled": false
1195
1198
}
1196
1199
]
1197
1200
}
@@ -1200,21 +1203,21 @@ The example below shows a DHCP configuration.
0 commit comments