File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -594,7 +594,7 @@ Use the following steps to sign in to the device and run device diagnostics to v
594
594
595
595
## Set the VIP configuration on a multi-node device
596
596
597
- Use the following steps to set the VIP configuration on a two-node Azure Stack Edge device.
597
+ Use the following steps to set the ` DeviceVIP ` configuration on a two-node Azure Stack Edge device.
598
598
599
599
1 . Sign in to the device.
600
600
@@ -608,19 +608,19 @@ Use the following steps to set the VIP configuration on a two-node Azure Stack E
608
608
Get-DeviceConfiguration | To-json
609
609
```
610
610
611
- 1. Fetch the device VIP configuration.
611
+ 1. Fetch the `DeviceVIP` configuration.
612
612
613
613
```azurepowershell
614
614
Get-DeviceVip | to-json
615
615
```
616
616
617
- 1. Set the VIP property with a static ACS configuration.
617
+ 1. Set the `DeviceVIP` property with a static ACS configuration.
618
618
619
619
```azurepowershell
620
620
$acsVip = New-Object PSObject -Property @{ Type = "ACS"; VipAddress = "192.168.181.10"; ClusterNetworkAddress = "192.168.0.0"; IsDhcpEnabled = $false }
621
621
```
622
622
623
- 1. Update the device with the VIP property.
623
+ 1. Update the device with the `DeviceVIP` property.
624
624
625
625
```azurepowershell
626
626
Set-DeviceVip -vip $acsVip
@@ -634,7 +634,7 @@ Use the following steps to set the VIP configuration on a two-node Azure Stack E
634
634
@{type=ACS; name=Azure Consistent Services; address=192.168.181.10; network=; isDhcpEnabled=False} @{type=NFS; name=Network File Syst...
635
635
```
636
636
637
- 1. Fetch the updated device VIP configuration.
637
+ 1. Fetch the updated `DeviceVIP` configuration.
638
638
639
639
```azurepowershell
640
640
Get-DeviceVip | to-json
You can’t perform that action at this time.
0 commit comments