Skip to content

Commit aea3330

Browse files
committed
freshness review
1 parent fdb9879 commit aea3330

8 files changed

+15
-15
lines changed

articles/vpn-gateway/about-site-to-site-tunneling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ titleSuffix: Azure VPN Gateway
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: concept-article
8-
ms.date: 09/22/2023
8+
ms.date: 03/31/2025
99
ms.author: cherylmc
1010
---
1111

@@ -38,7 +38,7 @@ You can configure forced tunneling by setting the Default Site for your route-ba
3838

3939
By default, all Internet-bound traffic goes directly to the Internet if you don't have forced tunneling configured. When forced tunneling is configured, all Internet-bound traffic is sent to your on-premises location.
4040

41-
In some cases, you may want Internet-bound traffic only from certain subnets (but not all subnets) to traverse from the Azure network infrastructure directly out to the Internet, rather than to your on-premises location. This scenario can be configured using a combination of forced tunneling and virtual network custom user-defined routes (UDRs). For steps, see [Route Internet-bound traffic for specific subnets](site-to-site-tunneling.md#udr).
41+
In some cases, you might want Internet-bound traffic only from certain subnets (but not all subnets) to traverse from the Azure network infrastructure directly out to the Internet, rather than to your on-premises location. This scenario can be configured using a combination of forced tunneling and virtual network custom user-defined routes (UDRs). For steps, see [Route Internet-bound traffic for specific subnets](site-to-site-tunneling.md#udr).
4242

4343
## Next steps
4444

articles/vpn-gateway/about-zone-redundant-vnet-gateways.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ titleSuffix: Azure VPN Gateway
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: how-to
8-
ms.date: 12/04/2023
8+
ms.date: 03/31/2025
99
ms.author: cherylmc
1010
---
1111
# About zone-redundant virtual network gateway in Azure availability zones

articles/vpn-gateway/monitor-vpn-gateway.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Monitor Azure VPN Gateway
33
description: Start here to learn how to monitor Azure VPN Gateway by using Azure Monitor metrics and resource logs.
4-
ms.date: 07/26/2024
4+
ms.date: 03/31/2025
55
ms.custom: horz-monitor
66
ms.topic: conceptual
77
author: cherylmc

articles/vpn-gateway/packet-capture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about packet capture functionality that you can use on VPN ga
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: how-to
8-
ms.date: 08/24/2023
8+
ms.date: 03/31/2025
99
ms.author: cherylmc
1010
---
1111

articles/vpn-gateway/vpn-gateway-download-vpndevicescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ titleSuffix: Azure VPN Gateway
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: how-to
8-
ms.date: 03/18/2024
8+
ms.date: 03/31/2025
99
ms.author: cherylmc
1010
ms.custom: devx-track-azurepowershell
1111

articles/vpn-gateway/vpn-gateway-ipsecikepolicy-rm-powershell.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to configure IPsec/IKE custom policy for S2S or VNet-to-V
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: how-to
8-
ms.date: 05/29/2024
8+
ms.date: 03/31/2025
99
ms.author: cherylmc
1010
ms.custom: devx-track-azurepowershell
1111

@@ -100,7 +100,7 @@ $LNGIP6 = "131.107.72.22"
100100

101101
#### 2. Create the virtual network, VPN gateway, and local network gateway
102102

103-
The following samples create the virtual network, TestVNet1, with three subnets, and the VPN gateway. When substituting values, it's important that you always name your gateway subnet specifically GatewaySubnet. If you name it something else, your gateway creation fails. It can take 45 minutes or more for the virtual network gateway to create. During this time, if you are using Azure Cloud Shell, your connection may time out. This doesn't affect the gateway create command.
103+
The following samples create the virtual network, TestVNet1, with three subnets, and the VPN gateway. When substituting values, it's important that you always name your gateway subnet specifically GatewaySubnet. If you name it something else, your gateway creation fails. It can take 45 minutes or more for the virtual network gateway to create. During this time, if you're using Azure Cloud Shell, your connection might time out. This doesn't affect the gateway create command.
104104

105105
```azurepowershell-interactive
106106
New-AzResourceGroup -Name $RG1 -Location $Location1
@@ -119,7 +119,7 @@ $gw1ipconf1 = New-AzVirtualNetworkGatewayIpConfig -Name $GW1IPconf1 -Subnet $sub
119119
New-AzVirtualNetworkGateway -Name $GWName1 -ResourceGroupName $RG1 -Location $Location1 -IpConfigurations $gw1ipconf1 -GatewayType Vpn -VpnType RouteBased -GatewaySku VpnGw1
120120
```
121121

122-
Create the local network gateway. You may need to reconnect and declare the following variables again if Azure Cloud Shell timed out.
122+
Create the local network gateway. You might need to reconnect and declare the following variables again if Azure Cloud Shell timed out.
123123

124124
Declare variables.
125125

@@ -172,7 +172,7 @@ You can optionally add "-UsePolicyBasedTrafficSelectors $True" to the create con
172172
> Once an IPsec/IKE policy is specified on a connection, the Azure VPN gateway will only send or accept
173173
> the IPsec/IKE proposal with specified cryptographic algorithms and key strengths on that particular
174174
> connection. Make sure your on-premises VPN device for the connection uses or accepts the exact
175-
> policy combination, otherwise the S2S VPN tunnel will not establish.
175+
> policy combination, otherwise the S2S VPN tunnel won't establish.
176176
177177
## <a name ="vnet2vnet"></a>Create a VNet-to-VNet connection with IPsec/IKE policy
178178

@@ -229,7 +229,7 @@ It can take about 45 minutes or more to create the VPN gateway.
229229

230230
### Step 2: Create a VNet-toVNet connection with the IPsec/IKE policy
231231

232-
Similar to the S2S VPN connection, create an IPsec/IKE policy, then apply the policy to the new connection. If you used Azure Cloud Shell, your connection may have timed out. If so, re-connect and state the necessary variables again.
232+
Similar to the S2S VPN connection, create an IPsec/IKE policy, then apply the policy to the new connection. If you used Azure Cloud Shell, your connection might have timed out. If so, re-connect and state the necessary variables again.
233233

234234
```azurepowershell-interactive
235235
$GWName1 = "VNet1GW"
@@ -270,7 +270,7 @@ New-AzVirtualNetworkGatewayConnection -Name $Connection21 -ResourceGroupName $RG
270270
> Once an IPsec/IKE policy is specified on a connection, the Azure VPN gateway will only send or accept
271271
> the IPsec/IKE proposal with specified cryptographic algorithms and key strengths on that particular
272272
> connection. Make sure the IPsec policies for both connections are the same, otherwise the
273-
> VNet-to-VNet connection will not establish.
273+
> VNet-to-VNet connection won't establish.
274274
275275
After you complete these steps, the connection is established in a few minutes, and you'll have the following network topology as shown in the beginning:
276276

@@ -287,7 +287,7 @@ The last section shows you how to manage IPsec/IKE policy for an existing S2S or
287287
The same steps apply to both S2S and VNet-to-VNet connections.
288288

289289
> [!IMPORTANT]
290-
> IPsec/IKE policy is supported on *Standard* and *HighPerformance* route-based VPN gateways only. It does not work on the Basic gateway SKU or the policy-based VPN gateway.
290+
> IPsec/IKE policy is supported on *Standard* and *HighPerformance* route-based VPN gateways only. It doesn't work on the Basic gateway SKU or the policy-based VPN gateway.
291291
292292
### 1. Show an IPsec/IKE policy for a connection
293293

articles/vpn-gateway/vpn-profile-intune.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to create an Intune custom profile to deploy Azure VPN cl
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: how-to
8-
ms.date: 07/28/2023
8+
ms.date: 03/31/2025
99
ms.author: cherylmc
1010

1111
---

articles/vpn-gateway/work-remotely-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how you can use VPN Gateway point-to-site connections in orde
55
author: cherylmc
66
ms.service: azure-vpn-gateway
77
ms.topic: concept-article
8-
ms.date: 07/10/2024
8+
ms.date: 03/31/2025
99
ms.author: cherylmc
1010

1111
---

0 commit comments

Comments
 (0)