Skip to content

Commit bc56586

Browse files
committed
Updated date, steps, included new steps.
1 parent 43effca commit bc56586

File tree

3 files changed

+57
-21
lines changed

3 files changed

+57
-21
lines changed
Loading
Loading

articles/traffic-manager/traffic-manager-configure-performance-routing-method.md

Lines changed: 57 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,40 +7,76 @@ author: greg-lindsay
77
ms.service: traffic-manager
88
ms.topic: how-to
99
ms.workload: infrastructure-services
10-
ms.date: 03/20/2017
10+
ms.date: 05/30/2023
1111
ms.author: greglin
1212
ms.custom: template-how-to
1313
---
1414

1515
# Configure the performance traffic routing method
1616

17-
The Performance traffic routing method allows you to direct traffic to the endpoint with the lowest latency from the client's network. Typically, the datacenter with the lowest latency is the closest in geographic distance. This traffic routing method cannot account for real-time changes in network configuration or load.
17+
The Performance traffic routing method allows you to direct traffic to the endpoint with the lowest latency from the client's network. Typically, the region with the lowest latency is the closest in geographic distance. This traffic routing method can't account for real-time changes in network configuration or load.
1818

19-
## To configure performance routing method
19+
## Prerequisites
2020

21-
1. From a browser, sign in to the [Azure portal](https://portal.azure.com). If you don’t already have an account, you can sign up for a [free one-month trial](https://azure.microsoft.com/free/).
22-
2. In the portal’s search bar, search for the **Traffic Manager profiles** and then click the profile name that you want to configure the routing method for.
23-
3. In the **Traffic Manager profile** blade, verify that both the cloud services and websites that you want to include in your configuration are present.
24-
4. In the **Settings** section, click **Configuration**, and in the **Configuration** blade, complete as follows:
25-
1. For **traffic routing method settings**, for **Routing method** select **Performance**.
26-
2. Set the **Endpoint monitor settings** identical for all every endpoint within this profile as follows:
27-
1. Select the appropriate **Protocol**, and specify the **Port** number.
28-
2. For **Path** type a forward slash */*. To monitor endpoints, you must specify a path and filename. A forward slash "/" is a valid entry for the relative path and implies that the file is in the root directory (default).
29-
3. At the top of the page, click **Save**.
30-
5. Test the changes in your configuration as follows:
31-
1. In the portal’s search bar, search for the Traffic Manager profile name and click the Traffic Manager profile in the results that the displayed.
32-
2. In the **Traffic Manager** profile blade, click **Overview**.
33-
3. The **Traffic Manager profile** blade displays the DNS name of your newly created Traffic Manager profile. This can be used by any clients (for example, by navigating to it using a web browser) to get routed to the right endpoint as determined by the routing type. In this case all requests are routed to the endpoint with the lowest latency from the client's network.
34-
6. Once your Traffic Manager profile is working, edit the DNS record on your authoritative DNS server to point your company domain name to the Traffic Manager domain name.
21+
* If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
22+
23+
## Create a resource group
24+
Create a resource group for the Traffic Manager profile.
25+
1. Sign in to the Azure portal at https://portal.azure.com.
26+
1. On the left pane of the Azure portal, select **Resource groups**.
27+
1. In **Resource groups**, on the top of the page, select **Add**.
28+
1. In **Resource group name**, type a name *myResourceGroupTM1*. For **Resource group location**, select **East US**, and then select **OK**.
29+
30+
## Create a Traffic Manager profile with performance routing method
31+
32+
Create a Traffic Manager profile that directs user traffic by sending them to the endpoint with lowest latency from the client's network.
33+
34+
1. On the top left-hand side of the screen, select **Create a resource** > **Networking** > **Traffic Manager profile** > **Create**.
35+
1. In **Create Traffic Manager profile**, enter or select, the following information, accept the defaults for the remaining settings, and then select **Create**:
36+
37+
| Setting | Value |
38+
| --- | --- |
39+
| Name | Enter a unique name for your Traffic Manager profile. |
40+
| Routing method | Select the **Performance** routing method. |
41+
| Subscription | Select your subscription. |
42+
| Resource group | Select **myResourceGroupTM1**. |
43+
| Location | This setting refers to the location of the resource group, and has no impact on the Traffic Manager profile that will be deployed globally. |
44+
45+
46+
47+
:::image type="content" source="media/traffic-manager-performance-routing-method/create-traffic-manager-performance-routing-method.png" alt-text="Screenshot of creating a traffic manager profile with performance routing.":::
48+
49+
## To configure performance routing method on an existing Traffic Manager profile
50+
51+
1. Sign in to the Azure portal at https://portal.azure.com.
52+
1. In the portal’s search bar, search for the **Traffic Manager profiles** and then select the profile name that you want to configure the routing method for.
53+
1. In the **Traffic Manager profile** overview page, verify that both the cloud services and websites that you want to include in your configuration are present.
54+
1. In the **Settings** section, select **Configuration**, and in the **Configuration** blade, complete as follows:
55+
56+
| Setting | Value |
57+
| --- | --- |
58+
|**Routing method** | Performance |
59+
| **DNS time to live (TTL)** |This value controls how often the client’s local caching name server will query the Traffic Manager system for updated DNS entries. In this example we chose the default **60 seconds**. |
60+
| **Endpoint monitor settings** | |
61+
| **Protocol** | In this example we chose the default **HTTP**. |
62+
|**Port** | In this example we chose the default port **80**. |
63+
| **Path** | For **Path** type a forward slash */*. To monitor endpoints, you must specify a path and filename. A forward slash "/" is a valid entry for the relative path and implies that the file is in the root directory (default). |
64+
65+
1. At the top of the page, select **Save**.
66+
67+
:::image type="content" source="media/traffic-manager-performance-routing-method/traffic-manager-performance-routing-method.png" alt-text="Screenshot of configuring a traffic manager profile with performance routing.":::
68+
## Test the performance routing method
69+
70+
Test the changes in your configuration as follows:
71+
72+
1. In the portal’s search bar, search for the Traffic Manager profile name and select the Traffic Manager profile in the results that the displayed.
73+
1. The **Traffic Manager profile** overview displays the DNS name of your newly created Traffic Manager profile. This can be used by any clients (for example, by navigating to it using a web browser) to get routed to the right endpoint as determined by the routing type. In this case all requests are routed to the endpoint with the lowest latency from the client's network.
74+
1. Once your Traffic Manager profile is working, edit the DNS record on your authoritative DNS server to point your company domain name to the Traffic Manager domain name.
3575

36-
![Configuring performance traffic routing method using Traffic Manager][1]
3776

3877
## Next steps
3978

4079
- Learn about [weighted traffic routing method](traffic-manager-configure-weighted-routing-method.md).
4180
- Learn about [priority routing method](traffic-manager-configure-priority-routing-method.md).
4281
- Learn about [geographic routing method](traffic-manager-configure-geographic-routing-method.md).
4382
- Learn how to [test Traffic Manager settings](traffic-manager-testing-settings.md).
44-
45-
<!--Image references-->
46-
[1]: ./media/traffic-manager-performance-routing-method/traffic-manager-performance-routing-method.png

0 commit comments

Comments
 (0)