0
0
Azurecloud~10 mins

Traffic Manager routing methods in Azure - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to set the routing method to prioritize the endpoint with the lowest latency.

Azure
az network traffic-manager profile create --name MyProfile --resource-group MyResourceGroup --routing-method [1]
Drag options to blanks, or click blank then click option'
APerformance
BWeighted
CPriority
DGeographic
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Priority instead of Performance routing.
Using Geographic routing which routes by location, not latency.
2fill in blank
medium

Complete the code to create a Traffic Manager profile that distributes traffic based on assigned weights.

Azure
az network traffic-manager profile create --name MyProfile --resource-group MyResourceGroup --routing-method [1]
Drag options to blanks, or click blank then click option'
APriority
BWeighted
CMultivalue
DPerformance
Attempts:
3 left
💡 Hint
Common Mistakes
Using Priority routing which sends all traffic to the highest priority endpoint.
Confusing Performance routing with Weighted routing.
3fill in blank
hard

Fix the error in the code to use the routing method that sends traffic to the endpoint with the highest priority.

Azure
az network traffic-manager profile create --name MyProfile --resource-group MyResourceGroup --routing-method [1]
Drag options to blanks, or click blank then click option'
AWeighted
BSubnet
CPriority
DPerformance
Attempts:
3 left
💡 Hint
Common Mistakes
Using Weighted routing which splits traffic instead of prioritizing.
Choosing Performance routing which routes by latency.
4fill in blank
hard

Fill both blanks to create a Traffic Manager profile using Geographic routing and specify the resource group.

Azure
az network traffic-manager profile create --name MyProfile --resource-group [1] --routing-method [2]
Drag options to blanks, or click blank then click option'
AMyResourceGroup
BWeighted
CGeographic
DPriority
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up routing methods or resource group names.
Using Priority or Weighted routing instead of Geographic.
5fill in blank
hard

Fill all three blanks to create a Traffic Manager profile with Multivalue routing, specify the resource group, and name the profile.

Azure
az network traffic-manager profile create --name [1] --resource-group [2] --routing-method [3]
Drag options to blanks, or click blank then click option'
AMyProfile
BMyResourceGroup
CMultivalue
DPerformance
Attempts:
3 left
💡 Hint
Common Mistakes
Using Performance routing instead of Multivalue.
Swapping resource group and profile name.