Posted On March 31, 2019

How to migrate DHCP Server

kimconnect 0 comments
blog.KimConnect.com >> Networking >> How to migrate DHCP Server
1. Run these commands on the existing DHCP server (currently Windows Server 2003)
net stop dhcpserver
cd %systemroot%\system32\dhcp
jetpack dhcp.mdb temp.mdb
netsh dhcp server export C:\dhcp.txt all

2. Import the dhcp database onto the new server
Copy the dhcp.txt file from the original server onto new server's c:\ drive
Run these shell commands:
Import-Module ServerManager
Add-WindowsFeature -IncludeManagementTools dhcp
Add-DhcpServerInDC dhcpservername dhcpipaddress
netsh dhcp server import c:\dhcp.txt all
restart-service dhcp -force

3. Test to see if the new server now assume the DHCP role by running these commands on a workstation with DHCP enabled
ipconfig/release
ipconfig/renew
ipconfig /all | find /i "DHCP Server"

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Scan for Available or Unavailable IPs

This function is a demonstration of multi-tasking using PowerShell. The program will ping multiple targets…

HP Procurve Router: ACL Routing & OSPF

General ACL application------------------------------------------------------------------------ip access-list extended <NAME>deny ip <SOURCE>/<mask> <destination>/mask logpermit ip any any# There is…

ARP MAC to IP Resolution

If entry already exists on the ARP table:arp -a | find "XX-XX-XX-XX-XX-XX"If entry does not…