{"id":17374,"date":"2026-01-28T17:04:02","date_gmt":"2026-01-28T11:34:02","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=17374"},"modified":"2026-01-28T17:04:04","modified_gmt":"2026-01-28T11:34:04","slug":"ipconfig-displaydns-command","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/ipconfig-displaydns-command","title":{"rendered":"Ipconfig \/displaydns Command Explained in 2026"},"content":{"rendered":"\n<p><strong>ipconfig \/displaydns is a Windows command<\/strong> that shows the current contents of the DNS Resolver Cache. It lists recently resolved domain names, their record types (A, AAAA, CNAME), time to live (TTL), and destination IPs.<\/p>\n\n\n\n<p>Use it to troubleshoot DNS issues, verify record changes, and understand how Windows resolves domains without re-querying DNS servers. If you manage websites, hosting, or simply browse the web, understanding the ipconfig \/displaydns command can save hours of DNS troubleshooting. <\/p>\n\n\n\n<p>This guide explains what it does, how it works behind the scenes, how to read its output, and practical ways to use it during site migrations, SSL issues, and connectivity problems.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-ipconfig-displaydns\">What is ipconfig \/displaydns?<\/h2>\n\n\n\n<p><strong>ipconfig \/displaydns displays<\/strong> Windows\u2019 DNS Resolver Cache the local memory of recent DNS lookups your system has performed.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1280\" height=\"720\" src=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/01\/What-is-ipconfig-displaydns.jpg\" alt=\"Ipconfig \/displaydns Command\" class=\"wp-image-17527\" srcset=\"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/01\/What-is-ipconfig-displaydns.jpg 1280w, https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/01\/What-is-ipconfig-displaydns-150x84.jpg 150w\" sizes=\"auto, (max-width: 1280px) 100vw, 1280px\" \/><\/figure>\n\n\n\n<p><strong>Instead of querying a DNS server<\/strong> every time you visit a domain, Windows caches answers for a period defined by each record\u2019s TTL.<\/p>\n\n\n\n<p>Viewing this cache helps you see exactly which domain names your device has resolved and where they pointed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-windows-dns-caching-works\">How Windows DNS Caching Works<\/h2>\n\n\n\n<p><strong>When you access a domain (like example.com)<\/strong>, Windows checks the local cache first. If a valid answer exists (not expired), it\u2019s used immediately faster and lighter than querying the network. <\/p>\n\n\n\n<p>If not, Windows asks the configured DNS resolver (often your ISP, a public resolver like 1.1.1.1\/8.8.8.8, or a corporate DNS). The new answer is then stored locally until its TTL expires.<\/p>\n\n\n\n<p>ipconfig \/displaydns reveals those cached entries. That visibility is crucial when you change DNS records (A, AAAA, CNAME) and need to confirm whether your machine still holds an old IP address.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"when-to-use-ipconfig-displaydns\">When to Use ipconfig \/displaydns<\/h2>\n\n\n\n<p><strong>Use the command when:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>You changed DNS records<\/strong> (e.g., after a web host migration) and still reach the old server.<\/li>\n\n\n\n<li><strong>You suspect DNS hijacking<\/strong>, poisoning, or stale entries causing redirects.<\/li>\n\n\n\n<li><strong>A site loads <\/strong>on some devices but not others, suggesting inconsistent caching.<\/li>\n\n\n\n<li><strong>You want to confirm which <\/strong>hostnames your system recently resolved, for auditing or troubleshooting.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-to-run-ipconfig-displaydns-windows-10-11\">How to Run ipconfig \/displaydns (Windows 10\/11)<\/h2>\n\n\n\n<p>Running the <code><strong>ipconfig \/displaydns<\/strong><\/code> command on Windows is quick and straightforward, and you don\u2019t need any advanced technical skills to use it. This command allows you to instantly view the DNS records currently stored on your system, helping you understand how your computer is resolving websites. Whether you\u2019re troubleshooting a DNS issue or just checking recent lookups, Windows makes it easy to access this information in seconds.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"using-command-prompt\">Using Command Prompt<\/h3>\n\n\n\n<p>You don\u2019t need admin rights to view the cache.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>1) Press Win + R, type cmd, and press Enter.\n2) Run:\n   ipconfig \/displaydns\n3) Scroll or pipe the output:\n   ipconfig \/displaydns | more\n4) Export to a file:\n   ipconfig \/displaydns &gt; dns-cache.txt<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"powershell-equivalent\">PowerShell Equivalent<\/h3>\n\n\n\n<p>PowerShell offers structured output that\u2019s easier to filter.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># View cache\nGet-DnsClientCache\n\n# Filter by domain\nGet-DnsClientCache | Where-Object {$_.Entry -like \"*example.com*\"}\n\n# Export to CSV for analysis\nGet-DnsClientCache | Export-Csv -Path .\\dns-cache.csv -NoTypeInformation<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"understanding-the-output\">Understanding the Output<\/h3>\n\n\n\n<p>A typical ipconfig \/displaydns entry looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>example.com\n    ----------------------------------------\n    Record Name . . . . : example.com\n    Record Type . . . . : 1\n    Time To Live  . . . : 283\n    Data Length . . . . : 4\n    Section . . . . . . : Answer\n    A (Host) Record . . : 93.184.216.34<\/code><\/pre>\n\n\n\n<p><strong>Key fields you\u2019ll see:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Record Name:<\/strong> The queried domain or subdomain.<\/li>\n\n\n\n<li><strong>Record Type:<\/strong> 1 = A, 28 = AAAA, 5 = CNAME, among others.<\/li>\n\n\n\n<li><strong>Time To Live (TTL): <\/strong>Seconds remaining before the entry expires.<\/li>\n\n\n\n<li><strong>Section: <\/strong>Typically Answer; may show Additional or Authority sections for certain responses.<\/li>\n\n\n\n<li><strong>Data: <\/strong>The IP (A\/AAAA), canonical name (CNAME), or other record data.<\/li>\n<\/ul>\n\n\n\n<p>If you see a <a href=\"https:\/\/www.youstable.com\/blog\/create-a-cname-record-for-your-domain\/\">CNAME followed by an A\/AAAA record<\/a>, Windows resolved the alias first, then the final IP. Multiple A\/AAAA records indicate <a href=\"https:\/\/www.youstable.com\/blog\/create-load-balancer-on-linux-server\/\">load balancing<\/a> or multi homing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"real-world-troubleshooting-scenarios\">Real World Troubleshooting Scenarios<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"1-website-migration-still-points-to-old-ip\">1) Website Migration Still Points to Old IP<\/h3>\n\n\n\n<p><strong>Symptom:<\/strong> After moving hosting, your domain resolves to the previous server.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run ipconfig \/displaydns and find your domain; check the IP.<\/li>\n\n\n\n<li>If old, <a href=\"https:\/\/www.youstable.com\/blog\/how-to-clear-cache-in-browser\/\">clear cache<\/a> with <a href=\"https:\/\/www.youstable.com\/blog\/ipconfig-flushdns-command\">ipconfig \/flushdns<\/a> (see below).<\/li>\n\n\n\n<li>Test again. If still old, your network or browser may also cache; try another device or DNS server.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"2-ssl-tls-errors-after-dns-change\">2) SSL\/TLS Errors After DNS Change<\/h3>\n\n\n\n<p><strong>Symptom:<\/strong> Browser shows certificate mismatch.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use ipconfig \/displaydns to confirm the domain resolves to the new server.<\/li>\n\n\n\n<li>Ensure the new server hosts the correct certificate for the hostname.<\/li>\n\n\n\n<li>Flush DNS cache and hard refresh the browser (Ctrl+F5).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"3-intermittent-timeouts\">3) Intermittent Timeouts<\/h3>\n\n\n\n<p><strong>Symptom:<\/strong> Some requests time out while others work.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check if multiple IPs are cached for the same hostname.<\/li>\n\n\n\n<li>Ping or test each IP with tracert to find packet loss.<\/li>\n\n\n\n<li>If one IP path is bad, wait for TTL expiry or switch resolvers temporarily.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"4-hosts-file-vs-dns-cache\">4) Hosts File vs DNS Cache<\/h3>\n\n\n\n<p>If you\u2019re overriding DNS using C:\\Windows\\System32\\drivers\\etc\\hosts, the hosts entry is typically consulted before querying DNS. But stale cache entries can confuse testing. <a href=\"https:\/\/www.youstable.com\/blog\/clear-cache-in-npm\/\">Clear the cache<\/a> after editing hosts to ensure the override is used.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"filtering-searching-and-exporting-the-dns-cache\">Filtering, Searching, and Exporting the DNS Cache<\/h2>\n\n\n\n<p>Because ipconfig outputs text, use common shell techniques to filter and save results.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Command Prompt: find entries related to a domain\nipconfig \/displaydns | findstr \/i \"example.com\"\n\n# Save everything for audit\nipconfig \/displaydns &gt; C:\\Temp\\dns-cache.txt\n\n# PowerShell: filter and save in structured format\nGet-DnsClientCache | Where-Object {$_.Entry -like \"*example.com*\"} | \n    Select-Object Entry, RecordType, TimeToLive, Data | \n    Export-Csv .\\example-dns.csv -NoTypeInformation<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-to-clear-and-refresh-the-dns-cache\">How to Clear and Refresh the DNS Cache<\/h2>\n\n\n\n<p>When cached answers are outdated, flush them.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Command Prompt (run as Administrator for best results)\nipconfig \/flushdns\n\n# PowerShell alternative\nClear-DnsClientCache<\/code><\/pre>\n\n\n\n<p>After flushing, Windows will re-query your configured DNS resolver. If you still receive old data, the resolver itself may be caching. Try switching temporarily to another DNS server (e.g., 1.1.1.1 or 8.8.8.8), or wait for upstream TTLs to expire.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"advanced-tips-and-limitations\">Advanced Tips and Limitations<\/h2>\n\n\n\n<p>While <code><strong>ipconfig \/displaydns<\/strong><\/code> is very useful, it\u2019s important to understand its limits so you don\u2019t misread the results. This command only shows DNS entries handled by Windows itself, meaning some apps or browsers may use their own DNS methods and won\u2019t appear here. Knowing these boundaries helps you troubleshoot smarter and avoid chasing problems that aren\u2019t actually related to the Windows DNS cache.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"dns-client-service-must-be-running\">DNS Client Service Must Be Running<\/h3>\n\n\n\n<p>Windows stores the resolver cache under the DNS Client (Dnscache) service. If this service is stopped or disabled, you may not see entries or be able to flush.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Check and restart the DNS Client service (Admin)\nsc query Dnscache\nnet stop Dnscache\nnet start Dnscache<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"apps-that-bypass-the-os-resolver\">Apps That Bypass the OS Resolver<\/h3>\n\n\n\n<p>Some applications may use their own DNS logic or encrypted DNS directly (e.g., browser specific DoH configurations), meaning not every lookup appears in the OS cache. ipconfig \/displaydns shows what Windows resolved, not necessarily what every app resolved independently.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"not-a-dns-server-cache\">Not a DNS Server Cache<\/h3>\n\n\n\n<p>This is a per-device cache, separate from your network\u2019s DNS server cache. Entries and TTLs may differ from what other devices see. For network wide issues, check the resolver DNS server or your router\u2019s DNS settings.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"privacy-considerations\">Privacy Considerations<\/h3>\n\n\n\n<p>The resolver cache can reveal recent domains you visited. Before sharing logs, review and redact sensitive hostnames.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"scripting-and-automation-for-it-pros\">Scripting and Automation for IT Pros<\/h2>\n\n\n\n<p>For fleet diagnostics or incident response, PowerShell gives you consistent, parseable data.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Snapshot DNS cache on multiple machines (PsExec\/WinRM context)\n$stamp = Get-Date -Format \"yyyyMMdd-HHmmss\"\nGet-DnsClientCache | \n  Select-Object Entry, RecordType, TimeToLive, Data | \n  Export-Csv \".\\dns-cache-$stamp.csv\" -NoTypeInformation\n\n# Clear then verify\nClear-DnsClientCache\nStart-Sleep -Seconds 2\nGet-DnsClientCache | Measure-Object<\/code><\/pre>\n\n\n\n<p>Combine this with network tests (Test NetConnection, Resolve DnsName) for end to end validation after DNS changes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"common-errors-and-fixes\">Common Errors and Fixes<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Error:<\/strong> \u201cCould not flush the DNS Resolver Cache: Function failed during execution.\u201d &#8211; The DNS Client service may be stopped or restricted. Restart it with net start Dnscache (Admin).<\/li>\n\n\n\n<li><strong>No entries shown &#8211;<\/strong> Recently booted system, DNS client disabled, or all entries expired. Browse a few sites and run the command again.<\/li>\n\n\n\n<li><strong>Entries reappear after flush &#8211;<\/strong> An app or service is performing lookups in the background. After flushing, those apps may immediately repopulate the cache.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"website-owners-faster-safer-dns-changes\">Website Owners: Faster, Safer DNS Changes<\/h2>\n\n\n\n<p>During migrations or CDN cutovers, lower your DNS TTL 24-48 hours before changes, then raise it after. Use ipconfig \/displaydns to confirm your device sees the new records. If you host with YouStable, our support team can help plan TTLs, validate records, and minimize downtime during moves especially for high traffic or ecommerce sites.<\/p>\n\n\n\n<p>When testing pre-launch, add a hosts file entry pointing to the new server and flush DNS. This lets you verify the site <strong>(and SSL)<\/strong> on the new IP without exposing it publicly. <strong><a href=\"https:\/\/www.youstable.com\/\">YouStable\u2019s<\/a><\/strong> engineers can guide you through this workflow step by step.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"related-commands-you-should-know\">Related Commands You Should Know<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>ipconfig \/flushdns: <\/strong><a href=\"https:\/\/www.youstable.com\/blog\/how-to-clear-cache-for-all-major-browsers\/\">Clears the local resolver cache<\/a>.<\/li>\n\n\n\n<li><strong>nslookup example.com:<\/strong> Queries a DNS server directly (basic testing).<\/li>\n\n\n\n<li><strong>Resolve DnsName example.com (PowerShell): <\/strong>Modern resolver with detailed output.<\/li>\n\n\n\n<li><strong>Get DnsClientServerAddress: <\/strong>Shows which DNS servers your adapters use.<\/li>\n\n\n\n<li><strong>tracert or Test NetConnection:<\/strong> Verifies network path and connectivity.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs\">FAQs<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1768206443626\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"does-ipconfig-displaydns-show-all-dns-queries-from-my-pc\">Does ipconfig \/displaydns show all DNS queries from my PC?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. It shows entries cached by Windows\u2019 DNS Client. Apps that use their own resolvers or encrypted DNS may bypass the OS cache, so their lookups might not appear here.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768206475828\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-long-do-entries-stay-in-the-dns-cache\">How long do entries stay in the DNS cache?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Each record includes a TTL (in seconds) set by the domain\u2019s DNS. Windows counts down that TTL; when it reaches zero, the entry expires and is removed or refreshed on the next lookup.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768206482288\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"is-ipconfig-flushdns-enough-to-see-new-dns-changes-immediately\">Is ipconfig \/flushdns enough to see new DNS changes immediately?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>It clears your local cache, but upstream resolvers (ISP\/public) may still serve old data until their cache TTL expires. If urgent, switch to another DNS server temporarily or wait for propagation.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768206488254\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"why-do-i-see-both-cname-and-a-aaaa-records-for-the-same-name\">Why do I see both CNAME and A\/AAAA records for the same name?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A CNAME is an alias pointing to another hostname. Windows resolves the CNAME target and then caches the final A\/AAAA record(s), so you\u2019ll often see both as part of a single resolution chain.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768206495031\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"whats-the-powershell-command-for-viewing-the-dns-cache\">What\u2019s the PowerShell command for viewing the DNS cache?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use Get DnsClientCache. It provides structured output ideal for filtering and exporting. To clear the cache in PowerShell, use Clear DnsClientCache.<br \/>Mastering ipconfig \/displaydns gives you clear visibility into DNS behavior on Windows. Whether you\u2019re diagnosing a stubborn redirect, validating a migration, or auditing recent lookups, this command and its PowerShell counterparts belong in your everyday toolkit. And if you want expert help aligning DNS with hosting performance, YouStable is here to assist.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>When a website doesn\u2019t load correctly, or it still opens the old version after a DNS change, what do you usually blame first? The browser? The internet? Or the server?<\/p>\n\n\n\n<p>Most of the time, the real answer is much closer to you than you think.<\/p>\n\n\n\n<p>That\u2019s exactly where <strong>ipconfig \/displaydns<\/strong> helps. It lets you see what your own Windows system believes is the correct destination for a website. No guessing. No assumptions. Just clear, real information sitting inside your DNS cache.<\/p>\n\n\n\n<p>Once you understand this command, DNS problems stop feeling confusing. You can quickly check whether your system is still holding an old IP, confirm if a DNS change has reached your device, or find out why a site works on one machine but not on another. Instead of waiting and wondering, you can look, verify, and act.<\/p>\n\n\n\n<p>Whether you are moving a website, fixing SSL warnings, testing a new server, or simply trying to understand how the internet works behind the scenes, this one command gives you control. Pair it with <a href=\"https:\/\/www.youstable.com\/blog\/clear-cache-in-windows-11\">cache clearing<\/a> and basic network checks, and you suddenly have a complete picture of what\u2019s happening.<\/p>\n\n\n\n<p>In short, ipconfig \/displaydns turns DNS troubleshooting from a guessing game into a clear conversation, between you and your system. And once you start using it, you\u2019ll wonder how you ever solved DNS issues without it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ipconfig \/displaydns is a Windows command that shows the current contents of the DNS Resolver Cache. It lists recently resolved [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":18175,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[350],"tags":[],"class_list":["post-17374","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/01\/Ipconfig-displaydns-Command-Explained.jpg","author_info":{"display_name":"Sanjeet Chauhan","author_link":"https:\/\/www.youstable.com\/blog\/author\/sanjeet"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17374","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=17374"}],"version-history":[{"count":10,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17374\/revisions"}],"predecessor-version":[{"id":18177,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17374\/revisions\/18177"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/18175"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=17374"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=17374"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=17374"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}