{"id":1792,"date":"2025-03-13T07:16:34","date_gmt":"2025-03-13T04:16:34","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/"},"modified":"2025-03-13T07:16:34","modified_gmt":"2025-03-13T04:16:34","slug":"configuring-secure-dns-in-windows-server-2022","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/","title":{"rendered":"Configuring Secure DNS in Windows Server 2022"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>In today&#8217;s digital landscape, ensuring the integrity and security of network communications is paramount. One critical aspect of this is the Domain Name System (DNS), which translates human-readable domain names into IP addresses. Windows Server 2022 introduces several advancements in security, including enhanced DNS features. In this article, we&#8217;ll guide you through configuring Secure DNS in Windows Server 2022 to protect your network from data leaks and man-in-the-middle attacks.<\/p>\n<p><\/p>\n<h2>What is Secure DNS?<\/h2>\n<p><\/p>\n<p>Secure DNS refers to DNS enhancements that protect the communication between clients and DNS servers. The primary protocols used to enhance DNS security are DNSSEC (DNS Security Extensions) and DoH (DNS over HTTPS). DNSSEC helps to verify the authenticity of the responses received from DNS queries, while DoH provides encryption, ensuring that sensitive DNS queries remain private.<\/p>\n<p><\/p>\n<h2>Prerequisites<\/h2>\n<p><\/p>\n<p>Before you begin, ensure you have the following:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>Windows Server 2022 with the DNS Server role installed.<\/li>\n<p><\/p>\n<li>Administrative privileges on the server.<\/li>\n<p><\/p>\n<li>A network that allows for appropriate DNS configurations.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Step-by-Step Guide to Configure Secure DNS<\/h2>\n<p><\/p>\n<h3>1. Install the DNS Server Role<\/h3>\n<p><\/p>\n<p>If you haven\u2019t already installed the DNS Server role, you can do so through the Server Manager.<\/p>\n<p><\/p>\n<ol><\/p>\n<li>Open <strong>Server Manager<\/strong>.<\/li>\n<p><\/p>\n<li>Click on <strong>Add roles and features<\/strong>.<\/li>\n<p><\/p>\n<li>In the wizard, select <strong>Role-based or feature-based installation<\/strong>.<\/li>\n<p><\/p>\n<li>Select your server and click <strong>Next<\/strong>.<\/li>\n<p><\/p>\n<li>Under <strong>Server Roles<\/strong>, check the <strong>DNS Server<\/strong> box.<\/li>\n<p><\/p>\n<li>Click <strong>Next<\/strong> and proceed with the installation.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>2. Enable DNSSEC<\/h3>\n<p><\/p>\n<p>DNSSEC adds a layer of security to your DNS records. Follow these steps to enable DNSSEC for your zone:<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Open DNS Manager<\/strong>:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>Type <code>dnsmgmt.msc<\/code> in the Run dialog (Windows + R) and press Enter.<\/li>\n<p>\n<\/ul>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Select Your Zone<\/strong>:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>In the left pane, expand your server and right-click on the zone you want to secure. <\/li>\n<p>\n<\/ul>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Enable DNSSEC<\/strong>:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>Click on <strong>DNSSEC<\/strong> and select <strong>Sign the Zone<\/strong>. <\/li>\n<p><\/p>\n<li>Follow the wizard to configure the signing process. You will create a DNSSEC key (KSK\/ ZSK).<\/li>\n<p>\n<\/ul>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>Verify DNSSEC Configuration<\/strong>:\n<ul><\/p>\n<li>You can use tools like <code>dig<\/code> or online DNSSEC validators to check if your DNS records are properly signed.<\/li>\n<p>\n<\/ul>\n<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>3. Configure DNS over HTTPS (DoH)<\/h3>\n<p><\/p>\n<p>Windows Server 2022 supports DNS over HTTPS, enabling clients to perform secure queries. Here\u2019s how to set it up:<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Open Windows PowerShell with Administrative Privileges<\/strong>.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Install the DoH feature<\/strong>:<br \/>\nUse the following command in PowerShell:<\/p>\n<p><\/p>\n<pre><code class=\"language-powershell\">Install-WindowsFeature -Name DNS -IncludeManagementTools<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Configure the DNS Server to use DoH<\/strong>:<br \/>\nYou can modify the DNS server settings to enable DoH and specify the DoH resolver URL. Run the following command:<\/p>\n<p><\/p>\n<pre><code class=\"language-powershell\">Set-DnsServerDnsSecZone -Name \"YOUR_ZONE_NAME\" -EnableDnsOverHttps $true -DoHUrl \"https:\/\/dns.yourdohresolver.com\/dns-query\"<\/code><\/pre>\n<p><\/p>\n<p>Replace <code>\"YOUR_ZONE_NAME\"<\/code> with your actual zone name and the <code>DoHUrl<\/code> with your preferred DoH resolver.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>Configure Client to use DoH<\/strong>:<br \/>\nClients connecting to this DNS server will also need to be configured or have an operating system that supports DoH. In Windows 11 (and some versions of Windows 10), you can set up DoH through Network Settings.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>4. Test Your Configuration<\/h3>\n<p><\/p>\n<p>Once you have configured DNSSEC and DNS over HTTPS, it\u2019s essential to test if everything is set up correctly.<\/p>\n<p><\/p>\n<ul><\/p>\n<li>Use tools like <code>nslookup<\/code> to check if the DNS queries are being resolved correctly.<\/li>\n<p><\/p>\n<li>Use online DNS diagnostic tools to ensure that DNSSEC is properly enabled and that your DNS queries are encrypted.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h3>5. Monitor DNS Traffic<\/h3>\n<p><\/p>\n<p>Continuous monitoring is key to maintaining DNS security. Tools such as Microsoft Message Analyzer or the built-in Performance Monitor in Windows can help you analyze DNS logs and detect any anomalies.<\/p>\n<p><\/p>\n<h2>Conclusion<\/h2>\n<p><\/p>\n<p>Configuring Secure DNS on your Windows Server 2022 environment is a fundamental step toward establishing a robust security posture for your organization&#8217;s network. By implementing DNSSEC and DNS over HTTPS, you can protect sensitive data from interception and ensure the authenticity of DNS responses. <\/p>\n<p><\/p>\n<p>By taking these steps, you not only enhance security but also build trust in your networking infrastructure. Stay vigilant, and keep monitoring your DNS servers for any potential threats to maintain a secure environment.<\/p>\n<p><\/p>\n<p>For more articles and tips on Windows Server and other IT topics, stay tuned to WafaTech Blogs!<\/p>\n<p><\/p>\n<h3>Additional Resources<\/h3>\n<p><\/p>\n<ul><\/p>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/windows-server\/networking\/dns\/dns-security\">Microsoft Documentation: DNS Security<\/a><\/li>\n<p><\/p>\n<li><a href=\"https:\/\/dnssec-deployment.org\/\">DNSSEC Deployment Best Practices<\/a><\/li>\n<p><\/p>\n<li><a href=\"https:\/\/www.cloudflare.com\/learning\/dns\/what-is-dns-over-https\/\">Understanding DNS over HTTPS<\/a> <\/li>\n<p>\n<\/ul>\n<p><\/p>\n<p>By following these guidelines, you\u2019ll empower your IT infrastructure to withstand various cyber threats while leveraging the latest in DNS technology. Happy configuring!<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s digital landscape, ensuring the integrity and security of network communications is paramount. One critical aspect of this is the Domain Name System (DNS), which translates human-readable domain names into IP addresses. Windows Server 2022 introduces several advancements in security, including enhanced DNS features. In this article, we&#8217;ll guide you through configuring Secure DNS [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":1793,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[24],"tags":[391,312,447,266,276],"class_list":["post-1792","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-windows-security","tag-configuring","tag-dns","tag-secure","tag-server","tag-windows","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Configuring Secure DNS in Windows Server 2022 - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Configuring Secure DNS in Windows Server 2022 %\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configuring Secure DNS in Windows Server 2022\" \/>\n<meta property=\"og:description\" content=\"Configuring Secure DNS in Windows Server 2022 %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/\" \/>\n<meta property=\"og:site_name\" content=\"WafaTech Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-13T04:16:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2221\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"WafaTech SA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:site\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"WafaTech SA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Configuring Secure DNS in Windows Server 2022\",\"datePublished\":\"2025-03-13T04:16:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/\"},\"wordCount\":678,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Configuring-Secure-DNS-in-Windows-Server-2022.png\",\"keywords\":[\"Configuring\",\"DNS\",\"Secure\",\"Server\",\"Windows\"],\"articleSection\":[\"Windows Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/\",\"name\":\"Configuring Secure DNS in Windows Server 2022 - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Configuring-Secure-DNS-in-Windows-Server-2022.png\",\"datePublished\":\"2025-03-13T04:16:34+00:00\",\"description\":\"Configuring Secure DNS in Windows Server 2022 %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Configuring-Secure-DNS-in-Windows-Server-2022.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Configuring-Secure-DNS-in-Windows-Server-2022.png\",\"width\":1024,\"height\":1024,\"caption\":\"windows server secure dns\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/windows-server\\\/windows-security\\\/configuring-secure-dns-in-windows-server-2022\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configuring Secure DNS in Windows Server 2022\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"name\":\"WafaTech Blogs\",\"description\":\"Smart Technologies\",\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"alternateName\":\"WafaTech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\",\"name\":\"WafaTech Blogs\",\"alternateName\":\"WafaTech\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"width\":2221,\"height\":482,\"caption\":\"WafaTech Blogs\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/WafaTech\\\/61560546351289\\\/\",\"https:\\\/\\\/x.com\\\/wafatech_sa\",\"https:\\\/\\\/www.youtube.com\\\/@wafatech-sa\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wafatech\\\/\"],\"description\":\"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.\",\"email\":\"sales@wafatech.sa\",\"legalName\":\"Al-Wafa Al-Dhakia For Information Technology LLC\",\"foundingDate\":\"2013-01-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\",\"name\":\"WafaTech SA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"caption\":\"WafaTech SA\"},\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/author\\\/omer-yaseen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Configuring Secure DNS in Windows Server 2022 - WafaTech Blogs","description":"Configuring Secure DNS in Windows Server 2022 %","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/","og_locale":"en_US","og_type":"article","og_title":"Configuring Secure DNS in Windows Server 2022","og_description":"Configuring Secure DNS in Windows Server 2022 %","og_url":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2025-03-13T04:16:34+00:00","og_image":[{"width":2221,"height":482,"url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","type":"image\/webp"}],"author":"WafaTech SA","twitter_card":"summary_large_image","twitter_creator":"@wafatech_sa","twitter_site":"@wafatech_sa","twitter_misc":{"Written by":"WafaTech SA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Configuring Secure DNS in Windows Server 2022","datePublished":"2025-03-13T04:16:34+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/"},"wordCount":678,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Configuring-Secure-DNS-in-Windows-Server-2022.png","keywords":["Configuring","DNS","Secure","Server","Windows"],"articleSection":["Windows Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/","url":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/","name":"Configuring Secure DNS in Windows Server 2022 - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Configuring-Secure-DNS-in-Windows-Server-2022.png","datePublished":"2025-03-13T04:16:34+00:00","description":"Configuring Secure DNS in Windows Server 2022 %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Configuring-Secure-DNS-in-Windows-Server-2022.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Configuring-Secure-DNS-in-Windows-Server-2022.png","width":1024,"height":1024,"caption":"windows server secure dns"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/windows-server\/windows-security\/configuring-secure-dns-in-windows-server-2022\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Configuring Secure DNS in Windows Server 2022"}]},{"@type":"WebSite","@id":"https:\/\/wafatech.sa\/blog\/#website","url":"https:\/\/wafatech.sa\/blog\/","name":"WafaTech Blogs","description":"Smart Technologies","publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"alternateName":"WafaTech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wafatech.sa\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wafatech.sa\/blog\/#organization","name":"WafaTech Blogs","alternateName":"WafaTech","url":"https:\/\/wafatech.sa\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","width":2221,"height":482,"caption":"WafaTech Blogs"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","https:\/\/x.com\/wafatech_sa","https:\/\/www.youtube.com\/@wafatech-sa","https:\/\/www.linkedin.com\/company\/wafatech\/"],"description":"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.","email":"sales@wafatech.sa","legalName":"Al-Wafa Al-Dhakia For Information Technology LLC","foundingDate":"2013-01-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06","name":"WafaTech SA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","caption":"WafaTech SA"},"url":"https:\/\/wafatech.sa\/blog\/author\/omer-yaseen\/"}]}},"jetpack_featured_media_url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Configuring-Secure-DNS-in-Windows-Server-2022.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/1792","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/comments?post=1792"}],"version-history":[{"count":0,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/1792\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/1793"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=1792"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=1792"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=1792"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}