nerdexam
F5

101 · Question #582

An administrator needs to do the following: install a load balancer in front of an existing application test application performance avoid reconfiguration of the application server avoid interruption

The correct answer is A. modify the test client's local host file. To test a new load balancer without disrupting production users or reconfiguring the app server, only the test client's hosts file needs to be updated to point to the new load balancer IP.

Section 3: Load Balancing and High Availability Basics

Question

An administrator needs to do the following:

  • install a load balancer in front of an existing application
  • test application performance
  • avoid reconfiguration of the application server
  • avoid interruption of users accessing the application

Options

  • Amodify the test client's local host file
  • Bmodify the DNS Server A-record for the application
  • Cconfigure IP Anycasting
  • Dconfigure Port Address Translation

How the community answered

(42 responses)
  • A
    74% (31)
  • B
    14% (6)
  • C
    7% (3)
  • D
    5% (2)

Why each option

To test a new load balancer without disrupting production users or reconfiguring the app server, only the test client's hosts file needs to be updated to point to the new load balancer IP.

Amodify the test client's local host fileCorrect

Modifying the local hosts file on the test client overrides DNS resolution only for that machine, allowing the tester to direct traffic to the new load balancer IP without changing the DNS A-record, reconfiguring the application server, or affecting any other users still resolving the original address.

Bmodify the DNS Server A-record for the application

Modifying the DNS A-record would redirect all users to the new load balancer immediately, causing potential disruption and violating the requirement to avoid interrupting existing users.

Cconfigure IP Anycasting

IP Anycast routes traffic to the nearest node based on routing topology and requires network-level reconfiguration, which does not satisfy the no-reconfiguration and no-disruption requirements.

Dconfigure Port Address Translation

Port Address Translation changes how ports are mapped on a network device and does not selectively route a single test client's traffic to a new load balancer without broader network changes.

Concept tested: Local hosts file override for staged testing

Source: https://learn.microsoft.com/en-us/windows/win32/winsock/hosts-file-format

Topics

#load balancer deployment#local hosts file#zero-downtime testing#application testing

Community Discussion

No community discussion yet for this question.

Full 101 Practice