0

Dave, Drop a load on em’

DHCP how can I explain it.

I’ll Take you Frame by Frame it.

To have y’all jumpin’ shall we singin’ it

 

I recently came across the need to migrate a DHCP server from windows 2003 to a new Windows 2008 server.

Shocking 2K3 servers are still out there, but I wanted to share the process to help in a successful migration.

 

Export the DHCP database from Windows 2003:

1. On the Windows 2003 DHCP server, navigate to a command prompt

2. Type the following Command: netsh

3. Type the following Command: DHCP

4. Type the following Command: server \\Name or IP Address or DHCP Server

Example:  netsh DHCP server \\BigRobLikestoPlay (if BigRobLikestoPlay is your server name)

5. Type the following Command: export c:\w2k3DHCPdb all

Note You must have local administrator permissions to export the data.

Import the DHCP database

1. Copy the exported DHCP database file to the local hard disk of the Windows Server 2008-based computer.

2. Install the DHCP Role on the server.

3. Stop the DHCP server service on the server. To do this, follow these steps:

a. Log on to the target DHCP server by using an account that is a member of the local Administrators group.

b. Click Start, click Run, type cmd in the Open box, and then click OK.

c. At the command prompt, type net stop DHCPserver , and then press ENTER. You receive a “The Microsoft DHCP Server service is stopping. The Microsoft DHCP Server service was stopped successfully” message.

d. Type exit, and then press ENTER.

4. Delete the DHCP.mdb file under c:\windows\system32\DHCP folder.

5. Start the DHCP server service.

6. Right-click on the Command Prompt (cmd) and select run as administrator, to open the cmd prompt using elevated privileges.

Note You must have local administrator permissions to import the data.

7. Type the following Command: netsh

8. Type the following Command: DHCP

9. Type the following Command: server <\\Name or IP Address>

10. Type the following Command: import c:\w2k3DHCPdb

11. Restart DHCP and verify the database has moved over properly

 

Dont forget to disable DHCP server services on the Windows 2003 Server, and finally remove the DHCP role..

Or you can decomission that dinasaur after other roles\services has been migrated off too

 

So who’s down with DHCP ( all the homies)

While exporting the configuration on the Windows 2003 Server, using netsh, you may see an error message similar to one of the following:
·         Access is denied
·         An attempt was made to load a program with an incorrect format.

In this case following steps can be followed to export the DHCP database.
1.                   On the Windows 2003 DHCP server which had the original database, at a cmd prompt type the following command: netsh DHCP server dump >c:\DHCPdump.txt
2.                   Copy the DHCPdump.txt to another Windows 2003 box
3.                   Open up the text file and edited the text file with a find and replace changing the IP address from the old to the new Windows 2008 server, and then save the file.
4.                   Stop the DHCP server service and delete the contents of the DHCP folder and subfolders.
5.                   Start the DHCP server.
6.                   Right-click on the Command Prompt (cmd) and select run as administrator, to open the cmd prompt using elevated privileges.
Note You must have local administrator permissions to import the data.

7.                   At the command prompt type: netsh exec DHCPdump.txt
8.                   At the command prompt type: netsh DHCP server initiate reconcile
9.                   Open up the console and check that all of the options are intact and the Reservations are present.
10.               At the command prompt type: netsh DHCP server export c:\DHCP.txt all

In some scenarios you may receive the following error while importing the database on a 2008 server.
“The Requested operation requires Elevation.”

Make sure that the command prompt is opened with elevated privilege on windows server 2008.
To do so right click on the command prompt menu option and select run as administrator and then try and import the database.

Leave a Reply

You must be logged in to post a comment.