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

Function to Import PortQry (a Systernal Utility)

Update: much adieu about nothing. Run this quick script and ignore the prior jibberish: if…

SNMP

SNMP Enabled Device: - Get - Get-next - Get-Response - Set - Trap   Events…

How to Install & Configure Pihole on Ubuntu 20.04

1. Installation- Run these commands: # sudo apt-get install gamin -ysudo curl -sSL https://raw.githubusercontent.com/pi-hole/pi-hole/master/automated%20install/basic-install.sh |…