You have a public load balancer that balances ports 80 and 443 across three virtual machines.
You need to direct all the Remote Desktop Protocol (RDP) connections to VM3 only.
What should you configure?
Click on the arrows to vote for the correct answer
A. B. C. D.A
https://docs.microsoft.com/en-us/azure/load-balancer/tutorial-load-balancer-port-forwarding-portal https://pixelrobots.co.uk/2017/08/azure-load-balancer-for-rds/The correct answer is A. an inbound NAT rule.
Explanation:
A public load balancer is used to balance traffic across multiple VMs to distribute the load and increase availability. By default, the load balancer distributes all incoming traffic across all the VMs.
In this scenario, you need to direct all RDP connections to VM3 only, which means you need to create a rule that maps the incoming RDP traffic to the IP address of VM3.
To achieve this, you can create an inbound NAT rule that maps a public IP address and port to a private IP address and port. In this case, you would create an inbound NAT rule that maps the public IP address and port used for RDP traffic to the private IP address and port of VM3.
Once the inbound NAT rule is created, all RDP traffic will be directed to VM3 only, while traffic on ports 80 and 443 will still be balanced across all three VMs.
The other options are not correct:
B. Creating a new public load balancer for VM3 is not necessary since the existing load balancer can handle the traffic.
C. Configuring a frontend IP configuration defines the public IP address for the load balancer, but it does not affect the traffic routing.
D. Creating a load balancing rule defines how the traffic is distributed across multiple VMs, but it does not allow you to direct traffic to a specific VM.