How can I tell if my IP is static or assigned by DHCP on Windows 7?

I don't know if my IP is static or assigned by DHCP. How can I find out which it is? I'm running Windows 7.

2

5 Answers

Run ipconfig /all in a cmd window; one of the lines will be labeled "DHCP Enabled".

Go to the Network and Sharing Center (in control panel) and select "Change Adapter Settings" on the left.

From there double-click on your network adaptor and press the "Details" button.

You should see something like this:

enter image description here

You can then see if DHCP is enabled or not.

For your internet IP, the best way is to go to and note down your IP. Then go and reboot your router, and visit that site again and see if the IP is the same.

If it has changed you have a dynamic address. If it's the same you may be static, or you may be dynamic. Check again in a week or so and see if the IP is still the same. If it is you may well be static.

Most ISPs charge extra for a static IP address though.

2

Open a CMD window and type ipconfig/release then type ipconfig and see if you have an IP.

Or through the GUI you can go to Control Panel>Network and Sharing Center, on the left pane select: "change adapter settings", right click your adapter and click Properties, select: "Internet Protocol Version 4" and hit the properties button. If "Obtain IP Address Automatically" is checked then you are getting your IP via DHCP if it is static you will see it filled out in the boxes below.

enter image description here

If you set your IP address in any way via CMD or the network settings you have a static IP. Otherwise, you have an IP assigned by DHCP.

1

You might find the answer in the Registry under

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\Tcpip\Parameters\Interfaces\{here-goes-the-GUID-of-the-NIC}
-> EnableDHCP

1 means ON, 0 means OFF

You need to know the GUID of your NIC, of course. Your machine might have more than just one NIC.

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

You Might Also Like