Hi Muhamed Panchili,
Updating the VM configuration versions is a crucial first step to ensuring stability on the 2025 cluster. You can segregate traffic on an active SET switch without any downtime or impact on your production VMs. Because SET is software-defined, you do not need to unplug physical cables or rebuild the switch. Instead, we create "Host vNICs" (Virtual Network Adapters specifically for the Hyper-V host) that attach to your existing SET switch.
Here is the safest way to implement this architecture:
Step 1: Create Dedicated Host vNICs You will need to run PowerShell as an Administrator on each Hyper-V host to add logical adapters for specific traffic types (like Live Migration and Backup). Because this only adds logical adapters to the host OS, it does not drop the connection for your running VMs.
- Run:
Add-VMNetworkAdapter -ManagementOS -Name "LiveMigration" -SwitchName "YourSETSwitchName" - Run:
Add-VMNetworkAdapter -ManagementOS -Name "Backup_CSV" -SwitchName "YourSETSwitchName"
Step 2: Assign VLANs (If applicable) If your physical network switches use VLANs to separate traffic, you must tag these new host vNICs so they can communicate on those isolated networks.
Run: Set-VMNetworkAdapterVlan -ManagementOS -VMNetworkAdapterName "LiveMigration" -Access -VlanId <YourVlanID>
Step 3: Assign Unique IP Subnets For the Windows Failover Cluster to recognize these as completely separate networks, each vNIC must have an IP address in a completely different subnet.
Open Control Panel > Network and Internet > Network Connections.
You will see your new "vEthernet (LiveMigration)" and "vEthernet (Backup_CSV)" adapters.
Assign them static IPs in their respective subnets. Do not assign a Default Gateway to these storage/migration adapters to prevent routing confusion.
Step 4: Configure Failover Cluster Manager Once the IP addresses are applied, the Failover Cluster will automatically detect the new subnets.
- Open Failover Cluster Manager and navigate to Networks.
- Rename the newly discovered subnets to identify them clearly (e.g., "Live Migration Network").
- Right-click the Networks node and select Live Migration Settings.
- Uncheck your production/management networks and strictly check only your new Live Migration network.
By forcing Live Migration and Cluster communications onto these new, logically separated pathways, your Backup traffic (which usually traverses the Management or CSV network) will no longer collide with the cluster's internal operations, which should immediately improve your Veeam backup speeds.
Tracy Le.