The ipconfig command entered by itself displays summary information about a PC’s IP address configuration. This parameter gives more verbose information, including such information as DNS and WINS server IP addresses.
/release or /release6
These options release a DHCP lease for an IPv4 and IPv6 address,respectively.
/renew or renew6
These options renew a DHCP lease for an IPv4 and IPv6 address, respectively.
Example 1:
Example below shows the ipconfig command, without extra parameters, being issued on a PC.
The PC contains an Ethernet and a wireless network interface card (NIC).
From the output, you can conclude that one of the NICs has an IP address of 172.16.202.129, while the other NIC has an IP address of 172.16.202.128.
Also, you can see that these two NICs share a common default gateway of 172.16.202.2.
If you are troubleshooting a PC and suspect that IP addressing might be an issue, you can release the PC’s current DHCP lease with the ipconfig /release command, as shown below .
C:\> ipconfig /release
Windows IP Configuration
Ethernet adapter Local Area Connection 3:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::5101:b420:4354:d496%20
Default Gateway . . . . . . . . . :
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::a10f:cff4:15e4:aa6%11
Default Gateway . . . . . . . . . :
OUTPUT OMITTED...
Then you can renew the DHCP lease with the ipconfig/renew command, as shown below .