π ~1 min read
Table of contents
Symptom & Impact
Cluster creation or expansion is blocked by network validation errors.
Environment & Reproduction
Windows Server 2022 build 20348 nodes with mixed NIC drivers or MTU settings.
Test-Cluster -Node NODE1,NODE2 -Include 'Network'
Get-NetAdapterAdvancedProperty -Name *
Get-NetIPAddress | Sort InterfaceAlias
Root Cause Analysis
Mismatched subnet masks, duplicate gateways, or inconsistent network roles across nodes.
Quick Triage
Check node-to-node reachability on cluster and live migration networks.
Test-Connection NODE2 -Source NODE1 -Count 4
Get-ClusterNetwork | Select Name,Address,Role
Step-by-Step Diagnosis
Review validation HTML report and align adapter configs.
Get-ChildItem C:WindowsClusterReportsValidation* | Sort LastWriteTime -Descending | Select -First 1
Get-NetIPInterface | Select InterfaceAlias,NlMtu,InterfaceMetric

Solution β Primary Fix
Normalize NIC settings, gateways, and cluster network roles.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-NetIPInterface -InterfaceAlias 'Cluster' -InterfaceMetric 15
Set-ClusterNetwork -Name 'Cluster Network 1' -Role 1
Set-ClusterNetwork -Name 'Cluster Network 2' -Role 3

Solution β Alternative Approaches
Update NIC firmware/drivers and rerun validation.
pnputil /enum-drivers
Update-ClusterFunctionalLevel
Test-Cluster -Node NODE1,NODE2 -Include 'Network'
Verification & Acceptance Criteria
Network validation should complete with no critical errors.
Test-Cluster -Node NODE1,NODE2 -Include 'Network'
Get-ClusterNetworkInterface
Rollback Plan
Restore saved NIC configs if performance or connectivity regresses.
netsh interface ipv4 dump > C:Tempipv4-before.txt
# restore from previous dump if required
Prevention & Hardening
Use golden host baseline for firmware, MTU, and teaming policy.
Get-NetAdapter | Select Name,DriverVersion,LinkSpeed | Export-Csv C:Tempcluster-nic-baseline.csv -NoTypeInformation
Related Errors & Cross-Refs
Can overlap with live migration failures and CSV redirected I/O spikes.
Related tutorial: View the step-by-step tutorial for Windows Server 2022.
View all Windows Server 2022 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn cluster validation guidance for Windows Server 2022.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.