{"id":18460,"date":"2022-07-27T15:33:29","date_gmt":"2022-07-27T15:33:29","guid":{"rendered":"https:\/\/prensa.lacnic.net\/news?p=18460"},"modified":"2022-08-17T14:42:32","modified_gmt":"2022-08-17T14:42:32","slug":"dnssec-deployment-in-the-region-statistics-and-measurements","status":"publish","type":"post","link":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/","title":{"rendered":"DNSSEC Deployment in the Region \u2013 Statistics and Measurements"},"content":{"rendered":"\n<p>By <em>Hugo Salgado, <\/em>Research and Development at NIC Chile;<em> Dario Gomez Technology Consultant; Alejandro Acosta <\/em>R+D Coordinator at LACNIC<\/p>\n\n\n\n<p><strong>Introduction<\/strong><\/p>\n\n\n\n<p>In this article we would like to talk about some recent studies we have conducted on a topic we are very passionate about: DNSSEC. Note that we are using the plural term \u201cstudies\u201d, as there are two studies on DNSSEC that we began at the same time\u2026 please continue reading to find out what these two studies are about!<\/p>\n\n\n\n<p><strong>About DNSSEC<\/strong><\/p>\n\n\n\n<p>DNSSEC incorporates additional security to the DNS protocol, as it allows checking the integrity and authenticity of the data, preventing spoofing and tampering attacks through the use of asymmetric cryptography, better known as public\/private key cryptography. By using these keys and digital signatures based on public key cryptography, it is possible to determine whether a query has been altered, which allows guaranteeing the integrity and authenticity of the message. If these signatures are checked and they do not match, it means that the chain of trust has been broken and the query cannot be validated as legitimate.<\/p>\n\n\n\n<p>Having DNSSEC depends on your ISP or Internet service provider, who is the one responsible for configuring the protocol. There are several different tools to find out if you have DNSSEC, such as the following:<\/p>\n\n\n\n<p><a href=\"https:\/\/dnssec-analyzer.verisignlabs.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/dnssec-analyzer.verisignlabs.com\/<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/dnsviz.net\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/dnsviz.net\/<\/a><\/p>\n\n\n\n<p>As many already know, the DNSSEC protocol has been growing a lot in recent years. Four aspects have marked the growth of DNSSEC deployment:<\/p>\n\n\n\n<ol class=\"wp-block-list\" type=\"1\"><li>DNSSEC is enabled by default on some recursive servers (BIND).<\/li><li>Great progress has been achieved in making it easier for major registrars to enable DNSSEC on the different domains.<\/li><li>All major recursive DNS servers perform DNSSEC validation (Google Public DNS, Cloudflare, Quad9, etc.).<\/li><li>Apple very recently informed that iOS16 and macOS Ventura will allow DNSSEC validation at the stub resolver.<\/li><\/ol>\n\n\n\n<p>DNSSEC has always been very important for LACNIC, and we have organized many events and activities around this topic. However, to date we had never conducted our own study on the matter.<\/p>\n\n\n\n<p><strong>What is the study about?<\/strong><\/p>\n\n\n\n<p>LACNIC&#8217;s R&amp;D department wanted to carry out a study to understand the status and progress of DNSSEC deployment in the region.<\/p>\n\n\n\n<p><strong>Data sources<\/strong><\/p>\n\n\n\n<p>We have two very reliable data sources:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>We used RIPE ATLAS probes https:\/\/atlas.ripe.net\/<\/li><li>We performed traffic captures (tcpdump) that were then anonymized on authoritative servers<\/li><\/ul>\n\n\n\n<p><strong>Dates:<\/strong><\/p>\n\n\n\n<p>We began gathering data in November 2021. Currently, data is gathered automatically, and weekly and monthly reports are produced. [1]<\/p>\n\n\n\n<p><strong>How can one identify if a server is performing DNSSEC?<\/strong><\/p>\n\n\n\n<p>We need to look at two different things:<\/p>\n\n\n\n<div class=\"box-code\"><p><strong>\nAtlas probes:<\/strong><\/p><p>\nDNS resolution requests for a domain name that has intentional errors in its signatures and therefore cannot be validated with DNSSEC are sent to all available probes in Latin America and the Caribbean. An error response (SERVFAIL) means that the resolver used by that probe is using DNSSEC correctly. If, on the other hand, a response is obtained (NOERROR), the resolver is not performing any validation. Note that, interestingly, the goal is to obtain a negative response from the DNS server \u2013 this is the key to knowing whether the recursive server validates DNSSEC. \nNow, an example. If you visit dnssec-failed.org and can open the page, it means that your recursive DNS is not performing DNSSEC validation \u2013 you shouldn&#8217;t be able to open the page! :-)\n<\/p><p><strong>\nTraffic captures (tcpdump):<\/strong><\/p><p>\nBefore sharing what we do with traffic captures, we will first expand a bit on the concept of DNSSEC. Just as DNS has traditional records (A, AAAA, MX, etc.), new records were added for DNSSEC: DS, RRSIG, NSEC, NSEC3, and DNSKEY. In other words, a recursive DNS server can query the AAAA record to learn the IPv6 address of a name and also the Delegation Signer (DS) record to check the authenticity of the child zones. The key to this study is that servers that don&#8217;t perform DNSSEC validation don&#8217;t query DNSSEC records!\n<\/p><p>\nBased on the above, when making the capture, tcpdump is asked to take the entire packet (flag -s 0). Thus, we have all its content, from Layer 3 to Layer 7. While processing the packet, we look for specific DNSSEC records (again: DS, RRSIG, NSEC, NSEC3, and DNSKEY). If we can obtain any of these records, then the recursive server is indeed performing DNSSEC validation, otherwise it is not. \n<\/p><\/div>\n\n\n\n<p><strong>Where is this capture performed?<\/strong><\/p>\n\n\n\n<p>The capture is performed specifically in one of the instances of the reverse DNS D server (D.IP6-SERVERS.ARPA). The following command is used: \/usr\/sbin\/tcpdump -i $INTERFAZ -c $CANTIDAD -w findingdnssecresolvers-$TODAY.pcap -s 0 dst port $PORT and ( dst host $IP1 or dst host $IP2 )<\/p>\n\n\n\n<p><strong>Processing the data<\/strong><\/p>\n\n\n\n<p>First, processing the data comprises several steps, all of which are performed entirely using open-source software, specifically, Bash, Perl, and Python3 on Linux.<\/p>\n\n\n\n<p>Second, let&#8217;s not forget that there are two sources of information: traffic captures (PCAPs) and Atlas probes. Below is the methodology followed in each case.<\/p>\n\n\n\n<ul class=\"wp-block-list\" type=\"a\"><li>Processing of PCAPs: After obtaining the PCAPs, a series of steps are performed, including the following:<ol><li>Processing of PCAP files in Python3 using the pyshark library.<\/li><li>Cleaning of unprocessable data (incorrectly formed, damaged, non-processable packets, etc.)<\/li><li>Elimination of duplicate addresses<\/li><li>Anonymization of the data<\/li><li>Generation of result.<\/li><li>Generation of charts and open data<\/li><\/ol><\/li><\/ul>\n\n\n\n<ul class=\"wp-block-list\"><li>Processing of the information obtained in RIPE Atlas:<\/li><\/ul>\n\n\n\n<p>Traffic data captures are performed with monthly measurements on the RIPE Atlas platform, using its command line API. They are then collected and processed using a series of Perl scripts and, finally, they are plotted using the Google Charts API. In addition, we always make the data available in open data format.<\/p>\n\n\n\n<p>Let&#8217;s keep in mind that, in order to determine if a probe is using a validating resolver, it uses a domain name with intentionally incorrect signatures. Because the name is not valid according to DNSSEC, a validating probe should return an error when attempting to resolve that name. On the contrary, a positive response is obtained for the name, the resolver is not validating, as it has ignored the incorrect signature.<\/p>\n\n\n\n<p><strong>Results<\/strong><\/p>\n\n\n\n<p>The chart below shows the number of servers that were studied, specifying those that use DNSSEC and those that do not. The blue and red lines represent servers for which DNSSEC is and is not enabled, respectively.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/labs.lacnic.net\/imgs\/posts\/Post-DNSSEC-Julio-2022\/nro_de_servidores_DNSs_estudiados.png\" alt=\"Nro de Servidores DNSs estudiados\"\/><figcaption>Chart No. 1<\/figcaption><\/figure>\n\n\n\n<p>As the image shows, on 2 June 2022 there were more recursive servers that did not perform DNSSEC validation than servers that did. Between 33,000 and 55,000 IP addresses were analyzed each week. In general, an average of approximately 55% of servers that do not use the protocol and 45% of positive samples is maintained.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/labs.lacnic.net\/imgs\/posts\/Post-DNSSEC-Julio-2022\/nro_de_servidores_DNSs_estudiados_v6.png\" alt=\"Nro de Servidores IPv6 DNSs estudiados\"\/><figcaption>Chart No. 2<\/figcaption><\/figure>\n\n\n\n<p>Chart No. 2 shows the history of DNSSEC queries over IPv6. It is worth noticing that for various sampling periods there were more DNSSEC queries over IPv6 than over IPv4. Undoubtedly, the intention is for the red line to gradually decrease and for the blue line to gradually increase.<\/p>\n\n\n\n<p><strong>Ranking of countries with the highest DNSSEC validation rates<\/strong><\/p>\n\n\n\n<p>Using the RIPE Atlas measurement platform, it is possible to measure each country&#8217;s ability to validate DNSSEC. Each measurement can be grouped by country to create a ranking:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/labs.lacnic.net\/imgs\/posts\/Post-DNSSEC-Julio-2022\/dnssec_ranking_por_pais.png\" alt=\"Ranking DNSSEC por pais\"\/><figcaption>Chart No. 3<\/figcaption><\/figure>\n\n\n\n<p><em>Ranking based on average DNSSEC validation rates from networks in the countries of Latin America and the Caribbean corresponding to May 2022.<\/em><\/p>\n\n\n\n<p><em>The numbers inside the bars show the number of participating ASs for each country. Countries where we measured only one AS were not included.<\/em><\/p>\n\n\n\n<p><strong>Summary<\/strong><\/p>\n\n\n\n<p>Based on the study of traffic captures with data obtained over a period of eight months, the graph suggests a slow decrease in the number of NO-DNSSEC servers. There also appears to be greater DNSSEC deployment in IPv6 than in IPv4 servers.<\/p>\n\n\n\n<p>It is to be expected that an analysis of the data obtained using Atlas probes suggests greater deployment of DNSSEC validation than other, more generic data sources, as these probes are usually hosted on more advanced networks or by users who would deliberately enable DNSSEC. However, it somehow represents the \u201cupper limit\u201d of DNSSEC penetration and is also an important indicator of its evolution over time.<\/p>\n\n\n\n<p><strong>Open data<\/strong><\/p>\n\n\n\n<p>As usual, we at LACNIC want to make our information available so that anyone who wishes to do so can use it in their work:<\/p>\n\n\n\n<p><a href=\"https:\/\/stats.labs.lacnic.net\/DNSSEC\/opendata\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/stats.labs.lacnic.net\/DNSSEC\/opendata\/<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/mvuy27.labs.lacnic.net\/datos\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/mvuy27.labs.lacnic.net\/datos\/<\/a><\/p>\n\n\n\n<p>This data is being provided in the spirit of \u201cTime Series Data.\u201d In other words, we are making available data collected over time, which will make it very easy for our statistics to fluctuate and to identify increases and\/or drops in DNSSEC deployment by country, region, etc.<\/p>\n\n\n\n<p>As always when we work on this type of project, we welcome suggestions for the improvement of both the implementation and the visualization of the information obtained.<\/p>\n\n\n\n<p><strong>References:<\/strong><\/p>\n\n\n\n<p>[1] <a href=\"https:\/\/stats.labs.lacnic.net\/DNSSEC\/dnssecstats.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/stats.labs.lacnic.net\/DNSSEC\/dnssecstats.html<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/mvuy27.labs.lacnic.net\/datos\/dnssec-ranking-latest.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/mvuy27.labs.lacnic.net\/datos\/dnssec-ranking-latest.html<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>By Hugo Salgado, Research and Development at NIC Chile; Dario Gomez Technology Consultant; Alejandro Acosta R+D Coordinator at LACNIC Introduction In this article we would like to talk about some recent studies we have conducted on a topic we are very passionate about: DNSSEC. Note that we are using the plural term \u201cstudies\u201d, as there [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":18455,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[1357,919],"tags":[1360,1280],"archivo":[1345],"taxonomy-authors":[1248,1239],"tipo_autor":[],"class_list":["post-18460","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-labs","category-routing","tag-labs","tag-routing","archivo-editions","taxonomy-authors-alejandro-acosta-en","taxonomy-authors-hugo-salgado-en"],"acf":{"author":"","related_notes":null},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>LACNIC Blog | DNSSEC Deployment in the Region \u2013 Statistics and Measurements<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LACNIC Blog | DNSSEC Deployment in the Region \u2013 Statistics and Measurements\" \/>\n<meta property=\"og:description\" content=\"By Hugo Salgado, Research and Development at NIC Chile; Dario Gomez Technology Consultant; Alejandro Acosta R+D Coordinator at LACNIC Introduction In this article we would like to talk about some recent studies we have conducted on a topic we are very passionate about: DNSSEC. Note that we are using the plural term \u201cstudies\u201d, as there [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/\" \/>\n<meta property=\"og:site_name\" content=\"LACNIC Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/lacnic\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-27T15:33:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-17T14:42:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png\" \/>\n\t<meta property=\"og:image:width\" content=\"680\" \/>\n\t<meta property=\"og:image:height\" content=\"330\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Gianni\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lacnic\" \/>\n<meta name=\"twitter:site\" content=\"@lacnic\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/\"},\"author\":{\"name\":\"Gianni\",\"@id\":\"https:\/\/blog.lacnic.net\/#\/schema\/person\/1338d9cfdb0137e8bc5581f3771f39ab\"},\"headline\":\"DNSSEC Deployment in the Region \u2013 Statistics and Measurements\",\"datePublished\":\"2022-07-27T15:33:29+00:00\",\"dateModified\":\"2022-08-17T14:42:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/\"},\"wordCount\":1483,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blog.lacnic.net\/#organization\"},\"image\":{\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png\",\"keywords\":[\"Labs\",\"Routing\"],\"articleSection\":[\"Labs\",\"Routing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/\",\"url\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/\",\"name\":\"LACNIC Blog | DNSSEC Deployment in the Region \u2013 Statistics and Measurements\",\"isPartOf\":{\"@id\":\"https:\/\/blog.lacnic.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png\",\"datePublished\":\"2022-07-27T15:33:29+00:00\",\"dateModified\":\"2022-08-17T14:42:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage\",\"url\":\"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png\",\"contentUrl\":\"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png\",\"width\":680,\"height\":330},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/blog.lacnic.net\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DNSSEC Deployment in the Region \u2013 Statistics and Measurements\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.lacnic.net\/#website\",\"url\":\"https:\/\/blog.lacnic.net\/\",\"name\":\"LACNIC Blog\",\"description\":\"En el Blog de LACNIC encontrar\u00e1s art\u00edculos t\u00e9cnicos vinculados al desarrollo de Internet en la regi\u00f3n de Am\u00e9rica Latina y el Caribe.\",\"publisher\":{\"@id\":\"https:\/\/blog.lacnic.net\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.lacnic.net\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blog.lacnic.net\/#organization\",\"name\":\"LACNIC Blog\",\"url\":\"https:\/\/blog.lacnic.net\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.lacnic.net\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2023\/03\/lacnic-blog.svg\",\"contentUrl\":\"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2023\/03\/lacnic-blog.svg\",\"caption\":\"LACNIC Blog\"},\"image\":{\"@id\":\"https:\/\/blog.lacnic.net\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/lacnic\",\"https:\/\/x.com\/lacnic\",\"https:\/\/www.instagram.com\/lacnic\/?hl=es-la\",\"https:\/\/uy.linkedin.com\/company\/lacnic\",\"https:\/\/www.youtube.com\/user\/lacnicstaff\",\"https:\/\/www.lacnic.net\/podcast\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.lacnic.net\/#\/schema\/person\/1338d9cfdb0137e8bc5581f3771f39ab\",\"name\":\"Gianni\",\"url\":\"https:\/\/blog.lacnic.net\/en\/author\/gianni\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"LACNIC Blog | DNSSEC Deployment in the Region \u2013 Statistics and Measurements","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:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/","og_locale":"en_US","og_type":"article","og_title":"LACNIC Blog | DNSSEC Deployment in the Region \u2013 Statistics and Measurements","og_description":"By Hugo Salgado, Research and Development at NIC Chile; Dario Gomez Technology Consultant; Alejandro Acosta R+D Coordinator at LACNIC Introduction In this article we would like to talk about some recent studies we have conducted on a topic we are very passionate about: DNSSEC. Note that we are using the plural term \u201cstudies\u201d, as there [&hellip;]","og_url":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/","og_site_name":"LACNIC Blog","article_publisher":"https:\/\/facebook.com\/lacnic","article_published_time":"2022-07-27T15:33:29+00:00","article_modified_time":"2022-08-17T14:42:32+00:00","og_image":[{"width":680,"height":330,"url":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png","type":"image\/png"}],"author":"Gianni","twitter_card":"summary_large_image","twitter_creator":"@lacnic","twitter_site":"@lacnic","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#article","isPartOf":{"@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/"},"author":{"name":"Gianni","@id":"https:\/\/blog.lacnic.net\/#\/schema\/person\/1338d9cfdb0137e8bc5581f3771f39ab"},"headline":"DNSSEC Deployment in the Region \u2013 Statistics and Measurements","datePublished":"2022-07-27T15:33:29+00:00","dateModified":"2022-08-17T14:42:32+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/"},"wordCount":1483,"commentCount":0,"publisher":{"@id":"https:\/\/blog.lacnic.net\/#organization"},"image":{"@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png","keywords":["Labs","Routing"],"articleSection":["Labs","Routing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/","url":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/","name":"LACNIC Blog | DNSSEC Deployment in the Region \u2013 Statistics and Measurements","isPartOf":{"@id":"https:\/\/blog.lacnic.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage"},"image":{"@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png","datePublished":"2022-07-27T15:33:29+00:00","dateModified":"2022-08-17T14:42:32+00:00","breadcrumb":{"@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#primaryimage","url":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png","contentUrl":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png","width":680,"height":330},{"@type":"BreadcrumbList","@id":"https:\/\/blog.lacnic.net\/en\/dnssec-deployment-in-the-region-statistics-and-measurements\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/blog.lacnic.net\/en\/"},{"@type":"ListItem","position":2,"name":"DNSSEC Deployment in the Region \u2013 Statistics and Measurements"}]},{"@type":"WebSite","@id":"https:\/\/blog.lacnic.net\/#website","url":"https:\/\/blog.lacnic.net\/","name":"LACNIC Blog","description":"En el Blog de LACNIC encontrar\u00e1s art\u00edculos t\u00e9cnicos vinculados al desarrollo de Internet en la regi\u00f3n de Am\u00e9rica Latina y el Caribe.","publisher":{"@id":"https:\/\/blog.lacnic.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.lacnic.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blog.lacnic.net\/#organization","name":"LACNIC Blog","url":"https:\/\/blog.lacnic.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.lacnic.net\/#\/schema\/logo\/image\/","url":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2023\/03\/lacnic-blog.svg","contentUrl":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2023\/03\/lacnic-blog.svg","caption":"LACNIC Blog"},"image":{"@id":"https:\/\/blog.lacnic.net\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/lacnic","https:\/\/x.com\/lacnic","https:\/\/www.instagram.com\/lacnic\/?hl=es-la","https:\/\/uy.linkedin.com\/company\/lacnic","https:\/\/www.youtube.com\/user\/lacnicstaff","https:\/\/www.lacnic.net\/podcast"]},{"@type":"Person","@id":"https:\/\/blog.lacnic.net\/#\/schema\/person\/1338d9cfdb0137e8bc5581f3771f39ab","name":"Gianni","url":"https:\/\/blog.lacnic.net\/en\/author\/gianni\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/blog.lacnic.net\/wp-content\/uploads\/2022\/07\/thumb-dnssec-jul-2022.png","jetpack_sharing_enabled":true,"wpml_current_locale":"en_US","wpml_translations":[{"locale":"es_ES","id":18446,"post_title":"Despliegue de DNSSEC en la regi\u00f3n \u2013 Estad\u00edsticas y mediciones","slug":"despliegue-de-dnssec-en-la-region-estadisticas-y-mediciones","href":"https:\/\/blog.lacnic.net\/despliegue-de-dnssec-en-la-region-estadisticas-y-mediciones\/"},{"locale":"pt_BR","id":18465,"post_title":"Implementa\u00e7\u00e3o de DNSSEC na regi\u00e3o - Estat\u00edsticas e medi\u00e7\u00f5es","slug":"implementacao-de-dnssec-na-regiao-estatisticas-e-medicoes","href":"https:\/\/blog.lacnic.net\/pt-br\/implementacao-de-dnssec-na-regiao-estatisticas-e-medicoes\/"}],"_links":{"self":[{"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/posts\/18460","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/comments?post=18460"}],"version-history":[{"count":6,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/posts\/18460\/revisions"}],"predecessor-version":[{"id":18516,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/posts\/18460\/revisions\/18516"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/media\/18455"}],"wp:attachment":[{"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/media?parent=18460"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/categories?post=18460"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/tags?post=18460"},{"taxonomy":"archivo","embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/archivo?post=18460"},{"taxonomy":"taxonomy-authors","embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/taxonomy-authors?post=18460"},{"taxonomy":"tipo_autor","embeddable":true,"href":"https:\/\/blog.lacnic.net\/en\/wp-json\/wp\/v2\/tipo_autor?post=18460"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}