0
0
Azurecloud~20 mins

Backend pools and health probes in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Backend Pools and Health Probes Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
How does a health probe affect backend pool traffic?

In Azure Load Balancer, what happens when a backend pool VM fails the health probe?

AThe VM is restarted automatically by the load balancer.
BThe VM continues to receive traffic but logs an error.
CThe VM is removed from the backend pool and stops receiving new traffic.
DThe load balancer redirects traffic to the failing VM to test recovery.
Attempts:
2 left
💡 Hint

Think about how the load balancer ensures only healthy VMs get traffic.

Configuration
intermediate
2:00remaining
Identify the correct health probe configuration for TCP port 80

Which Azure CLI command correctly creates a TCP health probe on port 80 for a load balancer?

Aaz network lb probe create --resource-group MyRG --lb-name MyLB --name MyProbe --protocol Http --port 80
Baz network lb probe create --resource-group MyRG --lb-name MyLB --name MyProbe --protocol Udp --port 80
Caz network lb probe create --resource-group MyRG --lb-name MyLB --name MyProbe --protocol Tcp --port 443
Daz network lb probe create --resource-group MyRG --lb-name MyLB --name MyProbe --protocol Tcp --port 80
Attempts:
2 left
💡 Hint

Check the protocol and port number carefully.

Architecture
advanced
2:00remaining
Designing backend pools for high availability

You want to design an Azure Load Balancer backend pool to ensure high availability across two regions. Which approach is best?

ACreate separate backend pools in each region and use Traffic Manager to route traffic.
BAdd all VMs from both regions into a single backend pool on one load balancer.
CConfigure backend pools only in the primary region and failover manually.
DUse a single VM in one region as the backend pool to simplify management.
Attempts:
2 left
💡 Hint

Consider geographic redundancy and traffic routing.

security
advanced
2:00remaining
Securing health probes from unauthorized access

How can you secure Azure Load Balancer health probes to prevent unauthorized access to backend VMs?

AConfigure Network Security Groups to allow probe IP ranges only on probe ports.
BDisable health probes and rely on manual monitoring.
CAllow all inbound traffic to backend VMs to ensure probes work.
DUse public IP addresses for backend VMs to isolate probes.
Attempts:
2 left
💡 Hint

Think about controlling network traffic to only trusted sources.

Best Practice
expert
2:00remaining
Optimizing health probe intervals for backend responsiveness

What is the best practice for setting health probe interval and unhealthy threshold to quickly detect backend failures without causing false positives?

ASet a long interval (60 seconds) and a high unhealthy threshold (10) to reduce load.
BSet a short interval (5 seconds) and a low unhealthy threshold (2) for fast detection.
CSet interval and threshold to 1 to detect failures instantly.
DDisable health probes and monitor backend manually.
Attempts:
2 left
💡 Hint

Balance detection speed and avoiding false alarms.