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/traffic-manager/traffic-manager-FAQs.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.service: traffic-manager
8
8
ms.topic: article
9
9
ms.tgt_pltfrm: na
10
10
ms.workload: infrastructure-services
11
-
ms.date: 01/31/2022
11
+
ms.date: 09/19/2022
12
12
ms.author: greglin
13
13
ms.custom: devx-track-azurepowershell
14
14
---
@@ -40,6 +40,12 @@ Further investigation should therefore focus on the application.
40
40
41
41
The HTTP host header sent from the client's browser is the most common source of problems. Make sure that the application is configured to accept the correct host header for the domain name you’re using. For endpoints using the Azure App Service, see [configuring a custom domain name for a web app in Azure App Service using Traffic Manager](../app-service/configure-domain-traffic-manager.md).
42
42
43
+
### How can I resolve a 500 (Internal Server Error) problem when using Traffic Manager?
44
+
45
+
If your client or application receives an HTTP 500 error while using Traffic Manager, this can be caused by a stale DNS query. To resolve the issue, clear the DNS cache and allow the client to issue a new DNS query.
46
+
47
+
When a service endpoint is unresponsive, clients and applications that are using that endpoint do not reset until the DNS cache is refreshed. The duration of the cache is determined by the time-to-live (TTL) of the DNS record. For more information, see [Traffic Manager and the DNS cache](traffic-manager-how-it-works.md#traffic-manager-and-the-dns-cache).
48
+
43
49
### What is the performance impact of using Traffic Manager?
44
50
45
51
As explained in [How Traffic Manager Works](../traffic-manager/traffic-manager-how-it-works.md), Traffic Manager works at the DNS level. Since clients connect to your service endpoints directly, there’s no performance impact incurred when using Traffic Manager once the connection is established.
Copy file name to clipboardExpand all lines: articles/traffic-manager/traffic-manager-how-it-works.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
@@ -4,12 +4,12 @@ description: This article will help you understand how Traffic Manager routes tr
4
4
services: traffic-manager
5
5
documentationcenter: ''
6
6
author: greg-lindsay
7
-
manager: twooley
7
+
manager: kumud
8
8
ms.service: traffic-manager
9
9
ms.topic: article
10
10
ms.tgt_pltfrm: na
11
11
ms.workload: infrastructure-services
12
-
ms.date: 03/05/2019
12
+
ms.date: 09/19/2022
13
13
ms.author: greglin
14
14
---
15
15
@@ -33,8 +33,8 @@ Contoso Corp have developed a new partner portal. The URL for this portal is `ht
33
33
To achieve this configuration, they complete the following steps:
34
34
35
35
1. Deploy three instances of their service. The DNS names of these deployments are 'contoso-us.cloudapp.net', 'contoso-eu.cloudapp.net', and 'contoso-asia.cloudapp.net'.
36
-
1. Create a Traffic Manager profile, named 'contoso.trafficmanager.net', and configure it to use the 'Performance' traffic-routing method across the three endpoints.
37
-
1. Configure their vanity domain name, 'partners.contoso.com', to point to 'contoso.trafficmanager.net', using a DNS CNAME record.
36
+
2. Create a Traffic Manager profile, named 'contoso.trafficmanager.net', and configure it to use the 'Performance' traffic-routing method across the three endpoints.
37
+
3. Configure their vanity domain name, 'partners.contoso.com', to point to 'contoso.trafficmanager.net', using a DNS CNAME record.
38
38
39
39
![Traffic Manager DNS configuration][1]
40
40
@@ -61,6 +61,8 @@ Continuing from the previous example, when a client requests the page `https://p
61
61
7. The recursive DNS service consolidates the results and returns a single DNS response to the client.
62
62
8. The client receives the DNS results and connects to the given IP address. The client connects to the application service endpoint directly, not through Traffic Manager. Since it is an HTTPS endpoint, the client performs the necessary SSL/TLS handshake, and then makes an HTTP GET request for the '/login.aspx' page.
63
63
64
+
#### Traffic Manager and the DNS cache
65
+
64
66
The recursive DNS service caches the DNS responses it receives. The DNS resolver on the client device also caches the result. Caching enables subsequent DNS queries to be answered more quickly by using data from the cache rather than querying other name servers. The duration of the cache is determined by the 'time-to-live' (TTL) property of each DNS record. Shorter values result in faster cache expiry and thus more round-trips to the Traffic Manager name servers. Longer values mean that it can take longer to direct traffic away from a failed endpoint. Traffic Manager allows you to configure the TTL used in Traffic Manager DNS responses to be as low as 0 seconds and as high as 2,147,483,647 seconds (the maximum range compliant with [RFC-1035](https://www.ietf.org/rfc/rfc1035.txt)), enabling you to choose the value that best balances the needs of your application.
65
67
66
68
## FAQs
@@ -73,6 +75,8 @@ The recursive DNS service caches the DNS responses it receives. The DNS resolver
73
75
74
76
*[Why am I seeing an HTTP error when using Traffic Manager?](./traffic-manager-faqs.md#why-am-i-seeing-an-http-error-when-using-traffic-manager)
75
77
78
+
*[How can I resolve a 500 (Internal Server Error) problem when using Traffic Manager?](./traffic-manager-faqs.md#how-can-i-resolve-a-500-internal-server-error-problem-when-using-traffic-manager)
79
+
76
80
*[What is the performance impact of using Traffic Manager?](./traffic-manager-faqs.md#what-is-the-performance-impact-of-using-traffic-manager)
77
81
78
82
*[What application protocols can I use with Traffic Manager?](./traffic-manager-faqs.md#what-application-protocols-can-i-use-with-traffic-manager)
0 commit comments