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

Multiple Spanning Tree on Cisco

Telnet to CORE1:sys #enter system configstp region-configurationregion-name HQrevision-level 1instance 1 vlan 1 2 15instance 2…

Configure Port Mirror on Enterasys

Note: Websense requires a mirrored connection to the port that has traffic to the gateway.…