Deployed and configured a Windows Server 2025 x64 Gen2 DHCP server in Microsoft Azure.
The lab simulates a small business network by deploying a DHCP server, creating multiple DHCP scopes for different network segments, configuring DHCP options, implementing address exclusions and reservations, and activating each scope for automatic IP address assignment.
This lab builds upon the skills presented in the Active Directory Using Microsoft Azure repository. I did this lab after the AD.
- Microsoft Azure
- Windows Server 2025 x64 Gen2
- DHCP Server
- Remote Desktop (RDP)
| Machine | Operating System | Purpose |
|---|---|---|
| C1 | Windows Server 2025 x64 Gen2 | DHCP Server |
Azure Virtual Network: vn_eur
- Deploy a Windows Server DHCP server
- Create multiple DHCP scopes
- Configure address pools and exclusions
- Configure lease durations
- Configure DHCP scope options
- Create DHCP reservations
- Verify scope activation
- Created an Azure Windows Server 2025 Datacenter virtual machine.
- Connected the server to the
vn_eurvirtual network. - Installed the DHCP Server role using Server Manager.
- Verified successful installation through the Windows Server management tools.
Created three DHCP scopes to represent different network segments.
| Scope | Network | Lease Duration |
|---|---|---|
| Users LAN | 192.168.1.0/24 | 8 Hours |
| Client | 192.168.2.0/24 | 1 Day |
| Guest Wi-Fi | 192.168.3.0/24 | 2 Hours |
Each scope includes:
- A dedicated address pool
- Reserved exclusion ranges
- Automatic activation
Configured individual address pools and exclusion ranges for each network.
- Address Pool:
- 192.168.1.10 – 192.168.1.200
- Exclusion:
- 192.168.1.10 – 192.168.1.20
- Address Pool:
- 192.168.2.10 – 192.168.2.150
- Exclusion:
- 192.168.2.10 – 192.168.2.30
- Address Pool:
- 192.168.3.50 – 192.168.3.250
- Exclusion:
- 192.168.3.50 – 192.168.3.60
The shorter lease duration for the Guest Wi-Fi network encourages quicker IP address reuse; typical in a work environment.
Configured common DHCP options for every scope.
| Option | Value |
|---|---|
| 003 Router | 192.168.0.254 |
| 006 DNS Server | Private IP address of C1 |
| 015 DNS Domain Name | indigo.local |
These settings ensure DHCP clients automatically receive their default gateway, DNS server, and DNS search domain.
Created a DHCP reservation within the Users LAN scope for a network phone.
| Device | Reserved IP |
|---|---|
| Phone-1 | 192.168.1.15 |
The reservation guarantees the device always receives the same IP address while remaining centrally managed by DHCP.
Verified that:
- All DHCP scopes were successfully activated.
- Address pools and exclusions were tuned correctly.
- DHCP reservations were created successfully.
This project provided hands-on experience deploying and administering a Windows Server DHCP environment in Microsoft Azure.
Along the way, I gained practical experience configuring DHCP scopes, managing IP address pools and exclusions, configuring DHCP options, implementing DHCP reservations, selecting lease durations based on network requirements, and organizing IP address allocation for multiple network segments using common enterprise practices.
Moreover, this project ties in well with the Active Directory Using Microsoft Azure. Together, the concepts of networking has become more clear to me.