Skip to content

Commit 2e19ac9

Browse files
authored
Merge pull request #114193 from KumudD/release-build-virtual-network
Set routing preference - Azure portal
2 parents 7da9487 + 84e3a5d commit 2e19ac9

12 files changed

+153
-15
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ ms.date: 05/18/2020
1414
ms.author: mnayak
1515

1616
---
17-
# Configure a virtual machine to route traffic via the internet using Azure CLI
17+
# Configure a virtual machine to route traffic with the routing preference type Internet using Azure CLI
1818

1919
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.
2020

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 CLI.
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.
2222

2323
> [!IMPORTANT]
2424
> Routing preference is currently in public preview.
@@ -122,6 +122,7 @@ az group delete --name myResourceGroup --yes
122122

123123
## Next steps
124124

125-
* Learn more about [routing preference in public IP addresses](routing-preference-overview.md).
126-
* Learn more about [public IP addresses](virtual-network-ip-addresses-overview-arm.md#public-ip-addresses) in Azure.
127-
* Learn more about [public IP address settings](virtual-network-public-ip-address.md#create-a-public-ip-address).
125+
- Learn more about [Public IP with routing preference](routing-preference-overview.md).
126+
- Learn more about [routing preference in public IP addresses](routing-preference-overview.md).
127+
- Learn more about [public IP addresses](virtual-network-ip-addresses-overview-arm.md#public-ip-addresses) in Azure.
128+
- Learn more about [public IP address settings](virtual-network-public-ip-address.md#create-a-public-ip-address).
82.8 KB
Loading
193 KB
Loading
127 KB
Loading
127 KB
Loading
Loading

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.author: mnayak
1717
---
1818
# Create a public IP address with Internet traffic routing preference using Azure CLI
1919

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 is created, you can associate it with the following Azure resources for inbound and outbound traffic to internet:
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:
2121

2222
* Virtual machine
2323
* Virtual machine scale set
@@ -65,6 +65,7 @@ az network public-ip create \
6565
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).
6666

6767
## Next steps
68-
* Learn more about [routing preference in public IP addresses](routing-preference-overview.md).
69-
* [Deploy a VM and associate a public ip with routing preference choice using the Azure CLI](configure-routing-preference-virtual-machine-cli.md).
68+
- Learn more about [Public IP with routing preference](routing-preference-overview.md).
69+
- 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).
7071

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ When you route your traffic via the *Microsoft global network*, traffic is deliv
3232

3333
**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.
3434

35-
**Egress traffic:** The egress traffic follows the same principle. Traffic travels majority of its journey on Microsoft global network and exists 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 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 Point Of Presence (PoP).
3636

3737
Both ingress and egress traffic stays bulk of the travel on the Microsoft global network. This is also known as *cold potato routing*.
3838

3939

4040
## Routing over public Internet (ISP network)
4141

42-
The new routing choice *Internet routing* minimizes travel on the Microsoft global network, and extensively uses the transit ISP network. This cost-optimized routing option offers network performance that is comparable to other cloud providers.
42+
The new routing choice *Internet routing* minimizes travel on the Microsoft global network, and uses the transit ISP network to route your traffic. This cost-optimized routing option offers network performance that is comparable to other cloud providers.
4343

4444
![Routing over public Internet](media/routing-preference-overview/route-via-isp-network.png)
4545

@@ -84,7 +84,7 @@ The price difference between both options is reflected in the internet egress da
8484

8585
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.
8686

87-
Routing Preference support for storage account is available in the following Azure regions - France Central, North Central US, and West Central US.
87+
Routing Preference support for storage account is available in the following Azure regions - France South, North Central US, and West Central US.
8888
## Limitations
8989

9090
* Routing preference is only compatible with standard SKU of public IP address. Basic SKU of public IP address is not supported.
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: Create a public IP address with Internet traffic routing preference - Azure portal
3+
description: Learn how to create a public IP with an Internet traffic routing preference
4+
services: virtual-network
5+
documentationcenter: na
6+
author: KumudD
7+
manager: mtillman
8+
ms.service: virtual-network
9+
ms.devlang: na
10+
ms.topic: conceptual
11+
ms.tgt_pltfrm: na
12+
ms.workload: infrastructure-services
13+
ms.date: 05/18/2020
14+
ms.author: mnayak
15+
16+
---
17+
# Create a public IP address with the routing preference type Internet using the Azure portal
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:
20+
21+
* Virtual machine
22+
* Virtual machine scale set
23+
* Azure Kubernetes Service (AKS)
24+
* Internet-facing load balancer
25+
* Application Gateway
26+
* Azure Firewall
27+
28+
> [!IMPORTANT]
29+
> Routing preference is currently in public preview.
30+
> 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.
31+
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
32+
33+
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) now.
34+
35+
## Create a public IP address with a routing preference
36+
1. Sign in to the [Azure portal](https://preview.portal.azure.com/).
37+
2. Select **Create a resource**.
38+
3. In the search box, type *Public IP address*.
39+
3. In the search results, select **Public IP address**. Next, in the **Public IP address** page, select **Create**.
40+
3. In the **Routing preference** options, select **Internet**.
41+
42+
![Create a public ip address](./media/routing-preference-portal/pip-new.png)
43+
44+
> [!NOTE]
45+
> Public IP addresses are created with an IPv4 or IPv6 address. However, routing preference only supports IPV4 currently.
46+
47+
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+
49+
## 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).
53+
- Learn more about [public IP addresses](virtual-network-ip-addresses-overview-arm.md#public-ip-addresses) in Azure.
54+
- Learn more about all [public IP address settings](virtual-network-public-ip-address.md#create-a-public-ip-address).

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.author: mnayak
1616
---
1717
# Create a public IP address with Internet traffic routing preference using Azure PowerShell
1818

19-
This article shows you how to create a public IP address with an Internet routing preference using Azure PowerShell. After creating the public IP address is created, you can associate it with the following Azure resources for inbound and outbound traffic to internet:
19+
This article shows you how to create a public IP address with an Internet routing preference using Azure PowerShell. After creating the public IP address, you can associate it with the following Azure resources for inbound and outbound traffic to the internet:
2020

2121
* Virtual machine
2222
* Virtual machine scale set
@@ -73,6 +73,6 @@ Remove-AzResourceGroup -Name myResourceGroup
7373
```
7474

7575
## Next steps
76-
77-
* Learn more about [routing preference in public IP addresses](routing-preference-overview.md).
78-
* [Deploy a VM and associate a public IP with routing preference choice using the Azure PowerShell](configure-routing-preference-virtual-machine-powershell.md).
76+
- Learn more about [Public IP with routing preference](routing-preference-overview.md).
77+
- Learn more about [routing preference in public IP addresses](routing-preference-overview.md).
78+
- [Deploy a VM and associate a public IP with routing preference choice using the Azure PowerShell](configure-routing-preference-virtual-machine-powershell.md).

0 commit comments

Comments
 (0)