+ All Categories
Home > Documents > akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if...

akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if...

Date post: 17-Aug-2020
Category:
Upload: others
View: 0 times
Download: 0 times
Share this document with a friend
20
Step-by-Step Migration DHCP from Windows Server 2003 to Windows Server 2008 R2 with Windows Server Migration Tools I see every day question about DHCP server migration from Windows 2003 to Windows Server 2008 R2, which is why I am writing this article. I think some people have no information about Windows Server 2008 R2 new feature (Windows Server Migration Tools ). With this new feature, you can easily DHCP migration. I'll show how you can use this function and I hope that helps people solve their problems. First basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name: DC-2003R2.Contoso.com Windows DHCP Server 2003 IP Address: 192.168.1.150 My Windows DHCP Server 2003 config in TestLab: Let's go: First, we must installing PowerShell and .NET Framework on Windows Server 2003. 1. Windows PowerShell 1.0 Localized Installation Package for Windows Server 2003 and for Windows XP ORWindows PowerShell 2.0 and Windows Remote Management (WinRM) 2.0 (KB968930)
Transcript
Page 1: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

Step-by-Step Migration DHCP from Windows Server 2003 to Windows Server 2008 R2 with Windows Server Migration ToolsI see every day question about DHCP server migration from Windows 2003 to Windows Server 2008 R2, which is why I am writing this article.

I think some people have no information about Windows Server 2008 R2 new feature (Windows Server Migration Tools   ). With this new feature, you can easily DHCP migration. I'll show how you can use this function and I hope that helps people solve their problems.

First basic Infos:

I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same.

Windows DHCP Server 2003 Name: DC-2003R2.Contoso.comWindows DHCP Server 2003 IP Address: 192.168.1.150

My Windows DHCP Server 2003 config in TestLab:

Let's go:

First, we must installing PowerShell and .NET Framework on Windows Server 2003.

1. Windows PowerShell 1.0 Localized Installation Package for Windows Server 2003 and for Windows XP    ORWindows PowerShell 2.0 and Windows Remote Management (WinRM) 2.0 (KB968930)  

2. Microsoft .NET Framework 3.5  

After installing, click Start, All Programs, Windows PowerShell, click Windows PowerShell.

Page 3: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

Select DHCP Server, click Next.

Click Next.

Select the network connections that the DHCP Server will use for servicing clients. In my test Lab is 192.168.1.151 (I use IPv4), then click Next

Page 4: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

On Parent domain write your Doman Name (my Domain name is Contoso.com), on Preferred and Alternate DNS server IPv4 address, write your DNS IP address (my DNS IP address 192.168.1.150 and 192.168.1.151), after writing clickValidate, then click Next.

I don't have WINS Servers, I select WINS is not required for applications on this network, then click Next (If you have WINS Servers, select WINS is required for applications on this network then write your WINS Server IP address on Preferred and Alternate WINS server IP address). 

Page 6: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

I use Contoso\Administrator account on Use currect crendentials for authorize DHCP sever in AD DS, then click Next.

Now, we can our settings, if is correct, click Install.

Page 7: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

After installig, click Close.

Now, install Windows Server Migration Tools feature on Windows Server 2008 R2. Open Server Manager console, right click on Features, click Add Features.

Select Windows Server Migration Tools, then Next.

Page 12: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

SMIGDeploy folder must be copied on Windows DHCP Server 2003.

Windows Server 2008 R2

Page 15: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

We learn about the commands with this command.Get-help Get-SmigServerFeature

Run Get-SmigServerFeature command (Gets the set of all Windows features that can be migrated from the local server or from the migration store).

Result returns, Windows DHCP server 2003 is valid for migration.

Page 16: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

To export the DHCP settings from server 2003 to 2008 R2, create new folder on Windows 2008 R2, for example DHCPData, then share this folder with read and change permissions.

After creating and sharing DHCPData folder, run thic command on Windows 2003.Export-SmigServerSetting -featureID DHCP -User All -Group -path \\DC-2008R2\DHCPData -Verbose

Now, set a password.

Page 17: akumarmani.files.wordpress.com …  · Web viewFirst basic Infos: I use Windows Server 2003 R2, if you have Windows Server 2003, all steps are same. Windows DHCP Server 2003 Name:

Export was completed successfully:

The folder was created a new DHCP svrmig.mig file, this file will be imported in new Windows DHCP Server 2008 R2.

I run this command and delete my Windows DHCP Server 2003 (This command deletes the server with the DNS name of Contoso.com and an IP address of 192.168.1.150 from the list of servers in Active Directory. This effectively removes any authorization for the DHCP Server service to run).Netsh DHCP delete server DC-2003R2.Contoso.com 192.168.1.150


Recommended