4.6 8 Configure A Split Scope

9 min read

Introduction: What Is a Split Scope and Why It Matters

A split scope is a DHCP (Dynamic Host Configuration Protocol) design strategy that distributes a pool of IP addresses across two or more DHCP servers, typically allocating a percentage of the address range to each server. This configuration improves fault tolerance, balances network load, and reduces the risk of a single point of failure in environments where continuous IP address provisioning is critical. By configuring a split scope, network administrators can make sure if one DHCP server goes offline, the remaining server(s) can still lease addresses to clients, keeping the network operational without manual intervention.

In this article we will walk through the step‑by‑step process of configuring a split scope on Windows Server 2019/2022 and on Cisco IOS, explain the underlying concepts, discuss best practices, and answer common questions. Whether you are managing a small office network or a large enterprise, mastering split scope configuration will help you build a more resilient DHCP infrastructure.


1. Core Concepts Behind Split Scope

1.1 Traditional Single‑Scope DHCP

In a traditional single‑scope setup, one DHCP server holds the entire address pool for a subnet. All client requests are answered by that server, which means:

  • Single point of failure – if the server crashes, no new leases can be issued.
  • Potential bottleneck – high request volumes may overload the server.

1.2 How Split Scope Works

A split scope divides the address pool into two overlapping ranges, each assigned a percentage of the total pool. Here's one way to look at it: with a /24 network (256 addresses) and a 80/20 split:

  • Primary DHCP server receives 80 % of the pool (e.g., 192.168.1.20‑192.168.1.210).
  • Secondary DHCP server receives the remaining 20 % (e.g., 192.168.1.211‑192.168.1.230).

Both servers are configured with the same subnet mask, default gateway, and DNS options, so clients cannot distinguish which server granted the lease. If the primary server fails, the secondary server can still provide the remaining addresses, preventing service disruption Took long enough..

1.3 Benefits of Split Scope

Benefit Explanation
High availability Reduces downtime by providing a backup DHCP source.
Load distribution Balances lease requests across multiple servers, improving response time.
Simplified maintenance Allows one server to be taken offline for updates without affecting clients.
Scalability Easy to add additional DHCP servers as the network grows.

2. Prerequisites Before Configuring Split Scope

  1. Two or more functional DHCP servers – each must be authorized in Active Directory (for Windows) or have proper IOS configuration.
  2. Identical DHCP options – subnet mask, default gateway, DNS servers, and any custom options must match on all servers.
  3. Network documentation – know the subnet range, reserved addresses (static devices, printers, etc.), and the desired split percentage (commonly 80/20, 70/30, or 60/40).
  4. Administrative privileges – you need to be a member of the Domain Admins group on Windows or have enable mode on Cisco devices.

3. Configuring Split Scope on Windows Server

3.1 Step 1 – Create the Primary Scope

  1. Open Server ManagerToolsDHCP.

  2. Right‑click the server name → New Scope….

  3. Follow the wizard:

    • Name: PrimaryScope_192.168.1.0/24.
    • IP range: Enter the primary percentage (e.g., 192.168.1.20 – 192.168.1.210 for an 80 % split).
    • Exclusions: Add any static IPs (e.g., 192.168.1.1 – router, 192.168.1.2 – DNS).
    • Lease duration: Default 8 days works for most environments.
    • Options: Set subnet mask, router (default gateway), DNS servers, and any WINS or custom options.
  4. Click Finish to activate the scope.

3.2 Step 2 – Create the Secondary Scope

  1. On the secondary DHCP server, repeat the wizard.
  2. Use the remaining percentage of the address pool (e.g., 192.168.1.211 – 192.168.1.230 for a 20 % split).
  3. Important: The secondary scope must exclude the primary range entirely; overlapping ranges cause lease conflicts.
  4. Replicate exactly the same DHCP options (mask, gateway, DNS).

3.3 Step 3 – Authorize Both Servers

  • In the DHCP console, right‑click each server → Authorize.
  • Verify the servers appear as Authorized under the DHCP node.

