Skip to content

Commit ce588ac

Browse files
committed
pencil edits
1 parent 6b36984 commit ce588ac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/vpn-gateway/vpn-gateway-vnet-vnet-rm-ps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ author: cherylmc
66
ms.service: vpn-gateway
77
ms.custom: devx-track-azurepowershell
88
ms.topic: how-to
9-
ms.date: 08/21/2023
9+
ms.date: 08/22/2023
1010
ms.author: cherylmc
1111
---
1212
# Configure a VNet-to-VNet VPN gateway connection using PowerShell
1313

14-
This article helps you connect virtual networks by using the VNet-to-VNet connection type. The virtual networks can be in the same or different regions, and from the same or different subscriptions. When connecting virtual networks from different subscriptions, the subscriptions don't need to be associated with the same Active Directory tenant.
14+
This article helps you connect virtual networks by using the VNet-to-VNet connection type. The virtual networks can be in the same or different regions, and from the same or different subscriptions. When you connect virtual networks from different subscriptions, the subscriptions don't need to be associated with the same Active Directory tenant.
1515

1616
The steps in this article apply to the [Resource Manager deployment model](../azure-resource-manager/management/deployment-models.md) and use PowerShell. You can also create this configuration using a different deployment tool or deployment model by selecting a different option from the following list:
1717

@@ -139,7 +139,7 @@ For the following steps, you can either use Azure Cloud Shell, or you can run Po
139139

140140
1. Create the subnet configurations for TestVNet1. This example creates a virtual network named TestVNet1 and two subnets, one called GatewaySubnet, and one called FrontEnd. 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. For this reason, it isn't assigned via variable in the example.
141141

142-
The following example uses the variables that you set earlier. In this example, the gateway subnet is using a /27. While it's possible to create a gateway subnet as small as /29, we recommend that you create a larger subnet that includes more addresses by selecting at least /27. This will allow for enough addresses to accommodate possible additional configurations that you may want in the future.
142+
The following example uses the variables that you set earlier. In this example, the gateway subnet is using a /27. While it's possible to create a gateway subnet using /28 for this configuration, we recommend that you create a larger subnet that includes more addresses by selecting at least /27. This will allow for enough addresses to accommodate possible additional configurations that you may want in the future.
143143

144144
```azurepowershell-interactive
145145
$fesub1 = New-AzVirtualNetworkSubnetConfig -Name $FESubName1 -AddressPrefix $FESubPrefix1
@@ -261,7 +261,7 @@ Wait until both gateways are completed. Restart your Azure Cloud Shell session a
261261
-ConnectionType Vnet2Vnet -SharedKey 'AzureA1b2C3'
262262
```
263263

264-
1. Create the TestVNet4 to TestVNet1 connection. This step is similar to the one above, except you're creating the connection from TestVNet4 to TestVNet1. Make sure the shared keys match. The connection will be established after a few minutes.
264+
1. Create the TestVNet4 to TestVNet1 connection. This step is similar to previous step, except you're creating the connection from TestVNet4 to TestVNet1. Make sure the shared keys match. The connection will be established after a few minutes.
265265

266266
```azurepowershell-interactive
267267
New-AzVirtualNetworkGatewayConnection -Name $Connection41 -ResourceGroupName $RG4 `
@@ -281,7 +281,7 @@ Due to changing subscription context in this exercise, you may find it easier to
281281

282282
### Step 5 - Create and configure TestVNet1
283283

284-
You must complete [Step 1](#Step1) and [Step 2](#Step2) from the previous section to create and configure TestVNet1 and the VPN Gateway for TestVNet1. For this configuration, you aren't required to create TestVNet4 from the previous section, although if you do create it, it will not conflict with these steps. Once you complete Step 1 and Step 2, continue with Step 6 to create TestVNet5.
284+
You must complete [Step 1](#Step1) and [Step 2](#Step2) from the previous section to create and configure TestVNet1 and the VPN Gateway for TestVNet1. For this configuration, you aren't required to create TestVNet4 from the previous section, although if you do create it, it won't conflict with these steps. Once you complete Step 1 and Step 2, continue with Step 6 to create TestVNet5.
285285

286286
### Step 6 - Verify the IP address ranges
287287

@@ -463,7 +463,7 @@ In this example, because the gateways are in the different subscriptions, we've
463463

464464
## <a name="faq"></a>VNet-to-VNet FAQ
465465

466-
For additional information about VNet-to-VNet connections, see the [VPN Gateway FAQ](vpn-gateway-vpn-faq.md#V2VMulti).
466+
For more information about VNet-to-VNet connections, see the [VPN Gateway FAQ](vpn-gateway-vpn-faq.md#V2VMulti).
467467

468468
## Next steps
469469

0 commit comments

Comments
 (0)