I'm trying to understand something.

Let's say we have a windows server with a static IP. Its IP is reserved in the DHCP, etc. Everything's good.

If I run ipconfig/release then ipconfig/renew, will it get a different IP? (suppose that the next available IP -x.15- is not the reserved one -x.200)

Thanks, Iswaren

1

2 Answers

The key detail here is that ipconfig /release does not have the ability to remove any corresponding IP address reservation that may exist at the DHCP server.

The only way to obtain a different IP address would be to either manually assign a static IP on the client or to change/remove the IP address reservation from the DHCP server. Avoid the first option if possible.

1

When a computer requests an IP address, and is set to get the address from DHCP, it will provide its MAC address to the DHCP server as part of the request. If the DHCP server sees that there is a reservation of an IP address associated with that MAC address, it will provide the reserved IP address. Therefore, IPCONFIG /RELEASE followed by IPCONFIG /RENEW will cause the computer to receive the same (reserved) IP address.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy