Skip to content

Commit c7c8d80

Browse files
Merge pull request #310840 from cherylmc/psBasic
Update the Basic public IP address requirement to Static Standard.
2 parents cd82ab0 + ff5ca51 commit c7c8d80

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

articles/vpn-gateway/create-gateway-basic-sku-powershell.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to create a Basic SKU virtual network gateway for a VPN c
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: how-to
8-
ms.date: 03/31/2025
8+
ms.date: 01/23/2026
99
ms.author: cherylmc
1010
ms.custom: devx-track-azurepowershell
1111
# Customer intent: "As a network engineer, I want to create a Basic SKU VPN gateway using PowerShell, so that I can establish a secure connection between my virtual network and on-premises infrastructure or other virtual networks."
@@ -16,7 +16,7 @@ ms.custom: devx-track-azurepowershell
1616
This article helps you create a Basic SKU Azure VPN gateway using PowerShell. The VPN gateway you create can be either RouteBased, or PolicyBased, depending on your connection requirements. A VPN gateway is used when creating a VPN connection to your on-premises network. You can also use a VPN gateway to connect VNets.
1717

1818
> [!IMPORTANT]
19-
> The Basic SKU has certain feature and performance limitations and shouldn't be used for production purposes. For more information about SKUs, see [About gateway SKUs](about-gateway-skus.md).
19+
> The Basic SKU has certain feature and performance limitations and shouldn't be used for production purposes. For more information about gateway SKUs, see [About gateway SKUs](about-gateway-skus.md).
2020
2121
:::image type="content" source="./media/create-gateway-basic-sku/gateway-diagram.png" alt-text="Diagram that shows a virtual network and a VPN gateway." lightbox="./media/create-gateway-basic-sku/gateway-diagram-expand.png":::
2222

@@ -96,10 +96,10 @@ $vnet | Set-AzVirtualNetwork
9696

9797
## <a name="PublicIP"></a>Request a public IP address
9898

99-
Each VPN gateway must have an allocated public IP address. At this time, Basic SKU VPN gateways still use **Dynamic** allocation method public IP address and the **Basic** public IP address SKU. These requirements are different from other VPN Gateway SKUs.
99+
Each VPN gateway must have an allocated public IP address. At this time, new Basic SKU VPN gateways use the **Static** allocation method for public IP address and the **Standard** public IP address SKU. These requirements may be different from previously created Basic SKU VPN gateways. Use the following example to create a public IP address for your VPN gateway.
100100

101101
```azurepowershell-interactive
102-
$gwpip = New-AzPublicIpAddress -Name "VNet1GWIP" -ResourceGroupName "TestRG1" -Location "EastUS" -AllocationMethod Dynamic -Sku Basic
102+
$gwpip = New-AzPublicIpAddress -Name "VNet1GWIP" -ResourceGroupName "TestRG1" -Location "EastUS" -AllocationMethod Static -Sku Standard -Zone 1,2,3
103103
```
104104

105105
## <a name="GatewayIPConfig"></a>Create the gateway IP address configuration
@@ -154,4 +154,4 @@ Once the gateway finishes creating, you can create a connection between your vir
154154

155155
* [Add or remove a site-to-site connection](add-remove-site-to-site-connections.md)
156156
* [Create a point-to-site connection](vpn-gateway-howto-point-to-site-rm-ps.md)
157-
* [Create a connection to another virtual network](vpn-gateway-vnet-vnet-rm-ps.md)
157+
* [Create a connection to another virtual network](vpn-gateway-vnet-vnet-rm-ps.md)

includes/vpn-gateway-basic-sku-limitations.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ ms.service: azure-vpn-gateway
66
ms.topic: include
77
---
88

9-
* A Basic SKU VPN gateway uses a Basic SKU public IP address, not Standard.
10-
* The public IP address allocation method for a Basic SKU VPN gateway must be Dynamic, not Static.
119
* The Basic SKU can only be configured using PowerShell or Azure CLI.
1210
* The Basic SKU doesn't support IPv6.
1311
* The Basic SKU doesn't support RADIUS authentication.

0 commit comments

Comments
 (0)