Fix can not change static IP, fix can not change DNS on Windows 10

Some users experience the error of being unable to change Static IP and DNS on their Windows 10 machine. In this article, TipsMake will introduce you to some solutions that you can try to fix the above problem.

Static IP setup using PowerShell

First you need to open PowerShell as Administrator and enter the following command to view your current network configuration:

Get-NetIPConfiguration

Picture 1 of Fix can not change static IP, fix can not change DNS on Windows 10

Next, you need to use your notebook to record the following information:

  1. InterfaceIndex
  2. IPv4Address
  3. IPv4DefaultGateway
  4. DNSServer

Next, enter the following command:

New-NetIPAddress -InterfaceIndex 15 -IPAddress 192.168.29.34 -PrefixLength 24 -DefaultGateway 192.168.29.1.

In this step, you need to replace the DefaultGateway value in the command line above with the default gateway address of your network. The InterfaceIndex value should also be changed to match the value on your adapter. Finally, adjust the IPAddress you want and press Enter to set the static IP address.

Once done, you need to enter this command line and press Enter to set the DNS server address:

Set-DnsClientServerAddress -InterfaceIndex 4 -ServerAddresses 10.1.2.1

Reset IP address and DNS using CMD

With CMD you can view, reset, refresh, configure and change the IP address on your Windows 10 computer. The procedure is as follows:

How to view the IP address

  1. Open the WinX menu by pressing Windows + X
  2. Select Command Prompt and enter the command ipconfig /alland press Enter

Picture 2 of Fix can not change static IP, fix can not change DNS on Windows 10

IPConfig is a built-in tool in Windows with the ability to display all configuration values ​​of the active TCP / IP network. In addition, it is possible to refresh the Dynamic Host Configuration Protocol (DHCP) and Domain Name System (DNS) settings .

Refresh the IP address

To refresh the IP address you can use the following commands:

ipconfig /release
ipconfig /renew

Change the IP address

First, to change static IP address on Windows 10 you need to know the name of your network interface. To do this you need to enter the following command in the Command Prompt and press Enter :

netsh interface ipv4 show config

Picture 3 of Fix can not change static IP, fix can not change DNS on Windows 10

In my results, the interface name is simply Wi-Fi. Maybe your interface name will be different from mine and usually default Windows names like 'Local Area Connection', 'Local Area Connection * 2' and 'Ethernet'.

After having the name of the network interface, enter the following command to change the IP:

netsh interface ipv4 set address name="YOUR INTERFACE NAME" static IP_ADDRESS SUBNET_MASK GATEWAY

This is a sample command and you need to change information such as the network interface name, IP address, subnet mask address, default gateway. For example, a complete statement would look like this:

netsh interface ipv4 set address name="Wi-Fi" static 192.168.3.8 255.255.255.0 192.168.3.1

If you are using a static IP address and want to switch to an IP address that is automatically assigned by the DHCP server (your router), enter the following command:

netsh interface ipv4 set address name='YOUR INTERFACE NAME' source=dhcp

Change DNS with CMD

To change DNS using cmd you still use command nesthand sample command as follows:

netsh interface ipv4 set dns name="YOUR INTERFACE NAME" static DNS_SERVER

The complete command with the network interface name and using Google's DNS is as follows:

netsh interface ipv4 set dns name="Wi-Fi" static 8.8.8.8

To set up the second DNS line, use the same command:

netsh interface ipv4 set dns name="YOUR INTERFACE NAME" static DNS_SERVER index=2

Example with Google's DNS:

netsh interface ipv4 set dns name="Wi-Fi" static 8.8.4.4 index=2

And just like an IP address, if you want to use the DNS provided by the DHCP server instead of the DNS of a third party, use the following command:

netsh interface ipv4 set dnsservers name"YOUR INTERFACE NAME" source=dhcp

Change DNS with PowerShell

The steps are as follows:

  1. Press the Windows button then type PowerShell
  2. Right-click on the search result then select Run as Administrator
  3. Enter the command Get-DnsClientServerAddressand press Enter to view InterfaceAlias
  4. Next, enter the following command into PowerShell
Set-DNSClientServerAddress "InterfaceAlias" –ServerAddresses ("preferred-DNS-address", "alternate-DNS-address")

Picture 4 of Fix can not change static IP, fix can not change DNS on Windows 10

Before pressing Enter you need to change the three values ​​including InterfaceAlias, Preferred-DNS-address, Alternate-DNS-address to match the parameters on your network and the DNS you need to set. A complete statement is as follows:

Set-DNSClientServerAddress "Wi-Fi" –ServerAddresses ("1.1.1.1","1.0.0.1")

You can replace it with your network interface name (InterfaceAlias) and the DNS you like like 8.8.8.8, 8.8.4.4 by Google.

Flush DNS (clear DNS cache) and reset Winsock

To perform the fastest DNS flush, you need to use CMD. In the command prompt window enter the following command and press Enter to flush DNS :

ipconfig /flushdns

To reset Winsock you also need to use CMD. The way to do this is to type the following command in CMD then press Enter :

netsh winsock reset

Good luck! 

Update 07 January 2021
Category

System

Mac OS X

Hardware

Game

Tech info

Technology

Science

Life

Application

Electric

Program

Mobile