Link to home
Start Free TrialLog in
Avatar of Gerhardpet
GerhardpetFlag for Canada

asked on

Renew IP with a different IP address

How can I renew an IP address for a workstation with a different IP address from the DHCP server.

The DHCP server is a SBS 2008 and when I use ipconfig /release /renew I get the same IP address assigned.
Avatar of richclawson
richclawson

You would have to set the ip address manually, then switch back to DHCP, the DHCP server will issue the last ip address again (therefore you will get the manually entered ip).
You could go into the assignments on the dhcp server and delete the entry for the workstation in question, but as long as the IP you don't want is available, dhcp can assign it all over again.

What is the reason for wanting a different IP?  If there is an issue, assign it statically.  There is no problem doing so, so long as the subnet, dns IP's, and the gateway are correct.

All the best..
As already mentioned above, DHCP will attempt to assign the same address as before - you could add an exclusion for that particular address in the DHCP server scope - that would stop the server handing the same adress out again - this would affect all clients though, the server won't hand the excluded adress out to anyone until you remove the exclusion.
You can reduce your Lease period to some short value and then get you ip re-assigned and then make your lease time to normal.
Avatar of Krzysztof Pytko
You can also try to cheat a DHCP ;)

type in command-line

ipconfig /release

then, click right mouse button on your "My Computer" and choose manage. Then in Device Manager go to your network card(s) and choose properties of yours. Choose advanced tab and look for something connected with MAC settings (in my case it is called "Locally Administered Address"), it could be also named as MAC address aso. Type fake MAC for tests i.e. 0003AE2F5512 and apply changes. Now type in command-line ipconfig /renew

You should receive new IP address. Then change it back to automatic value and type in command-line

ipconfig /renew

You should have different IP :]
ASKER CERTIFIED SOLUTION
Avatar of chqshaitan
chqshaitan
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
Good suggestion, chqshaitan.  I didn't think that far!

thanks lobo797 :)
Avatar of Gerhardpet

ASKER

Thank you for the help!