How to Clear DNS Cache in Microsoft Edge: Complete Guide
Last Updated :
05 Jun, 2025
When browsing the web with Microsoft Edge, you might occasionally encounter issues such as websites failing to load, seeing outdated content, or experiencing slow page load times. These problems can sometimes be traced back to your browser’s DNS cache. Microsoft Edge, like other browsers, maintains its cache of DNS (Domain Name System) records to speed up website access. However, if this cache becomes outdated or corrupted, it can lead to connectivity issues.
Clearing the DNS cache is a simple yet effective way to resolve these problems. In this article, we’ll explain what DNS is, why Edge has its DNS cache, and provide a detailed, step-by-step guide on how to clear it.
How to Clear DNS Cache in Microsoft EdgeWhen Should You Clear Edge’s DNS Cache?
Consider clearing the DNS cache if you encounter any of the following:
- A website you know is live isn’t loading in Edge.
- You are seeing an outdated version of a website despite knowing it has been updated.
- You are experiencing DNS-related errors, such as “This site can’t be reached” or “DNS_PROBE_FINISHED_NXDOMAIN.”
- You’ve recently changed DNS settings or switched networks and are having trouble accessing sites.
Clearing the cache is a safe troubleshooting step with minimal side effects—though you might notice slightly slower load times for websites on your first visit after clearing, as Edge performs fresh DNS lookups.
How to Clear DNS Cache in Microsoft Edge : Detailed Steps
Follow these steps to clear Edge’s DNS cache. The process is straightforward and works on desktop versions of Edge (Windows and macOS). Mobile users can refer to the notes at the end.
Step 1: Open Edge’s Net-Internals Page
- Launch Microsoft Edge on your computer.
- In the address bar, type edge://net-internals/#dns and press Enter.
- This will take you to Edge’s internal network diagnostics page, specifically the DNS section.
Step 2: Clear the Host Cache
- On the DNS page, locate the “Clear host cache” button.
- Click this button to remove all stored DNS entries from Edge’s cache.
- This action ensures that Edge will perform fresh DNS lookups the next time you visit any website.
Step 3: Flush Socket Pools
- For a more thorough reset, type edge://net-internals/#sockets in the address bar and press Enter.
- Click the “Flush socket pools” button.
This step closes any idle or active connections, ensuring that no lingering connections rely on outdated DNS information. While not strictly necessary for clearing the DNS cache, it’s a good practice for resolving persistent issues.
Step 4: Restart Microsoft Edge
- Close all Edge windows and reopen the browser.
- Restarting ensures that all changes take effect and clears any remaining temporary data.
Conclusion
Clearing the DNS cache in Microsoft Edge is a quick and effective way to resolve many common browsing issues, from inaccessible websites to outdated content. By following the steps outlined in this guide—using the net-internals page to clear the host cache and optionally flushing socket pools—you can ensure that Edge uses the most up-to-date DNS information. If problems persist, don’t forget to check your operating system’s DNS cache and other potential culprits like extensions.
Similar Reads
What is OSI Model? - Layers of OSI Model The OSI (Open Systems Interconnection) Model is a set of rules that explains how different computer systems communicate over a network. OSI Model was developed by the International Organization for Standardization (ISO). The OSI Model consists of 7 layers and each layer has specific functions and re
13 min read
Merge Sort - Data Structure and Algorithms Tutorials Merge sort is a popular sorting algorithm known for its efficiency and stability. It follows the divide-and-conquer approach. It works by recursively dividing the input array into two halves, recursively sorting the two halves and finally merging them back together to obtain the sorted array. Merge
14 min read
TCP/IP Model The TCP/IP model (Transmission Control Protocol/Internet Protocol) is a four-layer networking framework that enables reliable communication between devices over interconnected networks. It provides a standardized set of protocols for transmitting data across interconnected networks, ensuring efficie
7 min read
Types of Network Topology Network topology refers to the arrangement of different elements like nodes, links, or devices in a computer network. Common types of network topology include bus, star, ring, mesh, and tree topologies, each with its advantages and disadvantages. In this article, we will discuss different types of n
12 min read
Computer Network Tutorial A Computer Network is a system where two or more devices are linked together to share data, resources and information. These networks can range from simple setups, like connecting two devices in your home, to massive global systems, like the Internet. Below are the main components of a computer netw
7 min read
Basics of Computer Networking A computer network is a collection of interconnected devices that share resources and information. These devices can include computers, servers, printers, and other hardware. Networks allow for the efficient exchange of data, enabling various applications such as email, file sharing, and internet br
14 min read
Maximum Subarray Sum - Kadane's Algorithm Given an array arr[], the task is to find the subarray that has the maximum sum and return its sum.Examples:Input: arr[] = {2, 3, -8, 7, -1, 2, 3}Output: 11Explanation: The subarray {7, -1, 2, 3} has the largest sum 11.Input: arr[] = {-2, -4}Output: -2Explanation: The subarray {-2} has the largest s
9 min read
Difference Between IPv4 and IPv6 In the digital world, where billions of devices connect and communicate, Internet Protocol (IP) Addresses play a crucial role. These addresses are what allow devices to identify and locate each other on a network.To know all about IP Addresses - refer to What is an IP Address?Currently, there are tw
9 min read
Domain Name System (DNS) DNS is a hierarchical and distributed naming system that translates domain names into IP addresses. When you type a domain name like www.geeksforgeeks.org into your browser, DNS ensures that the request reaches the correct server by resolving the domain to its corresponding IP address.Without DNS, w
8 min read
RSA Algorithm in Cryptography RSA(Rivest-Shamir-Adleman) Algorithm is an asymmetric or public-key cryptography algorithm which means it works on two different keys: Public Key and Private Key. The Public Key is used for encryption and is known to everyone, while the Private Key is used for decryption and must be kept secret by t
13 min read