Skip to content

Commit 6c2054d

Browse files
Merge pull request #248879 from cherylmc/classic
freshness review + pencil edits
2 parents da329b8 + c1d7786 commit 6c2054d

7 files changed

+17
-17
lines changed

articles/vpn-gateway/vpn-gateway-classic-resource-manager-migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: vpn-gateway
66
author: cherylmc
77
ms.service: vpn-gateway
88
ms.topic: how-to
9-
ms.date: 06/09/2023
9+
ms.date: 08/21/2023
1010
ms.author: cherylmc
1111

1212
---

articles/vpn-gateway/vpn-gateway-delete-vnet-gateway-classic-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ author: cherylmc
66
ms.service: vpn-gateway
77
ms.custom:
88
ms.topic: how-to
9-
ms.date: 06/09/2023
9+
ms.date: 08/21/2023
1010
ms.author: cherylmc
1111
---
1212
# Delete a virtual network gateway using PowerShell (classic)
1313

1414
This article helps you delete a VPN gateway in the classic (legacy) deployment model by using PowerShell. After the virtual network gateway has been deleted, modify the network configuration file to remove elements that you're no longer using.
1515

16-
The steps in this article apply to the classic deployment model and don't apply to the current deployment model, Resource Manager. Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-delete-vnet-gateway-powershell.md).
16+
The steps in this article apply to the classic deployment model and don't apply to the current deployment model, Resource Manager. **Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-delete-vnet-gateway-powershell.md)**.
1717

1818
## <a name="connect"></a>Step 1: Connect to Azure
1919

articles/vpn-gateway/vpn-gateway-delete-vnet-gateway-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure VPN Gateway
44
description: Learn how to delete a virtual network gateway using PowerShell.
55
author: cherylmc
66
ms.service: vpn-gateway
7-
ms.date: 04/29/2021
7+
ms.date: 08/21/2023
88
ms.author: cherylmc
99
ms.topic: how-to
1010
ms.custom: devx-track-azurepowershell
@@ -114,7 +114,7 @@ Get the IP configurations of the virtual network gateway.
114114
$GWIpConfigs = $Gateway.IpConfigurations
115115
```
116116

117-
Get the list of Public IP address resources used for this virtual network gateway. If the virtual network gateway was active-active, you will see two Public IP addresses.
117+
Get the list of Public IP address resources used for this virtual network gateway. If the virtual network gateway was active-active, you'll see two Public IP addresses.
118118

119119
```powershell
120120
$PubIP=Get-AzPublicIpAddress | where-object {$_.Id -In $GWIpConfigs.PublicIpAddress.Id}
@@ -169,7 +169,7 @@ Because this is a VNet-to-VNet configuration, you need the list of connections i
169169
$ConnsL=get-Azvirtualnetworkgatewayconnection -ResourceGroupName "RG1" | where-object {$_.VirtualNetworkGateway1.Id -eq $GW.Id}
170170
```
171171

172-
In this example, we are checking for connections from RG2. Run this for each resource group that you have which may have a connection to the virtual network gateway.
172+
In this example, we're checking for connections from RG2. Run this for each resource group that you have which may have a connection to the virtual network gateway.
173173

174174
```powershell
175175
$ConnsR=get-Azvirtualnetworkgatewayconnection -ResourceGroupName "<NameOfResourceGroup2>" | where-object {$_.VirtualNetworkGateway2.Id -eq $GW.Id}
@@ -261,7 +261,7 @@ Get the IP configurations of the virtual network gateway.
261261
$GWIpConfigs = $Gateway.IpConfigurations
262262
```
263263

264-
Get the list of Public IP addresses used for this virtual network gateway. If the virtual network gateway was active-active, you will see two Public IP addresses.
264+
Get the list of Public IP addresses used for this virtual network gateway. If the virtual network gateway was active-active, you'll see two Public IP addresses.
265265

266266
```powershell
267267
$PubIP=Get-AzPublicIpAddress | where-object {$_.Id -In $GWIpConfigs.PublicIpAddress.Id}
@@ -282,7 +282,7 @@ Set-AzVirtualNetwork -VirtualNetwork $GWSub
282282

283283
## <a name="delete"></a>Delete a VPN gateway by deleting the resource group
284284

285-
If you are not concerned about keeping any of your resources in the resource group and you just want to start over, you can delete an entire resource group. This is a quick way to remove everything. The following steps apply only to the [Resource Manager deployment model](../azure-resource-manager/management/deployment-models.md).
285+
If you aren't concerned about keeping any of your resources in the resource group and you just want to start over, you can delete an entire resource group. This is a quick way to remove everything. The following steps apply only to the [Resource Manager deployment model](../azure-resource-manager/management/deployment-models.md).
286286

287287
### 1. Get a list of all the resource groups in your subscription.
288288

@@ -300,7 +300,7 @@ Find-AzResource -ResourceGroupNameContains RG1
300300

301301
### 3. Verify the resources in the list.
302302

303-
When the list is returned, review it to verify that you want to delete all the resources in the resource group, as well as the resource group itself. If you want to keep some of the resources in the resource group, use the steps in the earlier sections of this article to delete your gateway.
303+
When the list is returned, review it to verify that you want to delete all the resources in the resource group, and the resource group itself. If you want to keep some of the resources in the resource group, use the steps in the earlier sections of this article to delete your gateway.
304304

