Live Migration (or ANY migration!) is broken, I think due to buggered-up Network ATC config.

Rob Nilsen 0 Reputation points
2026-03-20T19:35:11.2966667+00:00

Hello,

I recently took our previous 2-node cluster apart (Azure Stack HCI on Dell AX-750 nodes) and built a new cluster based on WS2025 Core as using Dell's instructions here as a guide: https://www.dell.com/support/manuals/en-ms/ax-4510c/win_2025_scalable_deployment_guide/solution-overview

The two nodes both have production VMs running on them. Somehow, I have managed to bring the cluster networking in a state where it now throws an error when attempting to move VMs between nodes. I feel it might be due to the "management_compute" intent not being fully satisfied with the NIC configs under it. The "storage" intent seems perfectly happy.

I want to solve this problem without losing my S2D!!!

Can you please assist me with this?

Windows for business | Windows Server | Networking | Software-defined networking
0 comments No comments

1 answer

Sort by: Newest
  1. AI answer

    2026-03-20T19:35:31.45+00:00

    Use a structured approach to fix live migration while preserving Storage Spaces Direct and the existing VMs.

    1. Verify the actual live migration error and cluster network state
    • On one node, run in an elevated PowerShell session:
        Get-ClusterNetwork
      
    • Confirm that:
      • All expected cluster networks (management, storage, etc.) are present.
      • For the networks that should carry cluster and live migration traffic, Allow cluster network communication on this network is enabled.
    • If live migration errors show messages like:
      • “A cluster network isn't available for this operation. (0x000013AB)”
      • Or “Cluster network not found” then the cluster networks or live migration networks are misconfigured.
    1. Confirm identical virtual switches on both nodes A very common cause of migration failures is a missing or mismatched virtual switch on the destination node.
    • On each node, in Hyper-V Manager (or via PowerShell), verify that:
      • The virtual switch used by the VMs exists on both nodes.
      • The switch names are identical on both nodes.
    • If a VM is connected to a switch that does not exist on the destination node, live migration fails at <10%.
    • If needed, create or rename the virtual switch on the destination node to match the source node, then refresh the VM configuration and retry migration.
    1. Check that Network ATC is managing live migration networks correctly Network ATC introduces intent-based management of cluster networks and live migration selection.
    • Network ATC has a Live migration network selection feature:
      • When enabled (default), live migration networks are chosen based on the intents (for example, management_compute, storage).
      • If this logic is disabled, live migration network selection reverts to classic cluster behavior and must be configured manually.
    • If the management_compute intent is partially satisfied or misapplied, the cluster may not correctly identify which networks to use for live migration.

    Actions:

    • On each node, verify Network ATC status:
        Get-NetIntentStatus
      
      • Ensure ConfigurationStatus is Success for all intents, including management_compute.
      • If any intent shows errors or is not applied, that must be corrected before relying on ATC for live migration.
    1. Reconcile Network ATC configuration across both nodes (non-destructive to S2D) To avoid impacting Storage Spaces Direct, focus only on the network/intent layer and not on storage.

    For each node in the cluster:

    1. Pause and drain the node so that VMs are moved off it (as far as possible):
         Suspend-ClusterNode -Drain -Wait
      
    2. Ensure any legacy or conflicting QoS/network configurations that pre-date Network ATC are removed (following the same commands used when the intents were first applied).
    3. If VLAN IDs for virtual adapters under management_compute are incorrect or inconsistent between nodes, correct them using the same commands used when the intent was originally configured.
    4. Ensure the virtual network adapters and underlying physical adapters have consistent naming across nodes using Rename-VMNetworkAdapter and Rename-NetAdapter (do not rename the vSwitch or re-add intents if they are already correct).
    5. Make sure the Network ATC service is enabled and running on each node:
         Set-Service -Name NetworkATC -StartupType Automatic
         Start-Service -Name NetworkATC
      
    6. Re-check intent deployment status:
         Get-NetIntentStatus
      
      • Confirm ConfigurationStatus is Success for all intents.
    7. Resume the node:
         Resume-ClusterNode
      
    8. Verify that all storage jobs are complete:
         Get-StorageJob
      

    Repeat this process for each node. This sequence is designed to correct ATC-managed networking without touching S2D or CSVs.

    1. Validate live migration configuration and test again After Network ATC and cluster networks are consistent:
    • Confirm live migration settings in the cluster:
      • Ensure the networks intended for live migration are enabled and prioritized correctly.
      • If Network ATC’s Live migration network selection is enabled, verify that the intents (for example, storage networks) are the ones being used for live migration and that the management network is excluded if desired.
    • Attempt a live migration of a single test VM:
      • If it fails with network-related errors, re-run Get-ClusterNetwork and verify that the networks used by ATC are marked to allow cluster communication and live migration.
    1. If cross-site or stretched scenarios are involved If this cluster spans sites or subnets:
    • Be aware that cross-site live migration is not supported in some Azure Stack HCI versions; the documented workaround is to:
      • Use quick migration for cross-site moves, or
      • Use a stretched VLAN (single subnet) as the preferred live migration network.
    1. General Hyper-V live migration checks (if issues persist) If the above network and ATC checks look correct but migration still fails:
    • Use a structured checklist:
      • Confirm all hosts are fully patched and supported.
      • Ensure VM configuration versions are consistent.
      • Verify that the same virtual switches exist and are identically configured on both hosts.
      • Confirm firewall rules and required ports (for example, clustering ports) are open.
      • Check authentication (Kerberos/CredSSP, SPNs, delegation) if using host-to-host live migration outside the cluster.

    This approach keeps Storage Spaces Direct intact while systematically correcting Network ATC and cluster networking so that live migration can function again.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.