Skip to content

Commit ab43031

Browse files
Merge pull request #284657 from halkazwini/rs-cli
Add a note
2 parents fa80431 + ae50fcc commit ab43031

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

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

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: halkazwini
55
ms.author: halkazwini
66
ms.service: azure-route-server
77
ms.topic: quickstart
8-
ms.date: 08/14/2023
8+
ms.date: 08/14/2024
99
ms.custom: mode-api, devx-track-azurecli
1010
ms.devlang: azurecli
1111
---
@@ -49,7 +49,7 @@ az network vnet create \
4949

5050
### Add a dedicated subnet
5151

52-
Azure 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), otherwise you may receive an error message when deploying the Route Server. Create a subnet configuration named **RouteServerSubnet** with [az network vnet subnet create](/cli/azure/network/vnet/subnet#az-network-vnet-subnet-create):
52+
Azure 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), otherwise you might receive an error message when deploying the Route Server. Create a subnet configuration named **RouteServerSubnet** with [az network vnet subnet create](/cli/azure/network/vnet/subnet#az-network-vnet-subnet-create):
5353

5454
1. Run the following command to add the *RouteServerSubnet* to your virtual network.
5555

@@ -95,11 +95,13 @@ Azure Route Server requires a dedicated subnet named *RouteServerSubnet*. The su
9595
--public-ip-address RouteServerIP
9696
```
9797
98+
[!INCLUDE [Deployment note](../../includes/route-server-note-creation-time.md)]
99+
98100
## Create BGP peering with an NVA
99101
100102
Use [az network routeserver peering create](/cli/azure/network/routeserver/peering#az-network-routeserver-peering-create) to establish BGP peering between the Route Server and the NVA:
101103
102-
The `peer-ip` is the virtual network IP assigned to the NVA. The `peer-asn` is the Autonomous System Number (ASN) configured in the NVA. The ASN can be any 16-bit number other than the ones in the range of 65515-65520. This range of ASNs are reserved by Microsoft.
104+
The `peer-ip` is the virtual network IP assigned to the NVA. The `peer-asn` is the Autonomous System Number (ASN) configured in the NVA. The ASN can be any 16-bit number other than the ones in the range of 65515-65520. This range of ASNs is reserved by Microsoft.
103105
104106
```azurecli-interactive
105107
az network routeserver peering create \
@@ -122,7 +124,7 @@ az network routeserver show \
122124
--resource-group myRouteServerRG
123125
```
124126

125-
The output will look like the following:
127+
The output will look like the following example:
126128

127129
```
128130
RouteServerAsn : 65515
@@ -149,7 +151,7 @@ If you have a virtual network gateway (ExpressRoute or VPN) in the same virtual
149151

150152
[!INCLUDE [downtime note](../../includes/route-server-note-vng-downtime.md)]
151153

152-
1. To enable route exchange between Azure Route Server and the gateway(s), use [az network routerserver update](/cli/azure/network/routeserver#az-network-routeserver-update) with the `--allow-b2b-traffic` flag set to **true**:
154+
1. To enable route exchange between Azure Route Server and the gateways, use [az network routerserver update](/cli/azure/network/routeserver#az-network-routeserver-update) with the `--allow-b2b-traffic` flag set to **true**:
153155

154156
```azurecli-interactive
155157
az network routeserver update \
@@ -158,7 +160,7 @@ If you have a virtual network gateway (ExpressRoute or VPN) in the same virtual
158160
--allow-b2b-traffic true
159161
```
160162
161-
2. To disable route exchange between Azure Route Server and the gateway(s), use [az network routerserver update](/cli/azure/network/routeserver#az-network-routeserver-update) with the `--allow-b2b-traffic` flag set to **false**:
163+
2. To disable route exchange between Azure Route Server and the gateways, use [az network routerserver update](/cli/azure/network/routeserver#az-network-routeserver-update) with the `--allow-b2b-traffic` flag set to **false**:
162164
163165
```azurecli-interactive
164166
az network routeserver update \
@@ -210,9 +212,9 @@ If you no longer need the Azure Route Server, use the first command to remove th
210212
--resource-group myRouteServerRG
211213
```
212214
213-
## Next steps
215+
## Next step
214216
215-
After you've created the Azure Route Server, continue on to learn more about how Azure Route Server interacts with ExpressRoute and VPN Gateways:
217+
Continue to learn more about how Azure Route Server interacts with ExpressRoute and VPN Gateways:
216218
217219
> [!div class="nextstepaction"]
218220
> [Azure ExpressRoute and Azure VPN support](expressroute-vpn-support.md)

0 commit comments

Comments
 (0)