Link to home
Start Free TrialLog in
Avatar of bergquistcompany
bergquistcompany

asked on

Going to turn off DHCP on 2003 server and authorise on 2012 server before expiring

I have a 2003 DC I'm replacing with a 2012.  I have DNS pointing to the new 2012 machine already and am ready to turn off the 2003 and bring up 2012, but have DHCP down to 2 hours but wanted to know should I turn it down before expiration or after?  They all expire around 9-10am.
ASKER CERTIFIED SOLUTION
Avatar of BurundiLapp
BurundiLapp
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
IF you shutdown DHCP now then the computers will still have an ip address it will try to obtain a new lease and it will not since the DHCP server is down.

How many computers we talking here?

You more than likely will have to do a few ipconfig /release and ipconfig /renew

maybe even ipconfig /flushdns on some.

Best to switch over off peak hours with minimal access.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bergquistcompany
bergquistcompany

ASKER

100 machines

so if we unauthorize and authorize the new can the new give out an IP that somebody already has leased from the old?
Yes, you can export the dhcp information from the old server to the new one also.

On the old server:

netsh dhcp server export \\server\share\dhcpConfig.dat all (Export DHCP information to the specified path\file)

On the new server:
netsh dhcp server import \\server\share\dhcpConfig.dat all (Imports DHCP information from the specified path\file)

After, you will want to stop the DHCP and Start the DHCP service on the new server. If you do this you should be able to unauthorize the old DHCP server at any time and authorize the new one. All the lease information will be in the new server.


.
Avatar of Sarang Tinguria