You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/route-server/quickstart-create-route-server-cli.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
title: 'Quickstart: Create an Azure Route Server - Azure CLI'
3
-
description: In this quickstart, you learn how to create an Azure Route Server using the Azure CLI.
3
+
description: In this quickstart, you learn how to create an Azure Route Server and peer it with an NVA using the Azure CLI.
4
4
author: halkazwini
5
5
ms.author: halkazwini
6
6
ms.service: azure-route-server
7
7
ms.topic: quickstart
8
-
ms.date: 02/10/2025
8
+
ms.date: 02/26/2025
9
9
ms.custom: mode-api, devx-track-azurecli
10
10
ms.devlang: azurecli
11
11
---
@@ -14,7 +14,7 @@ ms.devlang: azurecli
14
14
15
15
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 the Azure CLI.
16
16
17
-
:::image type="content" source="./media/environment-diagram.png" alt-text="Diagram of Route Server deployment environment using the Azure CLI.":::
17
+
:::image type="content" source="./media/route-server-diagram.png" alt-text="Diagram of Route Server deployment environment using the Azure CLI.":::
18
18
19
19
[!INCLUDE [route server preview note](../../includes/route-server-note-preview-date.md)]
20
20
@@ -34,34 +34,34 @@ In this quickstart, you learn how to create an Azure Route Server to peer with a
34
34
35
35
In this section, you create a route server. Prior to creating the route server, create a resource group to host all resources including the route server. You'll also need to create a virtual network with a dedicated subnet for the route server.
36
36
37
-
1. Create a resource group using [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group named **RouteServerRG** in the **WestUS** region:
37
+
1. Create a resource group using [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group named **myResourceGroup** in the **EastUS** region:
38
38
39
39
```azurecli-interactive
40
40
# Create a resource group.
41
-
az group create --name 'RouteServerRG' --location 'westus'
41
+
az group create --name 'myResourceGroup' --location 'eastus'
42
42
```
43
43
44
-
1. Create a virtual network using [az network vnet create](/cli/azure/network/vnet#az-network-vnet-create) command. The following example creates a default virtual network named **myRouteServerVNet** in the **WestUS** region with **RouteServerSubnet** subnet. The route server requires a dedicated subnet named *RouteServerSubnet*. Please configure a subnet size of minimum /26 or larger.
44
+
1. Create a virtual network using [az network vnet create](/cli/azure/network/vnet#az-network-vnet-create) command. The following example creates a default virtual network named **myVirtualNetwork** in the **EastUS** region with **RouteServerSubnet** subnet. The route server requires a dedicated subnet named *RouteServerSubnet*. Please configure a subnet size of minimum /26 or larger.
45
45
46
46
```azurecli-interactive
47
47
# Create a virtual network and a route server subnet.
subnetId=$(az network vnet subnet show --name 'RouteServerSubnet' --resource-group 'RouteServerRG' --vnet-name 'myRouteServerVNet' --query id -o tsv)
50
+
subnetId=$(az network vnet subnet show --name 'RouteServerSubnet' --resource-group 'myResourceGroup' --vnet-name 'myVirtualNetwork' --query id -o tsv)
51
51
```
52
52
53
53
1. To ensure connectivity to the backend service that manages Route Server configuration, assigning a public IP address is required. Create a Standard Public IP named **RouteServerIP** using [az network public-ip create](/cli/azure/network/public-ip#az-network-public-ip-create) command.
54
54
55
55
```azurecli-interactive
56
56
# Create a Standard public IP.
57
-
az network public-ip create --resource-group 'RouteServerRG' --name 'RouteServerIP' --sku Standard --version 'IPv4'
57
+
az network public-ip create --resource-group 'myResourceGroup' --name 'RouteServerIP' --sku Standard --version 'IPv4'
58
58
```
59
59
60
-
1. Create the route server using [az network routeserver create](/cli/azure/network/routeserver#az-network-routeserver-create) command. The following example creates a route server named **myRouteServer** in the **WestUS** region. The *HostedSubnet* is the resource ID of the RouteServerSubnet created in the previous steps.
60
+
1. Create the route server using [az network routeserver create](/cli/azure/network/routeserver#az-network-routeserver-create) command. The following example creates a route server named **myRouteServer** in the **EastUS** region. The *HostedSubnet* is the resource ID of the RouteServerSubnet created in the previous steps.
0 commit comments