{"id":93,"date":"2023-10-06T08:39:39","date_gmt":"2023-10-06T08:39:39","guid":{"rendered":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/?p=93"},"modified":"2023-10-09T06:15:04","modified_gmt":"2023-10-09T06:15:04","slug":"WHAT-IS-DNS","status":"publish","type":"post","link":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html","title":{"rendered":"WHAT IS DNS"},"content":{"rendered":"<div class=\"kb-article-content\">\n<div class=\"break\" style=\"word-break: break-word;\">\n<h2>OVERVIEW<\/h2>\n<p class=\"p\">This article is a detailed overview of the Internet&#8217;s Domain Name System (DNS), covering the technical and theoretical aspects behind how domain names work.<\/p>\n<h2>DOMAIN NAME<\/h2>\n<p class=\"p\">A domain name usually consists of two or more parts (technically labels), separated by dots. For example: hostitsmart.com.<\/p>\n<ul>\n<li>The rightmost label conveys the top-level domain.<\/li>\n<li>Each label to the left specifies a subdivision or subdomain of the domain above it. Note that &#8220;subdomain&#8221; expresses relative dependence, but not absolute dependence: for example, hostitsmart.com comprises a subdomain of the net domain, and www.hostitsmart.com comprises a subdomain of the domain hostitsmart.com. In theory, this subdivision can go down to 127 Levels deep, and each label can contain up to 63 characters, as long as the whole domain name does not exceed a total length of 255 characters. But in practice some domain registries have shorter limits than that.<\/li>\n<li>A hostname refers to a domain name that has one or more associated IP addresses. For example, the wiki.hostitsmart.com and hostitsmart.com domains are both hostnames.<\/li>\n<\/ul>\n<h2>DNS<\/h2>\n<p class=\"p\">The Domain Name System consists of a hierarchical set of DNS servers. Each domain or subdomain has one or more authoritative DNS servers that publish information about that domain and the nameservers of any domains &#8220;beneath&#8221; it. The hierarchy of authoritative DNS servers matches the hierarchy of domains. At the top of the hierarchy stand the root nameservers: the servers to query when looking up (resolving) a top-level domain name (TLD). Iterative and recursive queries:<\/p>\n<ul>\n<li>An iterative query is one where the DNS server may provide a partial answer to the query (or give an error). DNS servers must support non-recursive queries.<\/li>\n<li>A recursive query is one where the DNS server will fully answer the query (or give an error). DNS servers are not required to support recursive queries and both the resolver (or another DNS acting recursively on behalf of another resolver) negotiate use of recursive service using bits in the query headers.<\/li>\n<\/ul>\n<h2>DNS PROPAGATION<\/h2>\n<p class=\"p\">DNS Propagation refers to the time for any DNS changes to transmit across the Internet. Please remember that DNS changes in general can take up to 24-48 hours to fully propagate.<\/p>\n<h2>DNS RECORDS<\/h2>\n<h3>Root Domain<\/h3>\n<p class=\"p\">The root domain (also sometimes referred to as the &#8220;parent,&#8221; &#8220;naked,&#8221; or &#8220;apex&#8221; domain) is the primary entry for the domain without any subdomains. The NAME field typically remains blank as this would define a subdomain. This type of record should usually be an A record, with the value set to the destination IP address. Using a CNAME for the root domain can cause other DNS functions, such as MX records, to route incorrectly. It is standard practice to set the A record for the root domain to that of the &#8220;www.&#8221; subdomain.<\/p>\n<h3>CNAME or &#8220;Canonical Name&#8221;<\/h3>\n<p class=\"p\">CNAME Records are used to define an alias hostname. A CNAME record takes this format:<\/p>\n<p class=\"pre\">alias.domain.name IN CNAME otherhost.domain.name.<\/p>\n<p class=\"p\">This defines alias.domain.name as an alias for the host whose canonical (standard) name is otherhost.domain.name.<\/p>\n<h3>A Record<\/h3>\n<p class=\"p\">An A record gives you the IP address of a domain. That way, users that try to go to www.example.com will get to the right IP address. An A record or &#8220;Address Record&#8221; maps a hostname to a 32-bit IPv4 address. An &#8220;A&#8221; Record takes this format (example):<\/p>\n<p class=\"pre\">Name TTL TYPE DATAftp.domain.com 43200 A IP Address<\/p>\n<p class=\"p\">Hostitsmart DNS Zone files are written with a &#8220;wildcard&#8221; entry, that looks like this:<\/p>\n<p class=\"pre\">*.domain.com IN A xxx.xxx.xxx.xxx<\/p>\n<p class=\"p\">The x&#8217;s represnt your particular IP address. The star takes &#8220;anything&#8221; .domain.com and points it to your server&#8217;s IP address. This way, if someone mistakenly types too many or too few w&#8217;s, they&#8217;ll still see your website. This is also useful for setting up subdomains on your server, relieving you of the duty of adding an additional &#8220;A&#8221; record for the subdomain.<\/p>\n<h3>MX Record<\/h3>\n<p class=\"p\">Mail Exchange Record: Maps a domain name to a list of mail exchange servers for that domain. A zone can have one or more Mail Exchange (MX) records. These records point to hosts that accept mail messages on behalf of the host. A host can be an &#8216;MX&#8217; for itself. MX records need not point to a host in the same zone. An &#8216;MX&#8217; record takes this format:<\/p>\n<p class=\"pre\">host.domain.name IN MX 10 otherhost.domain.name.IN MX 20 otherhost2.domain.name.<\/p>\n<p class=\"p\">The &#8216;MX&#8217; preference numbers nn (value 0 to 65535) signify the order in which mailers select &#8216;MX&#8217; records when they attempt mail delivery to the host. The lower the &#8216;MX&#8217; number, the higher the host is in priority.<\/p>\n<h3>PTR Record \/ Pointer Record<\/h3>\n<p class=\"p\">Maps an IPv4 address to the canonical name for that host. Setting up a PTR record for a hostname in the in-addr.arpa. domain that corresponds to an IP address implements reverse DNS lookup for that address. For example, at the time of writing, www.icann.net has the IP address 192.0.34.164, but a PTR record maps 164.34.0.192.in-addr.arpa to its canonical name.<\/p>\n<h3>NS Record or &#8220;Name Server Record&#8221;<\/h3>\n<p class=\"p\">Maps a domain name to a list of DNS servers authoritative for that domain. In this case, for example of Hostitsmart NS would be:<\/p>\n<p class=\"pre\">ns1.hostitsmart.comns2.hostitsmart.com<\/p>\n<h3>SOA Record or &#8220;Start of Authority Record&#8221;<\/h3>\n<p class=\"p\">Specifies the DNS server providing authoritative information about an Internet domain, the email of the domain administrator, the domain serial number, and several timers relating to refreshing the zone.<\/p>\n<h3>TXT Record<\/h3>\n<p class=\"p\">The TXT Record allows an administrator to insert arbitrary text into a DNS record. For example, this record is used to implement the Sender Policy Framework and DomainKeys specifications.<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>OVERVIEW This article is a detailed overview of the Internet&#8217;s Domain Name System (DNS), covering the technical and theoretical aspects behind how domain names work. DOMAIN NAME A domain name usually consists of two or more parts (technically labels), separated by dots. For example: hostitsmart.com. The rightmost label conveys the top-level domain. Each label to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-93","post","type-post","status-publish","format-standard","hentry","category-domain-dns-queries"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WHAT IS DNS<\/title>\n<meta name=\"description\" content=\"Ready with your website &amp; not know how to proceed ahead? Check out our tutorial and learn to upload your website in a few simple steps!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WHAT IS DNS\" \/>\n<meta property=\"og:description\" content=\"Ready with your website &amp; not know how to proceed ahead? Check out our tutorial and learn to upload your website in a few simple steps!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-06T08:39:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-09T06:15:04+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html\"},\"author\":{\"name\":\"Admin\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9\"},\"headline\":\"WHAT IS DNS\",\"datePublished\":\"2023-10-06T08:39:39+00:00\",\"dateModified\":\"2023-10-09T06:15:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html\"},\"wordCount\":941,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization\"},\"articleSection\":[\"Domain &amp; DNS Queries\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html\",\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html\",\"name\":\"WHAT IS DNS\",\"isPartOf\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2023-10-06T08:39:39+00:00\",\"dateModified\":\"2023-10-09T06:15:04+00:00\",\"description\":\"Ready with your website & not know how to proceed ahead? Check out our tutorial and learn to upload your website in a few simple steps!\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization\",\"name\":\"Host IT Smart Knowledge base\",\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":240,\"height\":80,\"caption\":\"Host IT Smart Knowledge base\"},\"image\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WHAT IS DNS","description":"Ready with your website & not know how to proceed ahead? Check out our tutorial and learn to upload your website in a few simple steps!","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:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html","og_locale":"en_US","og_type":"article","og_title":"WHAT IS DNS","og_description":"Ready with your website & not know how to proceed ahead? Check out our tutorial and learn to upload your website in a few simple steps!","og_url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2023-10-06T08:39:39+00:00","article_modified_time":"2023-10-09T06:15:04+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html#article","isPartOf":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html"},"author":{"name":"Admin","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9"},"headline":"WHAT IS DNS","datePublished":"2023-10-06T08:39:39+00:00","dateModified":"2023-10-09T06:15:04+00:00","mainEntityOfPage":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html"},"wordCount":941,"commentCount":0,"publisher":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization"},"articleSection":["Domain &amp; DNS Queries"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html","url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html","name":"WHAT IS DNS","isPartOf":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2023-10-06T08:39:39+00:00","dateModified":"2023-10-09T06:15:04+00:00","description":"Ready with your website & not know how to proceed ahead? Check out our tutorial and learn to upload your website in a few simple steps!","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/93\/WHAT-IS-DNS.html"]}]},{"@type":"WebSite","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","publisher":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization","name":"Host IT Smart Knowledge base","url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":240,"height":80,"caption":"Host IT Smart Knowledge base"},"image":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/93","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=93"}],"version-history":[{"count":1,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/93\/revisions"}],"predecessor-version":[{"id":397,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/93\/revisions\/397"}],"wp:attachment":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=93"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=93"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=93"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}