@@ -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/16 /2023
9
+ ms.date : 03/17 /2023
10
10
ms.author : alkohli
11
11
---
12
12
# Use a config file to deploy an Azure Stack Edge device
@@ -1014,7 +1014,7 @@ You can set either an Azure Consistent Services or a Network File System configu
1014
1014
1. Set the `DeviceVIP` property with a static Azure Consistent Services configuration.
1015
1015
1016
1016
```azurepowershell
1017
- $acsVip = New-Object PSObject -Property @{ Type = "ACS"; VipAddress = "192.168.181.10 "; ClusterNetworkAddress = "192.168.0 .0"; IsDhcpEnabled = $false }
1017
+ $acsVip = New-Object PSObject -Property @{ Type = "ACS"; VipAddress = "10.57.51.32 "; ClusterNetworkAddress = "10.57.48 .0"; IsDhcpEnabled = $false }
1018
1018
```
1019
1019
1020
1020
1. Update the device with the `DeviceVIP` property.
@@ -1032,19 +1032,19 @@ You can set either an Azure Consistent Services or a Network File System configu
1032
1032
Here's sample output:
1033
1033
1034
1034
```output
1035
- {
1036
- "acsVIP": {
1035
+ {
1036
+ "acsVIP": {
1037
1037
"type": "ACS",
1038
1038
"name": "Azure Consistent Services",
1039
- "address": "192.168.181.10 ",
1039
+ "address": "10.57.51.32 ",
1040
1040
"network": {
1041
- "name": "Cluster Network 1 ",
1042
- "address": "192.168.0 .0",
1043
- "subnet": "255.255.0 .0",
1041
+ "name": "Cluster Network 3 ",
1042
+ "address": "10.57.48 .0",
1043
+ "subnet": "255.255.248 .0",
1044
1044
"dhcpEnabled": false
1045
1045
},
1046
1046
"isDhcpEnabled": false
1047
- },
1047
+ }
1048
1048
}
1049
1049
PS C:\>
1050
1050
```
@@ -1060,7 +1060,7 @@ You can set either an Azure Consistent Services or a Network File System configu
1060
1060
1. Set the `DeviceVIP` property to enable DHCP.
1061
1061
1062
1062
```azurepowershell
1063
- $acsVip = New-Object PSObject -Property @{ Type = "ACS"; VipAddress = "192.168.181.10 "; ClusterNetworkAddress = "192.168.0 .0"; IsDhcpEnabled = $true }
1063
+ $acsVip = New-Object PSObject -Property @{ Type = "ACS"; VipAddress = "10.57.51.32 "; ClusterNetworkAddress = "10.57.48 .0"; IsDhcpEnabled = $true }
1064
1064
```
1065
1065
1066
1066
1. Update the device with the `DeviceVIP` property.
@@ -1082,11 +1082,11 @@ You can set either an Azure Consistent Services or a Network File System configu
1082
1082
"acsVIP": {
1083
1083
"type": "ACS",
1084
1084
"name": "Azure Consistent Services",
1085
- "address": "192.168.181.10 ",
1085
+ "address": "10.57.52.126 ",
1086
1086
"network": {
1087
- "name": "Cluster Network 1 ",
1088
- "address": "192.168.0 .0",
1089
- "subnet": "255.255.0 .0",
1087
+ "name": "Cluster Network 3 ",
1088
+ "address": "10.57.48 .0",
1089
+ "subnet": "255.255.248 .0",
1090
1090
"dhcpEnabled": true
1091
1091
},
1092
1092
"isDhcpEnabled": true
@@ -1107,7 +1107,7 @@ You can set either an Azure Consistent Services or a Network File System configu
1107
1107
1. Set the `DeviceVIP` property to enable DHCP.
1108
1108
1109
1109
```azurepowershell
1110
- $nfsVip = New-Object PSObject -Property @{ Type = "NFS"; VipAddress = $null ; ClusterNetworkAddress = "192.168.0 .0"; IsDhcpEnabled = $false }
1110
+ $nfsVip = New-Object PSObject -Property @{ Type = "NFS"; VipAddress = "10.57.53.215" ; ClusterNetworkAddress = "10.57.48 .0"; IsDhcpEnabled = $false }
1111
1111
```
1112
1112
1113
1113
1. Update the device with the `DeviceVIP` property.
@@ -1125,32 +1125,18 @@ You can set either an Azure Consistent Services or a Network File System configu
1125
1125
1126
1126
```Output
1127
1127
{
1128
- "nfsVIP": {
1128
+ "nfsVIP": {
1129
1129
"type": "NFS",
1130
1130
"name": "Network File System",
1131
- "address": "192.168.2.119 ",
1131
+ "address": "10.57.53.215 ",
1132
1132
"network": {
1133
- "name": "Cluster Network 1 ",
1134
- "address": "192.168.0 .0",
1135
- "subnet": "255.255.0 .0",
1133
+ "name": "Cluster Network 3 ",
1134
+ "address": "10.57.48 .0",
1135
+ "subnet": "255.255.248 .0",
1136
1136
"dhcpEnabled": false
1137
1137
},
1138
1138
"isDhcpEnabled": false
1139
- },
1140
- "clusterNetworks": [
1141
- {
1142
- "name": "Cluster Network 1",
1143
- "address": "192.168.0.0",
1144
- "subnet": "255.255.0.0",
1145
- "dhcpEnabled": false
1146
- },
1147
- {
1148
- "name": "Cluster Network 4",
1149
- "address": "10.126.72.0",
1150
- "subnet": "255.255.248.0",
1151
- "dhcpEnabled": false
1152
- }
1153
- ]
1139
+ }
1154
1140
}
1155
1141
PS C:\>
1156
1142
```
@@ -1165,7 +1151,7 @@ You can set either an Azure Consistent Services or a Network File System configu
1165
1151
1. Set the `DeviceVIP` property to enable DHCP.
1166
1152
1167
1153
```azurepowershell
1168
- $nfsVip = New-Object PSObject -Property @{ Type = "NFS"; VipAddress = $null ; ClusterNetworkAddress = "192.168.0 .0"; IsDhcpEnabled = $true }
1154
+ $nfsVip = New-Object PSObject -Property @{ Type = "NFS"; VipAddress = "10.57.53.215" ; ClusterNetworkAddress = "10.57.48 .0"; IsDhcpEnabled = $true }
1169
1155
```
1170
1156
1171
1157
1. Update the device with the `DeviceVIP` property.
@@ -1185,31 +1171,17 @@ You can set either an Azure Consistent Services or a Network File System configu
1185
1171
```output
1186
1172
{
1187
1173
"nfsVIP": {
1188
- "type": "NFS",
1189
- "name": "Network File System",
1190
- "address": "192.168.2.119",
1191
- "network": {
1192
- "name": "Cluster Network 1",
1193
- "address": "192.168.0.0",
1194
- "subnet": "255.255.0.0",
1195
- "dhcpEnabled": true
1196
- },
1197
- "isDhcpEnabled": true
1198
- },
1199
- "clusterNetworks": [
1200
- {
1201
- "name": "Cluster Network 1",
1202
- "address": "192.168.0.0",
1203
- "subnet": "255.255.0.0",
1204
- "dhcpEnabled": true
1205
- },
1206
- {
1207
- "name": "Cluster Network 4",
1208
- "address": "10.126.72.0",
1174
+ "type": "NFS",
1175
+ "name": "Network File System",
1176
+ "address": "10.57.50.196",
1177
+ "network": {
1178
+ "name": "Cluster Network 3",
1179
+ "address": "10.57.48.0",
1209
1180
"subnet": "255.255.248.0",
1210
1181
"dhcpEnabled": true
1211
- }
1212
- ]
1182
+ },
1183
+ "isDhcpEnabled": true
1184
+ }
1213
1185
}
1214
1186
PS C:\>
1215
1187
```
0 commit comments