Skip to content

Commit b5e4e4a

Browse files
committed
updated
1 parent 3099917 commit b5e4e4a

7 files changed

+37
-1
lines changed

articles/virtual-network/configure-routing-preference-virtual-machine-cli.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ This article shows you how to create a virtual machine with a public IP that is
2525
> This preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
2626
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
2727
28+
## Register the feature for your subscription
29+
The Routing Preference feature is currently in preview. You must register the feature for your subscription as follows:
30+
```azurecli
31+
az feature register --namespace Microsoft.Network --name AllowRoutingPreferenceFeature
32+
```
2833
## Create a resource group
2934
1. If using the Cloud Shell, skip to step 2. Open a command session and sign into Azure with `az login`.
3035
2. Create a resource group with the [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group in the East US Azure region:

articles/virtual-network/configure-routing-preference-virtual-machine-powershell.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ This article shows you how to create a virtual machine with a public IP that is
2525
> This preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
2626
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
2727
28+
## Register the feature for your subscription
29+
The Routing Preference feature is currently in preview. You must register the feature for your subscription as follows:
30+
```azurepowershell
31+
Register-AzProviderFeature -FeatureName AllowRoutingPreferenceFeature ProviderNamespace Microsoft.Network
32+
```
33+
2834
## Create a resource group
2935
1. If using the Cloud Shell, skip to step 2. Open a command session and sign into Azure with `Connect-AzAccount`.
3036
2. Create a resource group with the [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup) command. The following example creates a resource group in the East US Azure region:

articles/virtual-network/routing-preference-cli.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
3636
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
3737
If you decide to install and use Azure CLI locally instead, this quickstart requires you to use Azure CLI version 2.0.49 or later. To find your installed version, run `az --version`. See [Install Azure CLI](/cli/azure/install-azure-cli) for install or upgrade info.
3838

39+
## Register the feature for your subscription
40+
The Routing Preference feature is currently in preview. You must register the feature for your subscription as follows:
41+
```azurecli
42+
az feature register --namespace Microsoft.Network --name AllowRoutingPreferenceFeature
43+
```
44+
3945
## Create a resource group
4046
Create a resource group with the [az group create](/cli/azure/group#az-group-create) command. The following example creates a resource group in the **East US** Azure region:
4147

articles/virtual-network/routing-preference-overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Azure routing preference enables you to choose how your traffic routes between A
2626
2727
## Routing via Microsoft global network
2828

29-
When you route your traffic via the *Microsoft global network*, traffic is delivered over one of the largest networks on the globe spanning over 130,000 miles of fiber with over 165 edge POPs. The network is well provisioned with multiple redundant fiber paths to ensure exceptionally high reliability and availability. The traffic engineering is managed by a software defined WAN control that ensures low latency path selection for your traffic and offers the premium network performance.
29+
When you route your traffic via the *Microsoft global network*, traffic is delivered over one of the largest networks on the globe spanning over 160,000 miles of fiber with over 165 edge Point of Presence (POPs). The network is well provisioned with multiple redundant fiber paths to ensure exceptionally high reliability and availability. The traffic engineering is managed by a software defined WAN controller that ensures low latency path selection for your traffic and offers the premium network performance.
3030

3131
![Routing via Microsoft global network](media/routing-preference-overview/route-via-microsoft-global-network.png)
3232

@@ -89,6 +89,7 @@ Routing Preference support for storage account is available in the following Azu
8989

9090
* Routing preference is only compatible with standard SKU of public IP address. Basic SKU of public IP address is not supported.
9191
* Routing preference currently supports only IPv4 public IP addresses. IPv6 public IP addresses are not supported.
92+
* Virtual machines with multiple NICs can have only one type of routing preference.
9293

9394

9495
## Next steps

articles/virtual-network/routing-preference-portal.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ This article shows you how to create a public IP address with the routing prefer
3232
3333
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) now.
3434

35+
## Register the feature for your subscription
36+
The Routing Preference feature is currently in preview. You must register the feature for your subscription using Azure PowerShell as follows:
37+
```azurepowershell
38+
Register-AzProviderFeature -FeatureName AllowRoutingPreferenceFeature ProviderNamespace Microsoft.Network
39+
```
40+
3541
## Create a public IP address with a routing preference
3642
1. Sign in to the [Azure portal](https://preview.portal.azure.com/).
3743
2. Select **Create a resource**.

articles/virtual-network/routing-preference-powershell.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
3535
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
3636
If you choose to install and use PowerShell locally, this article requires the Azure PowerShell module version 6.9.0 or later. Run `Get-Module -ListAvailable Az` to find the installed version. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-Az-ps). If you are running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
3737

38+
## Register the feature for your subscription
39+
The Routing Preference feature is currently in preview. You must register the feature for your subscription as follows:
40+
```azurepowershell
41+
Register-AzProviderFeature -FeatureName AllowRoutingPreferenceFeature ProviderNamespace Microsoft.Network
42+
```
43+
3844
## Create a resource group
3945

4046
Create a resource group with [New-AzResourceGroup](/powershell/module/az.Resources/New-azResourceGroup). This example creates a resource group named *myResourceGroup* in the *eastus* location:

articles/virtual-network/tutorial-routing-preference-virtual-machine-portal.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ This article shows you how to create a virtual machine with a public IP that is
2525
> This preview version is provided without a service level agreement, and it's not recommended for production workloads. Certain features might not be supported or might have constrained capabilities.
2626
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
2727
28+
## Register the feature for your subscription
29+
The Routing Preference feature is currently in preview. You must register the feature for your subscription using Azure PowerShell as follows:
30+
```azurepowershell
31+
Register-AzProviderFeature -FeatureName AllowRoutingPreferenceFeature ProviderNamespace Microsoft.Network
32+
```
33+
2834
## Sign in to Azure
2935

3036
Sign in to the [Azure portal](https://preview.portal.azure.com/).

0 commit comments

Comments
 (0)