
Answer-first summary for fast verification
Answer: test.sample.com
Overall explanation Correct option: test.sample.com - You can use host conditions to define rules that route requests based on the hostname in the host header (also known as host-based routing). This enables you to support multiple subdomains and different top-level domains using a single load balancer. A hostname is not case-sensitive, can be up to 128 characters in length, and can contain any of the following characters: 1. A–Z, a–z, 0–9 2. - . 3. * (matches 0 or more characters) 4. ? (matches exactly 1 character) You must include at least one "." character. You can include only alphabetical characters after the final "." character. The rule *.sample.com matches test.sample.com but doesn't match sample.com. Incorrect options: sample.com sample.test.com SAMPLE.COM These three options contradict the explanation provided above, so these options are incorrect.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
A development team has set up an Elastic Load Balancer (ELB) with host-based routing capabilities. This setup is intended to facilitate the management of various subdomains and top-level domains under the same ELB. Understanding the intricacies of how ELB will handle different domain configurations is crucial for the team’s objectives.
Given their configuration, what does the rule *.sample.com specifically match?
Select one from the following options:
A
sample.com
B
sample.test.com
C
test.sample.com
D
SAMPLE.COM
No comments yet.