Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 14, 2020 09:08 pm GMT

Do I need to understand DNS as Web Developer?

So, do I have to understand what DNS is, as a Web Developer? Lets find out!

Lets be honest as a Web Developer, we only hear about HTML, CSS, JavaScript, MYSQL, MongoDB, Git, etc. How about DNS configuration and deployment on a real web server? Before you say that DNS is not important, read the next wonderful paragraph.

Think of a burger that does not have its own burger meat between the buns. Its impossible to imagine it, correct? Well, its the same thing for DNS. Without DNS you cannot host your xyz.com website on a web server.

The deployment process is really easy and it comes in two steps. In the first step, via FTP, you can upload the files of your website. You can also choose to do it via SSH. However, if you have a shared hosting, due to security reasons, you most probably wont have access to your server via SSH. Only if you have a VPS/ Dedicated Server. I wont explain the first concept any further in this article. The second step consists of setting up the DNS configuration of your domain name.

To connect to the FTP Server you must connect to your FTP account via Filezilla, or another tool.

To connect via SSH, you must have a linux terminal, or Putty.

What is DNS?

Do you remember the yellow pages that were used in the past to find the phone number/ address of a person? Well DNS (Domain Name Service) is pretty much this. A user types in the browser the URL (web address) of the website he/ she would like to visit. After that, the DNS servers return the IP address of the Web server associated with the domain that you typed. For example, the domain xyz.com might be translated to 213.246.62.200.

DNS has multiple records that are used for different purposes.

The A record

This might be the most important DNS record. Basically, it says to the browser, point the website xyz.com to the address 213.246.62.200. To update, add, remove the A records of your domain name, you must have a DNS configuration panel. All Web Hosting companies are offering one, for example, Plesk / Cpanel, Directadmin etc.

To determine the IP of your website, you can use the Linux command > dig A xyz.com, inside a Linux terminal.

The Cname record

This DNS record points one web address www.xyz.com to xyz.com. Most people are using this record to redirect the traffic from the subdomain www.xyz.com to the main domain xyz.com.

TXT record

Usually, this record is used to verify the ownership of a domain. In some cases, you will be asked by the registrar of your domain to put a unique ID inside the TXT record.

The TXT record its also used for setting up the DKIM ( a technique that protects the email senders from spam, phishing etc).

Another use for TXT would be to set up the SPF, which is used to authorize which IP addresses can send email from one particular domain.

"MX" record

This record specifies the mail server responsible for accepting the incoming and outgoing emails on the behalf of the domain.

If you fell in love with DNS and you want to dig a little deeper, check out these commands.

ping xyz.com (to determine the IP of a web page, but is mainly used to determine the connectivity). Linux + Windows + Mac

dig xyz.com (this is the most popular command used to query the DNS zone of a domain). Linux + Mac

nslookup xyz.com (pretty much, same use as dig)Or to make it easier for you, use the online tool https://dnschecker.org/. Linux + Windows

How DNS query works?

Now that we know a little about DNS, how does it really work?
Imagine, A user will type reddit.com on an internet browser, then your device will look into the local DNS cache of your machine. In the case where the device does not find an answer, it will go for a DNS query.

Your computer will contact your ISPs recursive DNS servers, to request the IP of xyz.com. Recursive DNS servers have their local cache, much like your local computer. Some of the ISPs are using the same recursive DNS servers. If the domain name is present in its cache, the query will end here, if not, will continue.

The DNS servers of the ISP, will then request the IP of reddit.com to the DNS Root Server. Then the Root Server sends back the IP of the .com top-level domain. Below you can see the steps of a DNS Query.

Alt Text

After, the ISP does request the IP of the authoritative server for reddit.com to the DNS Server for .COM domains. The server sends back the IP to the servers of the ISPs Servers.

Another IP request of reddit.com from ISP is sent to the Authoritative DNS Server for reddit.com. The IP is sent back to the ISP and the ISP sends the IP back to the user and the website is displayed.

All this process takes only a few milliseconds.

DNS propagation time

Well, all sounds good, right? Not so fast!

The DNS query is a really fast process, unlike the DNS propagation.

The DNS propagation can take up to 72 hours, when you update the DNS zone. DNS when updated, it has to be replicated on the internet worldwide.

We are at the end of this article, therefore whats the conclusion? Is DNS knowledge important for Web Developers? Its not like a MUST HAVE, but its a nice extra knowledge to have. Especially if you are a Freelancer, working as WordPress / (other CMS) Developer. You might cash in some extra from your client, just because you have an extra skill that is really handy.

And OF COURSE, the most important thing of all. DNS JOKES.

Ill tell you a DNS joke but be advised, it could take up to 24 hours or more, for everyone to get it.

Do not hesitate to come and say hi!
My Twitter
Dribbble


Original Link: https://dev.to/johncornea/do-i-need-to-understand-dns-as-web-developer-3hib

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To