From d3c4773a3f920a2c366c118f84b1bc72fadc2f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Freire?= Date: Sat, 27 May 2023 14:45:44 -0300 Subject: [PATCH] Add DNS answers (#375) --- topics/dns/README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/topics/dns/README.md b/topics/dns/README.md index 0a2e460..a805b20 100644 --- a/topics/dns/README.md +++ b/topics/dns/README.md @@ -89,6 +89,7 @@ A mapping between domain name and an IP address. What types of DNS records are there?
* A + * CNAME * PTR * MX * AAAA @@ -161,8 +162,29 @@ True.
Which techniques a DNS can use for load balancing?
+There are several techniques that a DNS can use for load balancing, including: + +* Round-robin DNS + +* Weighted round-robin DNS + +* Least connections + +* GeoDNS
-What is a zone? What types of zones are there?
+What is a DNS zone?
+A DNS zone is a logical container that holds all the DNS resource records for a specific domain name.
+ +
+What types of zones are there?
+There are several types, including: + +* Primary zone: A primary zone is a read/write zone that is stored in a master DNS server. + +* Secondary zone: A secondary zone is a read-only copy of a primary zone that is stored in a slave DNS server. + +* Stub zone: A stub zone is a type of zone that contains only the essential information about a domain name. It is used to reduce the amount of DNS traffic and improve the efficiency of the DNS resolution process. +
\ No newline at end of file