305305
### 4. Delete the resource group and resources.
306306

articles/vpn-gateway/vpn-gateway-howto-point-to-site-classic-azure-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ description: Learn how to create a classic Point-to-Site VPN Gateway connection
55
author: cherylmc
66
ms.service: vpn-gateway
77
ms.topic: how-to
8-
ms.date: 06/09/2023
8+
ms.date: 08/21/2023
99
ms.author: cherylmc
1010

1111
---
1212
# Configure a Point-to-Site connection by using certificate authentication (classic)
1313

14-
This article shows you how to create a VNet with a Point-to-Site connection using the classic (legacy) deployment model. This configuration uses certificates to authenticate the connecting client, either self-signed or CA issued. Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-howto-point-to-site-resource-manager-portal.md).
14+
This article shows you how to create a VNet with a Point-to-Site connection using the classic (legacy) deployment model. This configuration uses certificates to authenticate the connecting client, either self-signed or CA issued. **Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-howto-point-to-site-resource-manager-portal.md)**.
1515

1616
You use a Point-to-Site (P2S) VPN gateway to create a secure connection to your virtual network from an individual client computer. Point-to-Site VPN connections are useful when you want to connect to your VNet from a remote location. When you have only a few clients that need to connect to a VNet, a P2S VPN is a useful solution to use instead of a Site-to-Site VPN. A P2S VPN connection is established by starting it from the client computer.
1717

articles/vpn-gateway/vpn-gateway-howto-site-to-site-classic-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ author: cherylmc
66
ms.service: vpn-gateway
77
ms.custom:
88
ms.topic: how-to
9-
ms.date: 06/09/2023
9+
ms.date: 08/21/2023
1010
ms.author: cherylmc
1111
---
1212
# Create a Site-to-Site connection using the Azure portal (classic)
1313

14-
This article shows you how to use the Azure portal to create a Site-to-Site VPN gateway connection from your on-premises network to the VNet. The steps in this article apply to the classic (legacy) deployment model and don't apply to the current deployment model, Resource Manager. Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](./tutorial-site-to-site-portal.md).
14+
This article shows you how to use the Azure portal to create a Site-to-Site VPN gateway connection from your on-premises network to the VNet. The steps in this article apply to the classic (legacy) deployment model and don't apply to the current deployment model, Resource Manager. **Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](./tutorial-site-to-site-portal.md)**.
1515

1616
A Site-to-Site VPN gateway connection is used to connect your on-premises network to an Azure virtual network over an IPsec/IKE (IKEv1 or IKEv2) VPN tunnel. This type of connection requires a VPN device located on-premises that has an externally facing public IP address assigned to it. For more information about VPN gateways, see [About VPN gateway](vpn-gateway-about-vpngateways.md).
1717

articles/vpn-gateway/vpn-gateway-howto-vnet-vnet-portal-classic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ author: cherylmc
66
ms.service: vpn-gateway
77
ms.custom:
88
ms.topic: how-to
9-
ms.date: 06/09/2023
9+
ms.date: 08/21/2023
1010
ms.author: cherylmc
1111
---
1212
# Configure a VNet-to-VNet connection (classic)
1313

1414
This article helps you create a VPN gateway connection between virtual networks. The virtual networks can be in the same or different regions, and from the same or different subscriptions.
1515

16-
The steps in this article apply to the classic (legacy) deployment model and don't apply to the current deployment model, Resource Manager. Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-howto-vnet-vnet-resource-manager-portal.md).
16+
The steps in this article apply to the classic (legacy) deployment model and don't apply to the current deployment model, Resource Manager. **Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-howto-vnet-vnet-resource-manager-portal.md).**
1717

1818
:::image type="content" source="./media/vpn-gateway-howto-vnet-vnet-portal-classic/classic-diagram.png" alt-text="Diagram showing classic VNet-to-VNet architecture.":::
1919

articles/vpn-gateway/vpn-gateway-multi-site.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ author: cherylmc
66
ms.service: vpn-gateway
77
ms.custom:
88
ms.topic: how-to
9-
ms.date: 06/09/2023
9+
ms.date: 08/21/2023
1010
ms.author: cherylmc
1111
---
1212
# Add a Site-to-Site connection to a VNet with an existing VPN gateway connection (classic)
1313

1414
This article walks you through using PowerShell to add Site-to-Site (S2S) connections to a VPN gateway that has an existing connection using the classic (legacy) deployment model. This type of connection is sometimes referred to as a "multi-site" configuration. These steps don't apply to ExpressRoute/Site-to-Site coexisting connection configurations.
1515

16-
The steps in this article apply to the classic (legacy) deployment model and don't apply to the current deployment model, Resource Manager. Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-howto-multi-site-to-site-resource-manager-portal.md).
16+
The steps in this article apply to the classic (legacy) deployment model and don't apply to the current deployment model, Resource Manager. **Unless you want to work in the classic deployment model specifically, we recommend that you use the [Resource Manager version of this article](vpn-gateway-howto-multi-site-to-site-resource-manager-portal.md)**.
1717

1818
[!INCLUDE [deployment models](../../includes/vpn-gateway-classic-deployment-model-include.md)]
1919

0 commit comments

Comments
 (0)