nerdexam
F5

101 · Question #697

server is still on use. And the new virtual server is on a different ip address. What should be done to test this new virtual server using the fully quailed domain name for this application?

The correct answer is C. make an entry in the client host file. The client hosts file is resolved before DNS, allowing a single machine to map an FQDN to a new IP address without altering DNS records that would affect all users.

Section 2: F5 Solutions and Technology

Question

server is still on use. And the new virtual server is on a different ip address. What should be done to test this new virtual server using the fully quailed domain name for this application?

Options

  • Aadd a DNS record for the fully qualified domain name
  • Badd the fully qualified domain name to the browser cache
  • Cmake an entry in the client host file
  • Dmake an entry in the web server services file

How the community answered

(61 responses)
  • B
    2% (1)
  • C
    95% (58)
  • D
    3% (2)

Why each option

The client hosts file is resolved before DNS, allowing a single machine to map an FQDN to a new IP address without altering DNS records that would affect all users.

Aadd a DNS record for the fully qualified domain name

Adding or changing a DNS record would redirect all clients resolving that FQDN to the new IP, breaking access for users still relying on the old server.

Badd the fully qualified domain name to the browser cache

Browser DNS caches store previously resolved responses from DNS queries and cannot be manually pre-populated with new custom mappings.

Cmake an entry in the client host fileCorrect

Operating systems check the local hosts file for hostname-to-IP mappings before querying DNS servers, so adding the FQDN with the new virtual server's IP address in the client's hosts file directs only that client to the new server. This approach isolates the test to a single machine and avoids disrupting other users who still depend on the old server remaining reachable via the live DNS record.

Dmake an entry in the web server services file

A server's services file maps service names to port numbers (like /etc/services on Linux) and has no role in hostname-to-IP address resolution.

Concept tested: Client hosts file for local FQDN resolution override

Source: https://learn.microsoft.com/en-us/windows-server/networking/technologies/nslookup/nslookup-overview

Topics

#hosts file#FQDN#DNS testing#virtual server

Community Discussion

No community discussion yet for this question.

Full 101 Practice