Win7 command line configuration static IP address method

  
Modify IP address can be implemented in the system's own "network and sharing center". However, there may be times when it is not possible to enter the corresponding interface for various reasons, such as Win10 preview version 10049 and other versions. However, many users do need to set a static IP to be able to achieve normal network communication. At this time, only through the "universal" command line to solve the problem.

Applicable to Win7/Win8.1/Win10 and other systems, just remember a set of commands, the steps are as follows:
1, open the command prompt, enter netsh and enter
2 Then enter the interface and press Enter
3, enter ip, enter
4, enter set address "connection name" static new IP address subnet mask gateway 1, then enter
Note, The above commands need to be modified according to user requirements. The connection name can be modified by referring to the name in “Network Connection”, which supports Chinese, but the quotation mark should be in English. There must be a space between each item, and finally enter "ldquo;1", which means OK. Refer to the following example:
set address "Ethernet 3" static 192.168.1.108 255.255.255.0 192.168.0.1 1
5, you can also enter the above command once, but make sure not to wrap: netsh interface ip Set address "connection name" static new IP address subnet mask gateway 1
Example: netsh interface ip set address "Ethernet 3" static 192.168.1.108 255.255.255.0 192.168.0.1 1
In addition, You can also use a similar command to modify the DNS. The format is the same as above, just replace "address" with "lds"; you can: netsh interface ip set dns " Ethernet 3" static DNS address
After the modification, the system IP becomes static. If it does not meet the user's needs, you can use the system's own network "troubleshooting" to automatically repair and restore the dynamic IP. Of course, you can also restore the IP address by using the command netsh interface ip set address "connection name" dhcp; for the same reason, the DNS address can also be restored by the command netsh interface ip set dns "connection name" dhcp.
Copyright © Windows knowledge All Rights Reserved