
DHCP WS SETUP
- Must be after Static IP address config done and new admin made
Server Manager
- Add Roles and Features
- DHCP Server role
- Installation wizard
- Small follow-the-wizard post-deploy config after restart :)
Authorizing DHCP Server in AD
- Server Manager
- Tools → DHCP
- Right-click server name
- Select "Authorize"
- Refresh to verify green checkmark appears
Scope
Creating an IPv4 Scope
- Open DHCP Management Console
- Right-click IPv4 → New Scope
- Follow New Scope Wizard:
- Enter scope name and description
- Define IP address range
- You can also add exclusions RESEARCH MORE
- Set lease duration
- Configure DHCP options
- Activate scope
Scope Options (TO DO NEXT!!)
Configuring Options via PowerShell
Set DNS servers for a scope:
Set-DhcpServerv4OptionValue -ScopeId 192.168.15.0 `
-OptionId 6 `
-Value "192.168.15.10", "192.168.15.11"
Set default gateway:
Set-DhcpServerv4OptionValue -ScopeId 192.168.15.0 `
-OptionId 3 `
-Value "192.168.15.1"
Reservations
Exclusions
Best Practices
Planning
- IP Address Planning
- Reserve first 10-20 IPs for static devices (servers, printers, network equipment)
- Size scope appropriately (consider 20-30% growth)
- Document IP allocation strategy
- Lease
- Desktop/laptop networks: 8-24 hours
- Guest networks: 1-2 hours
- Static workstations: 3-8 days
- Availability
- Configure DHCP failover for redundancy
- Monitor DHCP server health regularly
add more
Security (FINISH LATER)