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/virtual-network/configure-routing-preference-virtual-machine-cli.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Create a VM with a public IP address with routing preference choice - Azure CLI
2
+
title: Configure routing preference for a VM - Azure CLI
3
3
description: Learn how to create a VM with a public IP address with routing preference choice using the Azure command-line interface (CLI).
4
4
services: virtual-network
5
5
documentationcenter: na
@@ -14,9 +14,9 @@ ms.date: 05/18/2020
14
14
ms.author: mnayak
15
15
16
16
---
17
-
# Configure a virtual machine to route traffic with the routing preference type Internet using Azure CLI
17
+
# Configure routing preference for a VM using Azure CLI
18
18
19
-
You can create a virtual machine with a public IP address with a routing preference choice. Internet bound traffic from the VM will be routed to and from internet via respective network based on the routing preference selection. The default routing is via Microsoft global network.
19
+
This article shows you how to configure routing preference for a virtual machine. Internet bound traffic from the VM will be routed via the ISP network when you choose **Internet** as your routing preference option . The default routing is via the Microsoft global network.
20
20
21
21
This article shows you how to create a virtual machine with a public IP that is set to route traffic via the public internet using Azure CLI.
22
22
@@ -25,6 +25,11 @@ This article shows you how to create a virtual machine with a public IP that is
25
25
> 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.
26
26
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
27
27
28
+
## Register the feature for your subscription
29
+
The Routing Preference feature is currently in preview. Register the feature for your subscription as follows:
30
+
```azurecli
31
+
az feature register --namespace Microsoft.Network --name AllowRoutingPreferenceFeature
32
+
```
28
33
## Create a resource group
29
34
1. If using the Cloud Shell, skip to step 2. Open a command session and sign into Azure with `az login`.
30
35
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:
@@ -122,7 +127,6 @@ az group delete --name myResourceGroup --yes
122
127
123
128
## Next steps
124
129
125
-
- Learn more about [Public IP with routing preference](routing-preference-overview.md).
126
130
- Learn more about [routing preference in public IP addresses](routing-preference-overview.md).
127
131
- Learn more about [public IP addresses](virtual-network-ip-addresses-overview-arm.md#public-ip-addresses) in Azure.
128
132
- Learn more about [public IP address settings](virtual-network-public-ip-address.md#create-a-public-ip-address).
Copy file name to clipboardExpand all lines: articles/virtual-network/configure-routing-preference-virtual-machine-powershell.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Create a VM with a public IP address with routing preference choice - Azure PowerShell
2
+
title: Configure routing preference for a VM - Azure PowerShell
3
3
description: Learn how to create a VM with a public IP address with routing preference choice using the Azure PowerShell.
4
4
services: virtual-network
5
5
documentationcenter: na
@@ -14,17 +14,23 @@ ms.date: 05/18/2020
14
14
ms.author: mnayak
15
15
16
16
---
17
-
# Configure a virtual machine to route traffic via the internet using Azure PowerShell
17
+
# Configure routing preference for a VM using Azure PowerShell
18
18
19
-
You can create a virtual machine with a public IP address with a routing preference choice. Internet bound traffic from the VM will be routed to and from internet via respective network based on the routing preference selection. The default routing is via Microsoft global network.
19
+
This article shows you how to configure routing preference for a virtual machine. Internet bound traffic from the VM will be routed via the ISP network when you choose **Internet** as your routing preference option . The default routing is via the Microsoft global network.
20
20
21
-
This article shows you how to create a virtual machine with a public IP that is set to route traffic via the Internet using Azure PowerShell.
21
+
This article shows you how to create a virtual machine with a public IP that is set to route traffic via the ISP network using Azure PowerShell.
22
22
23
23
> [!IMPORTANT]
24
24
> Routing preference is currently in public preview.
25
25
> 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.
26
26
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
27
27
28
+
## Register the feature for your subscription
29
+
The Routing Preference feature is currently in preview. Register the feature for your subscription as follows:
1. If using the Cloud Shell, skip to step 2. Open a command session and sign into Azure with `Connect-AzAccount`.
30
36
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:
Copy file name to clipboardExpand all lines: articles/virtual-network/routing-preference-cli.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Create a public IP address with Internet traffic routing preference using Azure CLI
2
+
title: Configure routing preference for a public IP address using Azure CLI
3
3
titlesuffix: Azure Virtual Network
4
4
description: Learn how to create a public IP with an Internet traffic routing preference
5
5
services: virtual-network
@@ -15,9 +15,9 @@ ms.date: 05/18/2020
15
15
ms.author: mnayak
16
16
17
17
---
18
-
# Create a public IP address with Internet traffic routing preference using Azure CLI
18
+
# Configure routing preference for a public IP address using Azure CLI
19
19
20
-
This article shows you how to create a public IP address with an Internet routing preference using Azure CLI. After creating the public IP address, you can associate it with the following Azure resources for inbound and outbound traffic to the internet:
20
+
This article shows you how to configure routing preference via ISP network (**Internet** option) for a public IP address using Azure CLI. After creating the public IP address, you can associate it with the following Azure resources for inbound and outbound traffic to the internet:
21
21
22
22
* Virtual machine
23
23
* Virtual machine scale set
@@ -26,6 +26,8 @@ This article shows you how to create a public IP address with an Internet routin
26
26
* Application Gateway
27
27
* Azure Firewall
28
28
29
+
By default, traffic is routed via the Microsoft global network for all Azure services and can be associated with any Azure services.
30
+
29
31
> [!IMPORTANT]
30
32
> Routing preference is currently in public preview.
31
33
> 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.
@@ -36,6 +38,12 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
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.
38
40
41
+
## Register the feature for your subscription
42
+
The Routing Preference feature is currently in preview. Register the feature for your subscription as follows:
43
+
```azurecli
44
+
az feature register --namespace Microsoft.Network --name AllowRoutingPreferenceFeature
45
+
```
46
+
39
47
## Create a resource group
40
48
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:
41
49
@@ -65,7 +73,7 @@ az network public-ip create \
65
73
You can associate the above created public IP address with a [Windows](../virtual-machines/windows/overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json) or [Linux](../virtual-machines/linux/overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json) virtual machine. Use the CLI section on the tutorial page: [Associate a public IP address to a virtual machine](associate-public-ip-address-vm.md#azure-cli) to associate the Public IP to your VM. You can also associate the public IP address created above with with an [Azure Load Balancer](../load-balancer/load-balancer-overview.md), by assigning it to the load balancer **frontend** configuration. The public IP address serves as a load-balanced virtual IP address (VIP).
66
74
67
75
## Next steps
68
-
- Learn more about [Public IP with routing preference](routing-preference-overview.md).
76
+
69
77
- Learn more about [routing preference in public IP addresses](routing-preference-overview.md).
70
-
-[Deploy a VM and associate a public ip with routing preference choice using the Azure CLI](configure-routing-preference-virtual-machine-cli.md).
78
+
-[Configure routing preference for a VM using the Azure CLI](configure-routing-preference-virtual-machine-cli.md).
Copy file name to clipboardExpand all lines: articles/virtual-network/routing-preference-overview.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,13 @@ Azure routing preference enables you to choose how your traffic routes between A
26
26
27
27
## Routing via Microsoft global network
28
28
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 (POP). 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.
30
30
31
31

32
32
33
-
**Ingress traffic:** The global BGP Anycast announcement ensures ingress traffic enters Microsoft network closest to the user. For example, if a user from Singapore accesses Azure resources hosted in Chicago, USA then traffic is entered into Microsoft global network in Singapore Edge Point Of Presence (PoP) and travels on Microsoft network to the service hosted in Chicago.
33
+
**Ingress traffic:** The global BGP Anycast announcement ensures ingress traffic enters Microsoft network closest to the user. For example, if a user from Singapore accesses Azure resources hosted in Chicago, USA then traffic is entered into Microsoft global network in Singapore Edge POP and travels on Microsoft network to the service hosted in Chicago.
34
34
35
-
**Egress traffic:** The egress traffic follows the same principle. Traffic travels majority of its journey on Microsoft global network and exits closest to the user. For example, if traffic from Azure Chicago is destined to a user from Singapore, then traffic travels on Microsoft network from Chicago to Singapore, and exits the Microsoft network in Singapore Edge Point Of Presence (PoP).
35
+
**Egress traffic:** The egress traffic follows the same principle. Traffic travels majority of its journey on Microsoft global network and exits closest to the user. For example, if traffic from Azure Chicago is destined to a user from Singapore, then traffic travels on Microsoft network from Chicago to Singapore, and exits the Microsoft network in Singapore Edge POP.
36
36
37
37
Both ingress and egress traffic stays bulk of the travel on the Microsoft global network. This is also known as *cold potato routing*.
38
38
@@ -49,7 +49,7 @@ The new routing choice *Internet routing* minimizes travel on the Microsoft glob
49
49
50
50
## Supported services
51
51
52
-
Routing preference choice is enabled on a public IP address, which can be assigned to an Azure resource for inbound and outbound traffic to internet. Some of the resources you can associate a public IP address with routing preference type are:
52
+
Public IP with Routing preference choice “Microsoft Global Network” can be associated with any Azure services. However, Public IP with Routing preference choice **Internet**can be associated with the following Azure resources:
53
53
54
54
* Virtual machine
55
55
* Virtual machine scale set
@@ -82,16 +82,17 @@ The price difference between both options is reflected in the internet egress da
82
82
83
83
## Availability
84
84
85
-
Routing Preference support is available in the following regions for services such as virtual machine and internet-facing load balancer that use a public IP for internet egress - North Europe, West Europe, France Central, UK South, Central US, East US, East US 2, North Central US, South Central US, West US, West US 2, West Central US, Southeast Asia, and Australia East.
85
+
Routing Preference support is available in the following regions for services such as virtual machine and internet-facing load balancer that use a public IP for internet egress - North Europe, West Europe, France South, UK South, East US, North Central US, South Central US, West US, West Central US, Southeast Asia, Germany West Central, Switzerland West, Japan East, and Japan West.
86
86
87
87
Routing Preference support for storage account is available in the following Azure regions - France South, North Central US, and West Central US.
88
88
## Limitations
89
89
90
90
* Routing preference is only compatible with standard SKU of public IP address. Basic SKU of public IP address is not supported.
91
91
* 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.
92
93
93
94
94
95
## Next steps
95
96
96
-
*[Create a VM with Internet routing preference using the Azure PowerShell](configure-routing-preference-virtual-machine-powershell.md)
97
-
*[Create a VM with Internet routing preference using the Azure CLI](configure-routing-preference-virtual-machine-cli.md)
97
+
*[Configure routing preference for a VM using the Azure PowerShell](configure-routing-preference-virtual-machine-powershell.md)
98
+
*[Configure routing preference for a VM using the Azure CLI](configure-routing-preference-virtual-machine-cli.md)
Copy file name to clipboardExpand all lines: articles/virtual-network/routing-preference-portal.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Create a public IP address with Internet traffic routing preference - Azure portal
2
+
title: Configure routing preference for a public IP address - Azure portal
3
3
description: Learn how to create a public IP with an Internet traffic routing preference
4
4
services: virtual-network
5
5
documentationcenter: na
@@ -14,16 +14,17 @@ ms.date: 05/18/2020
14
14
ms.author: mnayak
15
15
16
16
---
17
-
# Create a public IP address with the routing preference type Internet using the Azure portal
17
+
# Configure routing preference for a public IP address using the Azure portal
18
18
19
-
This article shows you how to create a public IP address with the routing preference type Internet using the Azure portal. After creating the public IP address, you can associate it with the following Azure resources for inbound and outbound traffic to the internet:
19
+
This article shows you how to configure routing preference via ISP network (**Internet** option) for a public IP address. After creating the public IP address, you can associate it with the following Azure resources for inbound and outbound traffic to the internet:
20
20
21
21
* Virtual machine
22
22
* Virtual machine scale set
23
23
* Azure Kubernetes Service (AKS)
24
24
* Internet-facing load balancer
25
25
* Application Gateway
26
26
* Azure Firewall
27
+
By default, traffic is routed via the Microsoft global network for all Azure services and can be associated with any Azure services.
27
28
28
29
> [!IMPORTANT]
29
30
> Routing preference is currently in public preview.
@@ -32,6 +33,12 @@ This article shows you how to create a public IP address with the routing prefer
32
33
33
34
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) now.
34
35
36
+
## Register the feature for your subscription
37
+
The Routing Preference feature is currently in preview. Register the feature for your subscription using Azure PowerShell as follows:
## Create a public IP address with a routing preference
36
43
1. Sign in to the [Azure portal](https://preview.portal.azure.com/).
37
44
2. Select **Create a resource**.
@@ -47,8 +54,8 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
47
54
You can associate the above created public IP address with a [Windows](../virtual-machines/windows/overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json) or [Linux](../virtual-machines/linux/overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json) virtual machine. Use the CLI section on the tutorial page: [Associate a public IP address to a virtual machine](associate-public-ip-address-vm.md#azure-cli) to associate the public IP to your VM. You can also associate the public IP address created above with an [Azure Load Balancer](../load-balancer/load-balancer-overview.md), by assigning it to the load balancer **frontend** configuration. The public IP address serves as a load-balanced virtual IP address (VIP).
48
55
49
56
## Next steps
50
-
- Learn more about [Public IP with routing preference](routing-preference-overview.md).
51
-
-[Deploy a VM and assign a public IP with routing preference choice using the Azure portal](tutorial-routing-preference-virtual-machine-portal.md).
52
-
-[Create a public IP with routing preference choice using the PowerShell](routing-preference-powershell.md).
57
+
- Learn more about [public IP with routing preference](routing-preference-overview.md).
58
+
-[Configure routing preference for a VM](tutorial-routing-preference-virtual-machine-portal.md).
59
+
-[Configure routing preference for a public IP address using the PowerShell](routing-preference-powershell.md).
53
60
- Learn more about [public IP addresses](virtual-network-ip-addresses-overview-arm.md#public-ip-addresses) in Azure.
54
61
- Learn more about all [public IP address settings](virtual-network-public-ip-address.md#create-a-public-ip-address).
0 commit comments