3.4 Step 4 – Test the Configuration

  1. Release an existing lease on a client: ipconfig /release.
  2. Renew the lease: ipconfig /renew.
  3. Observe the DHCP server identifier in the output (ipconfig /all). It should show either the primary or secondary server, confirming that both are responding.

3.5 Step 5 – Monitor and Adjust

  • Use DHCP > Address Leases to view which server is handing out which addresses.
  • If the primary server is consistently overloaded, consider adjusting the split ratio (e.g., 70/30).

4. Configuring Split Scope on Cisco IOS (Router‑Based DHCP)

4.1 Define the Primary Pool

router# configure terminal
router(config)# ip dhcp pool PRIMARY_POOL
router(dhcp-config)# network 192.168.1.0 255.255.255.0
router(dhcp-config)# default-router 192.168.1.1
router(dhcp-config)# dns-server 8.8.8.8 8.8.4.4
router(dhcp-config)# lease 8
router(dhcp-config)# address 192.168.1.20 192.168.1.210
router(dhcp-config)# exit

4.2 Define the Secondary Pool

router(config)# ip dhcp pool SECONDARY_POOL
router(dhcp-config)# network 192.168.1.0 255.255.255.0
router(dhcp-config)# default-router 192.168.1.1
router(dhcp-config)# dns-server 8.8.8.8 8.8.4.4
router(dhcp-config)# lease 8
router(dhcp-config)# address 192.168.1.211 192.168.1.230
router(dhcp-config)# exit

4.3 Enable DHCP Service

router(config)# service dhcp

4.4 Verify the Pools

router# show ip dhcp binding
router# show ip dhcp pool

The output will list the address ranges and the number of active leases per pool, confirming that the split scope is operational.

4.5 Redundancy with HSRP or VRRP

For larger networks, pair the DHCP router with a Hot Standby Router Protocol (HSRP) or Virtual Router Redundancy Protocol (VRRP) instance. This ensures that the default gateway itself remains available even if one router fails, complementing the split‑scope DHCP design Practical, not theoretical..


5. Best Practices for Split Scope Deployments

5.1 Choose an Appropriate Split Ratio

  • 80/20 is a common default, providing ample backup capacity while keeping most leases on the primary server.
  • For high‑availability environments (e.g., data centers), consider a 60/40 or even 50/50 split.
  • Adjust the ratio based on observed lease usage and server performance metrics.

5.2 Keep Scope Options Synchronized

Any change to DHCP options (e.g., adding a new DNS server) must be replicated on all DHCP servers. Use a configuration management tool (PowerShell DSC, Ansible, or Cisco Prime) to enforce consistency No workaround needed..

5.3 Reserve Critical Devices Outside the Split Ranges

Static devices such as core switches, firewalls, and printers should have reserved IPs outside both primary and secondary ranges. This prevents accidental lease collisions Not complicated — just consistent. Less friction, more output..

5.4 Monitor Lease Utilization

  • Set up alerts when a scope reaches 80 % utilization.
  • Use Windows Performance Monitor counters (DHCP Server -> Addresses Leased) or Cisco’s SNMP traps for proactive capacity planning.

5.5 Document the Split Scope Design

Maintain a diagram that shows:

  • Subnet CIDR
  • Primary and secondary address ranges
  • Split percentage
  • Server hostnames and IPs

Documentation speeds up troubleshooting and assists new team members.


6. Frequently Asked Questions (FAQ)

Q1: Can I use more than two DHCP servers in a split scope?
Yes. Split scope can be extended to three or more servers by dividing the address pool into smaller percentages (e.g., 50/30/20). Ensure each server’s range does not overlap and that all options remain identical.

Q2: What happens if both DHCP servers are down?
If both servers fail, clients will retain their existing leases until they expire. To avoid prolonged outages, configure a fallback static address on critical devices or use DHCP failover (a more advanced redundancy protocol available in Windows Server 2012+).

Q3: Is split scope the same as DHCP failover?
No. Split scope simply divides the address pool; it does not synchronize lease databases. DHCP failover creates a master‑slave relationship where lease information is shared, providing faster recovery and load balancing without the risk of duplicate leases.

