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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -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
@@ -101,7 +101,7 @@ Azure Route Server requires a dedicated subnet named *RouteServerSubnet*. The su
101
101
102
102
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:
103
103
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 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.
105
105
106
106
```azurecli-interactive
107
107
az network routeserver peering create \
@@ -124,7 +124,7 @@ az network routeserver show \
124
124
--resource-group myRouteServerRG
125
125
```
126
126
127
-
The output will look like the following:
127
+
The output will look like the following example:
128
128
129
129
```
130
130
RouteServerAsn : 65515
@@ -151,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**:
155
155
156
156
```azurecli-interactive
157
157
az network routeserver update \
@@ -160,7 +160,7 @@ If you have a virtual network gateway (ExpressRoute or VPN) in the same virtual
160
160
--allow-b2b-traffic true
161
161
```
162
162
163
-
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**:
164
164
165
165
```azurecli-interactive
166
166
az network routeserver update \
@@ -212,9 +212,9 @@ If you no longer need the Azure Route Server, use the first command to remove th
212
212
--resource-group myRouteServerRG
213
213
```
214
214
215
-
## Next steps
215
+
## Next step
216
216
217
-
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:
218
218
219
219
> [!div class="nextstepaction"]
220
220
> [Azure ExpressRoute and Azure VPN support](expressroute-vpn-support.md)
0 commit comments