Skip to content

Commit f18c9f3

Browse files
committed
corrections
1 parent 5e57876 commit f18c9f3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/route-server/quickstart-configure-route-server-powershell.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: 'Quickstart: Create an Azure Route Server - Azure PowerShell'
2+
title: 'Quickstart: Create an Azure Route Server - PowerShell'
33
description: In this quickstart, you learn how to create an Azure Route Server using Azure PowerShell.
44
author: halkazwini
55
ms.author: halkazwini
66
ms.service: azure-route-server
77
ms.topic: quickstart
8-
ms.date: 09/19/2024
8+
ms.date: 09/20/2024
99
ms.custom: devx-track-azurepowershell, mode-api
1010
---
1111

12-
# Quickstart: Create an Azure Route Server using Azure PowerShell
12+
# Quickstart: Create an Azure Route Server using PowerShell
1313

1414
In this quickstart, you learn how to create an Azure Route Server to peer with a Network Virtual Appliance (NVA) in your virtual network using Azure PowerShell.
1515

@@ -33,11 +33,11 @@ In this quickstart, you learn how to create an Azure Route Server to peer with a
3333

3434
In this section, you create a route server. Prior to creating the route server, you create a resource group to host all resources including the route server. You'll also create a virtual network with a dedicated subnet for the route server.
3535

36-
1. Create a a resource group using [New-AzResourceGroup](/powershell/module/az.Resources/New-azResourceGroup). The following example creates a resource group named **myRouteServerRG** in the **WestUS** region:
36+
1. Create a a resource group using [New-AzResourceGroup](/powershell/module/az.Resources/New-azResourceGroup). The following example creates a resource group named **RouteServerRG** in the **WestUS** region:
3737

3838
```azurepowershell-interactive
3939
# Create a resource group.
40-
New-AzResourceGroup = -Name 'myRouteServerRG' -Location 'WestUS'
40+
New-AzResourceGroup = -Name 'RouteServerRG' -Location 'WestUS'
4141
```
4242
4343
1. The route server requires a dedicated subnet named *RouteServerSubnet*. The subnet size has to be at least /27 or shorter prefix (such as /26 or /25) or you'll receive an error message when deploying the route server. Create a subnet configuration for **RouteServerSubnet** using [New-AzVirtualNetworkSubnetConfig](/powershell/module/az.network/new-azvirtualnetworksubnetconfig).

0 commit comments

Comments
 (0)