Skip to content

Commit 7783e01

Browse files
committed
tweaks to the CLI quickstart
1 parent 73ecc4d commit 7783e01

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,14 @@ In this quickstart, you learn how to create an Azure Route Server to peer with a
3434

3535
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.
3636

37-
1. Create a resource group using [az group create](/cli/azure/group#az-group-create). 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 **RouteServerRG** in the **WestUS** region:
3838

3939
```azurecli-interactive
40+
# Create a resource group.
4041
az group create --name 'RouteServerRG' --location 'westus'
4142
```
4243
43-
1. Create a virtual network using [az network vnet create](/cli/azure/network/vnet#az-network-vnet-create). 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*. 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.
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*. 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.
4445
4546
```azurecli-interactive
4647
# Create a virtual network and a route server subnet.
@@ -49,7 +50,7 @@ In this section, you create a route server. Prior to creating the route server,
4950
subnetId=$(az network vnet subnet show --name 'RouteServerSubnet' --resource-group 'RouteServerRG' --vnet-name 'myRouteServerVNet' --query id -o tsv)
5051
```
5152
52-
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).
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.
5354
5455
```azurecli-interactive
5556
# Create a Standard public IP.
@@ -70,6 +71,7 @@ In this section, you create a route server. Prior to creating the route server,
7071
In this section, you learn how to configure BGP peering with a network virtual appliance (NVA). Use [az network routeserver peering create](/cli/azure/network/routeserver/peering#az-network-routeserver-peering-create) command to establish BGP peering from the route server to your NVA. The following example adds a peer named **myNVA** that has an IP address of **10.0.0.4** and an ASN of **65001**. For more information, see [What Autonomous System Numbers (ASNs) can I use?](route-server-faq.md#what-autonomous-system-numbers-asns-can-i-use)
7172
7273
```azurecli-interactive
74+
# Add a peer.
7375
az network routeserver peering create --name 'myNVA' --peer-ip '10.0.0.4' --peer-asn '65001' --routeserver 'myRouteServer' --resource-group 'RouteServerRG'
7476
```
7577

@@ -78,6 +80,7 @@ az network routeserver peering create --name 'myNVA' --peer-ip '10.0.0.4' --peer
7880
To complete the peering setup, you must configure the NVA to establish a BGP session with the route server's peer IPs and ASN. Use [az network routeserver show](/cli/azure/network/routeserver#az-network-routeserver-show) command to get the IP and ASN of the route server.
7981

8082
```azurecli-interactive
83+
# Get the route server details.
8184
az network routeserver show --resource-group 'RouteServerRG' --name 'myRouteServer'
8285
```
8386

@@ -125,7 +128,5 @@ az group delete --name 'myResourceGroup' --yes --no-wait
125128

126129
## Next step
127130

128-
Continue to learn more about how Azure Route Server interacts with ExpressRoute and VPN Gateways:
129-
130131
> [!div class="nextstepaction"]
131132
> [Configure peering between a route server and NVA](peer-route-server-with-virtual-appliance.md)

0 commit comments

Comments
 (0)