You plan to configure an Azure Application Gateway v2 to support end-to-end TLS encryption for a backend pool of web servers. The backend servers use self-signed certificates for their TLS configurations. You have already created the Application Gateway, the frontend public IP address, and the backend pool.
You need to complete the end-to-end TLS configuration so that the Application Gateway can securely receive traffic from clients and securely transmit it to the backend pool.
Which sequence of actions should you perform? To answer, arrange the actions in the correct order.
- 1Export the public certificate (.cer) from the backend web servers.
- 2Create Backend Settings using the HTTPS protocol, and upload the exported backend certificate.
- 3Create a custom HTTPS health probe and associate it with the HTTPS Backend Settings.
- 4Create an HTTPS listener and associate it with the frontend SSL certificate.
- 5Create a request routing rule that binds the HTTPS listener, the Backend Settings, and the backend pool.
Cevap
Export the public certificate (.cer) from the backend web servers, then create Backend Settings using the HTTPS protocol and upload the exported backend certificate, then create a custom HTTPS health probe and associate it with the HTTPS Backend Settings, then create an HTTPS listener and associate it with the frontend SSL certificate, and finally create a request routing rule that binds the HTTPS listener, the Backend Settings, and the backend pool.
The correct sequence starts by exporting the backend certificate so that it can be uploaded during the creation of the HTTPS Backend Settings to establish trust. Once the Backend Settings are created, a custom HTTPS health probe is associated with them. The HTTPS listener is then created to receive client-side TLS connections. Finally, the routing rule binds the listener, the Backend Settings, and the backend pool together.
Adım Adım Çözüm
Anahtar Kavram
Configuring end-to-end TLS on Azure Application Gateway v2 requires establishing trust by uploading the backend's public certificate to the Backend Settings, setting up a custom HTTPS health probe, configuring an HTTPS listener with a frontend certificate, and linking them via a routing rule.