Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Traffic Manager not working for Web Apps at Standard S1: Small plan

I was doing some experiments with the Traffic Manager (new azure portal). I configured a new Azure Traffic Manager and added two Azure WebApp endpoints. But when trying to browse Traffic Manager endpoint I am getting

This site can’t be reached, niktm.trafficmanager.net’s server DNS address could not be found.

The Status' of the TM endpoint are "Enabled" and both the Web apps are up and running. Also, the Azure Traffic Manager Monitoring status is Online.

enter image description here

I did this few times and still getting the same result. Am I missing something?

like image 404
NikhilGoud Avatar asked Mar 15 '17 13:03

NikhilGoud


2 Answers

Another reason why Azure Traffic Manager could not working with Azure App Service (Web App) is because you are using Basic service-tier, which doesn't support Traffic Manager feature. As a result, a Traffic Manger Profile has the Inactive status and Stopped for Endpoint monitor status.

like image 60
Oleg Burov Avatar answered Oct 20 '22 17:10

Oleg Burov


This site can’t be reached, niktm.trafficmanager.net’s server DNS address could not be found.

If I do not add any endpoints in my traffic manager, Monitor status is Inactive.

enter image description here

To verify DNS propagation using http://digwebinterface.com/, I could find similar result as yours niktm.trafficmanager.net.

enter image description here

And if I browse to {my traffic manager name}.trafficmanager.net, I could see same error message in browser.

enter image description here

If I add available endpoints for traffic manager, I will see Dig result like below, and I could browse to {my traffic manager name}.trafficmanager.net.

enter image description here

I suspect that your endpoints do not really add to traffic manager even though Azure portal shows they are enabled and online. You could try to create a new traffic manager and add endpoints to check if it will work fine, if Azure traffic manager still/always not work fine in your subscription, you may need to create a support ticket to fix this issue.

like image 45
Fei Han Avatar answered Oct 20 '22 15:10

Fei Han