##Enter win10 Control Panel>Network and Internet>Network and Sharing Center>Active Networks>Local Area Connection>Click Network Connection>Properties>Internet Protocol Version 4> Just set it manually and it’s OK. (recommended learning: phpstorm)
You can also set a static IP through the command prompt.
1. Run cmd as administrator
C:\Windows\System32, find the command prompt (cmd.exe), right-click and select Manage Start a command prompt by running it as a user, and then execute the following command.2. Run the command to modify the IP address
Set the IP address of the network connection named WLAN 8 to 192.168.0.17 and the subnet mask to 255.255. 255.0, the gateway is set to 192.168.0.1The command line is as follows
netsh interface ip set address "WLAN 8" static 192.168.0.17 255.255.255.0 192.168.0.1
Please note that WLAN 8 is mine, you need to check your own network name, and Make modifications. For wireless networks and other types of networks, just change the network name to the corresponding name.
3. Run the command to modify the DNS address
Change the DNS address of the network connection named WLAN 8 to 8.8.8.8netsh interface ip set dns "WLAN 8" static 8.8.8.8
Final perfect solution
Note that all punctuation marks in the command are half-width, and modify the IP address according to your own situation , subnet mask, gateway and DNS.
The above is the detailed content of Win10 cannot save IP settings, please check one or more solutions. For more information, please follow other related articles on the PHP Chinese website!