An Azure service that enables the connection of on-premises networks to Azure through site-to-site virtual private networks.
Welcome to Microsoft Q&A.
@Jorge Villon, Jr I hope you are doing well,
Yes. If your current gateway is using a supported non-AZ SKU such as VpnGw2, already has a Standard public IP, and VpnGw2AZ appears in the SKU dropdown, you can perform the migration directly from the Azure portal.
The procedure is:
- Open the Virtual network gateway in the Azure portal.
Select Configuration.
Under SKU, select VpnGw2AZ.
Select Save.
Microsoft documents this as the supported upgrade path for moving from a non-AZ SKU to its corresponding AZ SKU:
https://learn.microsoft.com/en-us/azure/vpn-gateway/gateway-sku-upgrade
For a migration within the same SKU tier, such as:
VpnGw2 → VpnGw2AZ
Microsoft states that no downtime is expected when the gateway uses a Standard public IP address. The upgrade itself can take approximately 45 minutes.
Your existing public IP address does not need to be replaced for this migration.
One important distinction: if you were moving to a different SKU family or tier, the behavior can be different and downtime may occur. Microsoft documents those migration scenarios separately:
https://learn.microsoft.com/en-us/azure/vpn-gateway/gateway-sku-consolidation
Since VpnGw2AZ is already available in your portal, that is a good indication that the gateway is eligible for this particular upgrade.
You can also verify the current SKU with Azure CLI:
az network vnet-gateway show \
--name "<gateway-name>" \
--resource-group "<resource-group>" \
--query "sku.name"
Microsoft documentation
Upgrade a VPN Gateway SKU https://learn.microsoft.com/en-us/azure/vpn-gateway/gateway-sku-upgrade
VPN Gateway SKU consolidation and migration https://learn.microsoft.com/en-us/azure/vpn-gateway/gateway-sku-consolidation
Create and manage a VPN gateway using the Azure portal https://learn.microsoft.com/en-us/azure/vpn-gateway/tutorial-create-gateway-portal
- Related Microsoft Q&A discussion this was a previus question answered by me with some useful links https://learn.microsoft.com/en-us/answers/questions/5984005/the-portal-generated-vpngw1-vpngw1az-upgrade-repea
Given the September 30, 2026 retirement of the non-AZ VpnGw1-5 SKUs, I would recommend completing the migration rather than waiting for the automatic migration process.
If this answer helped clarify the platform capabilities and save you troubleshooting time, please consider marking it as Accepted. This helps others in the community find similar solutions.