How to set different DNS settings on devices running Windows 11

Windows 11 set DNS settings
(Image credit: Future)

When you connect to a network and the internet, the Domain Name System (DNS) address is essential to make accessing different websites and downloading files easier.

Usually, you don't have to worry about this configuration because it's already provided by your Internet Service Provider (ISP). The problem is that these services are slow, unreliable, and, more importantly, not private. However, it's possible to change this configuration to other services that provide more privacy and performance. 

Defining DNS 

In a nutshell, a Domain Name System is usually a free service that provides the technology that allows you to type the website name in the browser to load the web page. If DNS didn't exist, it would be nearly impossible to navigate the web as we do today because you would need to use the site's IP address, which is difficult to remember.

The reason is that computers require numeric addresses (commonly known as IP addresses), such as 104.18.189.55, to communicate with other devices. However, these IPs are not easy for humans to remember, and DNS provides the means to translate friendly website names (for example, Microsoft.com) to the numeric address that computers understand when you type the domain name in the address bar of the browser.

You probably never noticed this translation because the process happens almost in real time. However, depending on the service you use, this could make your internet experience slower and unreliable. 

If you prefer a different service or want to switch to a more private and reliable resolver, Windows 11 allows you to change the DNS settings in at least three ways using the Settings app, Control Panel, and Command Prompt.

Although it's best to configure the DNS settings on the router, sometimes, you may have reasons to change the network configuration on your computer manually. For instance, if you don't have access to the router, you must configure a server that needs static settings or for many other reasons.

This guide will walk you through the steps to change the DNS settings on Windows 11.

How to change DNS from Settings on Windows 11

To change the DNS settings on Windows 11, use these steps:

  1. Open Settings.
  2. Click on Network & internet.
  3. Click the Ethernet or Wi-Fi page on the right side.

(Image credit: Future)
  • Quick note: If you select the Wi-Fi option, you must click the properties settings to access the networking configuration.
  1. Click the Edit button for the "DNS server assignment" setting.

(Image credit: Future)
  1. Select the Manual option from the drop-down menu.
  2. Turn on the IPv4 toggle switch.
  3. Confirm the primary DNS address in the "Preferred DNS" setting. For example, to use Cloudflare, Google Public DNS, or Cisco OpenDNS, use these settings:
  • Cloudflare: 1.1.1.1
  • Google Public DNS: 8.8.8.8
  • OpenDNS: 208.67.222.222

(Image credit: Future)
  1. (Optional) Select the encryption option in the "Preferred DNS encryption" setting. Options available include: 
  • Unencrypted only — Encryption won't be for DNS queries.
  • Encrypted only (DNS over HTTPS) — DNS queries will be sent encrypted using the HTTPS protocol.
  • Encrypted preferred, unencrypted allowed — Encryption will be preferred to send DNS queries, but unencrypted queries will also be permitted.
  • Quick note: DNS over HTTPS (DoH) is a network protocol that encrypts DNS queries using the standard Hypertext Transfer Protocol Secure (HTTPS) protocol to protect DNS queries, resulting in better security and privacy browsing the web. You will only be able to enable this feature if you have specified a DNS address that supports encryption. 
  1. Confirm the secondary DNS address in the "Alternate DNS" setting. You can use one of the secondary addresses:
  • Cloudflare: 1.0.0.1
  • Google Public DNS: 8.8.4.4
  • OpenDNS: 208.67.220.220
  1. (Optional) Select the encryption option in the "Alternative DNS encryption" setting.
  2. Click the Save button.

Once you complete the steps, the new settings should apply immediately. However, you may need to restart the computer for new DNS servers to start working.

How to change DNS from Control Panel on Windows 11

To specify different DNS addresses from Control Panel, use these steps:

  1. Open Control Panel.
  2. Click on Network and Internet.
  3. Click on Network and Sharing Center.
  4. Click the Change adapter settings option in the left pane.

Change adapter settings

(Image credit: Future)
  1. Right-click the active network adapter and select the Properties option.

(Image credit: Future)
  1. Select and check the Internet Protocol Version 4 (TCP/IPv4) option.
  2. Click the Properties button.

(Image credit: Future)
  1. Select the "Use the following DNS server addresses" option.
  • Quick note: When you manually specify the DNS settings, the device will continue receiving the rest of the TCP/IP configuration from the DHCP server (router).
  1. Confirm the primary DNS address in the "Preferred DNS server" setting. If you want to use Cloudflare, Google Public DNS, or Cisco OpenDNS, you can use these settings:
  • Cloudflare: 1.1.1.1
  • Google Public DNS: 8.8.8.8
  • OpenDNS: 208.67.222.222

(Image credit: Future)
  1. Confirm the secondary DNS address in the "Alternate DNS server" setting. You can use one of the addresses:
  • Cloudflare: 1.0.0.1
  • Google Public DNS: 8.8.4.4
  • OpenDNS: 208.67.220.220
  1. (Optional) Click the Advanced button.
  2. Click the DNS tab.
  3. Click the Add button.
  4. Specify additional alternate DNS server addresses.
  5. Click the Add button.

(Image credit: Future)
  • Quick tip: In addition to adding more addresses, you can edit and remove resolvers and have an option on the side to change their priority.
  • Click the OK button.
  • Click the Close button.

After you complete the steps, the new DNS servers should start working on your computer. Since Microsoft continues to fade away Control Panel slowly, you won't find the option to enable DNS over HTTPS from this experience.

How to change DNS from Command Prompt on Windows 11

To change the Windows 11 DNS addresses with commands, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to run the netsh tool and press Enter: netsh
  4. Type the following command to identify the names of the network adapters and press Enter: interface show interface
  5. Type the following command to set the primary DNS address and press Enter: interface ip set dns name="ADAPTER-NAME" source="static" address="X.X.X.X"

In the command, change "ADAPTER-NAME" with the name of the network adapter you identified in step 4, and change "X.X.X.X" with the IP address you want to use. To use Cloudflare, Google Public DNS, or Cisco OpenDNS, you can use these settings: 

  • Cloudflare: 1.1.1.1 and 1.0.0.1
  • Google Public DNS: 8.8.8.8 and 8.8.4.4
  • OpenDNS: 208.67.222.222 and 208.67.220.220

This example sets the primary DNS address to 1.1.1.1: interface ip set dns name="Ethernet0" source="static" address="1.1.1.1"

(Image credit: Future)
  1. Type the following command to add an alternative DNS address and press Enter: interface ip add dns name="ADAPTER-NAME" addr="X.X.X.X" index=2

In the command, change "ADAPTER-NAME" with the name of your network adapter you queried on step 4, and change "X.X.X.X" with the secondary address. This example sets the secondary DNS address to 1.0.0.1: interface ip add dns name="Ethernet0" addr="1.0.0.1" index=2 

  • Quick tip: Repeat the above steps to set additional addresses (if necessary). However, in the command, you must increase the number of the index option by 1. For instance, interface ip add dns name="Ethernet1" addr="8.8.8.8" index=3

Once you complete the steps, the computer will start using the new addresses to perform DNS queries.

More resources

For more helpful articles, coverage, and answers to common questions about Windows 10 and Windows 11, visit the following resources:

Mauro Huculak

Mauro Huculak is technical writer for WindowsCentral.com. His primary focus is to write comprehensive how-tos to help users get the most out of Windows 10 and its many related technologies. He has an IT background with professional certifications from Microsoft, Cisco, and CompTIA, and he's a recognized member of the Microsoft MVP community.