Difficulty: Easy
Correct Answer: For different subnets (non-overlapping scopes per subnet)
Explanation:
Introduction / Context:
Dynamic Host Configuration Protocol (DHCP) automates IP address assignment. When deploying multiple DHCP servers, careful scope planning is essential to avoid duplicate leases, address conflicts, and unexpected exhaustion across subnets.
Given Data / Assumptions:
Concept / Approach:
Each subnet needs its own defined scope (pool of addresses and options). With multiple servers, scopes must be non-overlapping for a given subnet or coordinated via split-scope/failover so that no two servers hand out the same address. Practically, servers are configured to serve different subnets or split a subnet’s pool carefully (e.g., 80/20) with proper failover settings.
Step-by-Step Solution:
Verification / Alternative check:
Check lease databases for duplicates; run conflict detection; verify helper-address/relay configuration so requests from each subnet reach the intended DHCP servers.
Why Other Options Are Wrong:
Common Pitfalls:
Overlapping pools between servers, forgetting DHCP relay (IP helper) configuration, and inconsistent option sets that confuse clients.
Final Answer:
For different subnets (non-overlapping scopes per subnet)
Discussion & Comments