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-configure-route-server-cli.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: halkazwini
5
5
ms.author: halkazwini
6
6
ms.service: azure-route-server
7
7
ms.topic: quickstart
8
-
ms.date: 08/14/2023
8
+
ms.date: 08/14/2024
9
9
ms.custom: mode-api, devx-track-azurecli
10
10
ms.devlang: azurecli
11
11
---
@@ -49,7 +49,7 @@ az network vnet create \
49
49
50
50
### Add a dedicated subnet
51
51
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):
53
53
54
54
1. Run the following command to add the *RouteServerSubnet* to your virtual network.
55
55
@@ -95,11 +95,13 @@ Azure Route Server requires a dedicated subnet named *RouteServerSubnet*. The su
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:
101
103
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.
103
105
104
106
```azurecli-interactive
105
107
az network routeserver peering create \
@@ -122,7 +124,7 @@ az network routeserver show \
122
124
--resource-group myRouteServerRG
123
125
```
124
126
125
-
The output will look like the following:
127
+
The output will look like the following example:
126
128
127
129
```
128
130
RouteServerAsn : 65515
@@ -149,7 +151,7 @@ If you have a virtual network gateway (ExpressRoute or VPN) in the same virtual
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**:
153
155
154
156
```azurecli-interactive
155
157
az network routeserver update \
@@ -158,7 +160,7 @@ If you have a virtual network gateway (ExpressRoute or VPN) in the same virtual
158
160
--allow-b2b-traffic true
159
161
```
160
162
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**:
162
164
163
165
```azurecli-interactive
164
166
az network routeserver update \
@@ -210,9 +212,9 @@ If you no longer need the Azure Route Server, use the first command to remove th
210
212
--resource-group myRouteServerRG
211
213
```
212
214
213
-
## Next steps
215
+
## Next step
214
216
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:
216
218
217
219
> [!div class="nextstepaction"]
218
220
> [Azure ExpressRoute and Azure VPN support](expressroute-vpn-support.md)
0 commit comments