DHCP scope utilization report
A read-only DHCP scope report that surfaces high utilization, exhausted ranges, and cleanup candidates.
Good For
- DHCP exhaustion triage
- subnet planning
- IPAM cleanup
- branch office review
- network migration prep
How to Use It
- Start with the DHCP server or failover pair tied to the affected site, VLAN, or subnet.
- Capture every IPv4 scope, state, range, and utilization percentage.
- For hot scopes, collect lease evidence so long-lived clients, reservations, and stale names can be reviewed.
- Compare utilization against planned subnet size, exclusions, reservations, and recent network changes.
- Flag exhausted scopes, disabled scopes, high reservation density, and stale lease cleanup candidates.
- Export findings for network owner review before expanding ranges or changing lease duration.
Execution Modes
- local
- remote-single-host
Inputs and Outputs
Inputs
- DHCP server name
- scope review threshold
- known site or VLAN mapping
Outputs
- verbose-console
- csv
- future-html-report
Command Starter
Safe to run: read-only
Get-DhcpServerv4Scope -ComputerName $DhcpServer | Select-Object ScopeId, Name, State, StartRange, EndRange Get-DhcpServerv4ScopeStatistics -ComputerName $DhcpServer | Select-Object ScopeId, AddressesFree, AddressesInUse, PercentageInUse Get-DhcpServerv4Lease -ComputerName $DhcpServer -ScopeId 10.10.10.0 | Select-Object IPAddress, HostName, ClientId, AddressState, LeaseExpiryTime
Validation
- Every reviewed DHCP scope has utilization evidence or an access/error note.
- Scopes above the review threshold have lease evidence and a proposed owner action.
- Any later DHCP change is validated by rerunning the utilization report.
Reporting
- export DHCP scope utilization and hot-scope lease details to CSV
- group high-utilization scopes by site, VLAN, and owning network team
- promote repeated use into DHCP capacity planning evidence
Safety Notes
- This report is read-only and should not add scopes, delete leases, or change lease duration.
- Do not expand ranges or edit exclusions without network owner approval and change tracking.