I understand that you're having a tough time with your VPN Gateway since it's not responding to reset requests, and there's a possibility that the P2S configuration is still pending. Here are some suggestions you can try:
- Check Status: First, verify the status of your VPN Gateway from the Azure portal. Check if there's any indication that the P2S configuration is still in progress or if there are any error messages that could provide more insight.
- Force a check on Pending Operations: Sometimes, operations can get stuck. You might want to try refreshing the portal or using Azure PowerShell or CLI to check if there are any pending operations. You can use:
Get-AzVirtualNetworkGateway -Name <YourGatewayName> -ResourceGroupName <YourResourceGroupName>
- Reset VPN Gateway Using PowerShell or CLI: If the status shows that there's no longer a pending operation but the reset still doesn’t work, you can force a reset through PowerShell or the Azure CLI.
- PowerShell:
Reset-AzVirtualNetworkGateway -ResourceGroupName <YourResourceGroupName> -Name <YourGatewayName>
- PowerShell:
- Azure CLI:
az network vnet-gateway restart --name <YourGatewayName> --resource-group <YourResourceGroupName>
Kindly let us know if the above helps or you need further assistance on this issue.
Please do not forget to "Accept the answer” and “Yes” wherever the information provided helps you, this can be beneficial to other community members.