Skip to content

Commit 7a5846d

Browse files
author
Manika Dhiman
committed
fixed build warnings
1 parent 75d413e commit 7a5846d

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

azure-local/upgrade/install-enable-network-atc.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -226,16 +226,15 @@ With the virtual switch renamed and VMs reconnected, virtual machines can be liv
226226
> [!NOTE]
227227
> Network ATC should manage the live migration networks. If live migrations fail due to an error `Cluster network not found`, you may need to manually update the live migration networks. You can use the following script to set the storage networks as available live migration networks and exclude the management network. Alternatively, these networks can be updated via Failover Cluster Manager.
228228
229-
```powershell
230-
# Configure the Virtual Machine ClusterResourceType not to use the management network for live migration
231-
$mgmtID = (Get-ClusterNetwork | where "Name" -match "Management").ID
232-
Get-ClusterResourceType "Virtual Machine" | Set-ClusterParameter -Name "MigrationExcludeNetworks" -Value $mgmtID
233-
234-
# Configure the Virtual Machine ClusterResourceType to use the storage networks for live migration
235-
$storageID = (Get-ClusterNetwork | where "Name" -match "Storage").ID
236-
$storageIDs = $storageID -join ";"
237-
Get-ClusterResourceType "Virtual Machine" | Set-ClusterParameter -Name "MigrationNetworkOrder" -Value $storageIDs
238-
```
229+
```powershell
230+
# Configure the Virtual Machine ClusterResourceType not to use the management network for live migration
231+
$mgmtID = (Get-ClusterNetwork | where "Name" -match "Management").ID
232+
Get-ClusterResourceType "Virtual Machine" | Set-ClusterParameter -Name "MigrationExcludeNetworks" -Value $mgmtID
233+
# Configure the Virtual Machine ClusterResourceType to use the storage networks for live migration
234+
$storageID = (Get-ClusterNetwork | where "Name" -match "Storage").ID
235+
$storageIDs = $storageID -join ";"
236+
Get-ClusterResourceType "Virtual Machine" | Set-ClusterParameter -Name "MigrationNetworkOrder" -Value $storageIDs
237+
```
239238

240239
1. Pause and drain the cluster node using the command `Suspend-ClusterNode -Drain -Wait`.
241240

@@ -271,7 +270,7 @@ Reference articles:
271270
272271
- For information on the default values, see [Deploy host networking with Network ATC](/windows-server/networking/network-atc/network-atc).
273272
- For information on configuring overrides, see [Manage Network ATC](/windows-server/networking/network-atc/manage-network-atc).
274-
- For information on Network ATC commands, see [NetworkATC](https://learn.microsoft.com/en-us/powershell/module/networkatc/?view=windowsserver2025-ps).
273+
- For information on Network ATC commands, see [NetworkATC](/powershell/module/networkatc).
275274
276275
For simplicity, the examples demonstrate only two physical adapters per SET team, however it's possible to add more. For more information, see [Network reference patterns overview for Azure Local](../plan/network-patterns-overview.md).
277276

0 commit comments

Comments
 (0)