Q4: Can I implement split scope on IPv6?
IPv6 uses DHCPv6 and Stateless Address Autoconfiguration (SLAAC). While the concept of splitting address pools exists, the configuration differs and typically relies on DHCPv6 prefix delegation rather than a traditional split scope Simple, but easy to overlook. Practical, not theoretical..

Q5: Will split scope affect network performance?
Properly sized pools and balanced ratios improve performance by preventing a single server from becoming a bottleneck. That said, misconfiguration (overlapping ranges or mismatched options) can cause lease failures and increased broadcast traffic.


7. Troubleshooting Common Issues

Symptom Likely Cause Resolution
Clients receive “DHCP Server Not Available” Both servers offline or network segmentation blocking DHCP traffic Verify server power, network ACLs, and that the DHCP relay (IP helper) is correctly configured on routers.
Duplicate IP address warnings Overlapping address ranges between scopes Re‑examine the address statements on each server; ensure no overlap. Day to day,
Only primary server issues leases Secondary scope not activated or excluded range too small Check the scope status (Active/Inactive) and verify that the exclusion list does not inadvertently cover the entire secondary range.
Clients get wrong DNS server DHCP options not synchronized Compare the option 006 (DNS Servers) on both servers; correct mismatches and restart the DHCP service if needed.

8. Advanced Considerations

8.1 Combining Split Scope with DHCP Failover

For mission‑critical networks, you can layer split scope with DHCP failover. In practice, deploy two pairs of servers: each pair shares a failover relationship, and the pairs together constitute a split scope. This provides both load balancing and lease synchronization, delivering the highest level of resilience.

8.2 Using PowerShell to Automate Scope Creation

# Parameters
$Subnet = '192.168.1.0'
$Mask   = '255.255.255.0'
$PrimaryStart = '192.168.1.20'
$PrimaryEnd   = '192.168.1.210'
$SecondaryStart = '192.168.1.211'
$SecondaryEnd   = '192.168.1.230'
$Gateway = '192.168.1.1'
$Dns = @('8.8.8.8','8.8.4.4')

# Primary scope
Add-DhcpServerv4Scope -Name 'PrimaryScope' -StartRange $PrimaryStart -EndRange $PrimaryEnd -SubnetMask $Mask -State Active
Set-DhcpServerv4OptionValue -ScopeId $Subnet -Router $Gateway -DnsServer $Dns

# Secondary scope
Add-DhcpServerv4Scope -Name 'SecondaryScope' -StartRange $SecondaryStart -EndRange $SecondaryEnd -SubnetMask $Mask -State Active
Set-DhcpServerv4OptionValue -ScopeId $Subnet -Router $Gateway -DnsServer $Dns

Running this script on each server automates the repetitive steps, reduces human error, and ensures both scopes share identical options.

8.3 Monitoring with System Center Operations Manager (SCOM)

SCOM provides built‑in DHCP monitoring packs that can track lease utilization, server health, and split‑scope performance. Setting up alerts for lease exhaustion or service downtime helps maintain continuous availability That's the part that actually makes a difference..


9. Conclusion

Configuring a split scope is a straightforward yet powerful method to boost DHCP reliability, balance network load, and simplify maintenance. By dividing the address pool, synchronizing DHCP options, and following best‑practice guidelines—such as selecting an appropriate split ratio, documenting the design, and monitoring utilization—you can create a resilient IP‑address provisioning system that keeps users connected even when a server fails Simple as that..

Whether you are working with Windows Server DHCP, Cisco IOS routers, or a hybrid environment, the steps outlined above provide a clear roadmap from planning to implementation and ongoing management. Embrace split scope as part of a broader high‑availability strategy, combine it with DHCP failover when needed, and you’ll make sure your network’s backbone remains solid, scalable, and ready for future growth No workaround needed..

Right Off the Press

Fresh Content

Worth Exploring Next

Before You Head Out

Thank you for reading about 4.6 8 Configure A Split Scope. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home