Hi Ian Maddox,
Welcome to the Azure Q&A portal.
This error typically means that Network ATC failed to apply the storage intent due to a configuration inconsistency or a blocked provisioning state.
To troubleshoot the NetworkAtc ProvisioningFailed error on your Azure Local Cluster, consider the following steps:
1.Check the Cluster State
- Ensure both nodes are in a healthy state and check the network configuration using PowerShell:
Get-ClusterNode | Get-ClusterResource
2.Validate Network Configuration
- Make sure that the virtual switch and the network adapter settings are correct. Check if the storage network is configured correctly on both nodes:
Get-NetAdapter | Where-Object {$_.Status -eq 'Up'}
3.Assign Retry State Again
- As you have already tried Set-NetIntentRetryState, ensure you use the correct parameters:
Set-NetIntentRetryState -NodeName "YourNodeName" -RetryState 0
- This can help reset the provisioning state.
4.Check Storage Connectivity
- Confirm that the storage is accessible from both nodes.
Use:ReplaceTest-Path \<StoragePath>
<StoragePath>
with your actual storage path.
5.Consider Node Reboot
- If the above steps don’t resolve the issue, a node reboot may be necessary as it can reset the network drivers and refresh settings.
Restart-Computer -ComputerName "YourNodeName" -Force
6.Check Logs for Errors
- Look into the Event Viewer logs (
Applications and Services Logs > Microsoft > Windows > FailoverClustering > Operational
) for more specific error messages related to networking or storage that might illuminate the problem.
Please refer https://docs.azure.cn/en-us/azure-local/manage/cluster-powershell