TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Post an article
Translate this page
Powered by
Microsoft® Translator
Wikis - Page Details
First published by
Kailas Goliwadekar
When:
16 Apr 2016 6:02 AM
Last revision by
Carsten Siemens
When:
10 Apr 2017 12:32 PM
Revisions:
3
Comments:
1
Options
Subscribe to Article (RSS)
Share this
Engage!
Wiki Ninjas Blog
(
Announcements
)
Wiki Ninjas on Twitter
TechNet Wiki Discussion Forum
Can You Improve This Article?
Positively!
Click Sign In to add the tip, solution, correction or comment that will help other users.
Report inappropriate content using
these instructions
.
Wiki
>
TechNet Articles
>
Implementation of Traffic Manager
Implementation of Traffic Manager
Article
History
Implementation of Traffic Manager
Azure Traffic Manager allows to control distribution of traffic to specified end points. These end points include Azure websites and cloud services.
Traffic Manager improves availability of critical applications, responsiveness of the applications, can help in maintenance of a service without downtime, and traffic distribution based on certain configuration that is set up.
Implementation of Traffic Manager
1 - Log on to Azure Portal
2 - Click Traffic Manager , and Add New as shown below
3- In the Quick Create box, as shown below there are 3 options of Load Balancing viz. Performance (default) , Round Robin or FailOver. Select the default "Performance" option, later on we can change it as required. The performance option ensures the load is equally distributed to the Traffic Manager endpoints
The Round robin ensure requests are hit to the endpoints alternatively where as the failover option ensures if the first end point goes down then the second one handles all the requests.
4- Put a name for your Traffic Manager and click Create
Configuration of Traffic Manager
Once the traffic Manager is created, you need to configure it. Click the traffic manager created. Click on the "EndPoints" tab to add the endpoints
Select either cloud service or Azure website as end point. Here I am adding cloudservice as endpoints taking an MVC website as an example.
Once you add the EndPoints, Azure gets the status of end points. The status of the traffic manager would be degraded one.
To get this online, you would need to do more two things. The first one being, add a simple html file (e.g. probe.html) at the root of the website. This would return status code as 200. Ensure this file can be anonymously accessed. The second one, add a negate entry in the web.config as follows
<conditions>
<add input="{HTTP_HOST}" matchType="Pattern" pattern="^xxxx.cloudapp.net$" negate="true" />
</conditions>
After doing above, you would see the status of the traffic manager as "online". The probe.html could be advanced by writing custom code e.g. to check DB connection ,etc & then return the status code.
Ref -
https://azure.microsoft.com/en-us/documentation/articles/traffic-manager-overview/