From 9e6308411137dd1a915bc75ff20799a6c502abc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serge=20Crois=C3=A9?= Date: Tue, 11 Oct 2022 23:46:50 +0200 Subject: [PATCH 1/2] singular (... we want the DNS server to only respond ...) --- docs/guides/dns/private_dns_server_using_bind.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/dns/private_dns_server_using_bind.md b/docs/guides/dns/private_dns_server_using_bind.md index 26129a072d..058bd3c82d 100644 --- a/docs/guides/dns/private_dns_server_using_bind.md +++ b/docs/guides/dns/private_dns_server_using_bind.md @@ -71,9 +71,9 @@ These changes require us to edit the named.conf file, to do this, we are using _ vi /etc/named.conf ``` -First thing we want to do is turn off listening on the localhost, this is done by remarking out with a "#" sign, these two lines in the "options" section. What this does is to effectively shutdown any connection to the outside world. +First thing we want to do is turn off listening on the localhost, this is done by remarking out with a "#" sign, these two lines in the "options" section. What this does is to effectively shut down any connection to the outside world. -This is helpful, particularly when we go to add this DNS to our workstations, because we want these DNS server to only respond when the IP address requesting the service is local, and simply not respond at all if the service that is being looked up is on the Internet. +This is helpful, particularly when we go to add this DNS to our workstations, because we want the DNS server to only respond when the IP address requesting the service is local, and simply not respond at all if the service that is being looked up is on the Internet. This way, the other configured DNS servers will take over nearly immediately to look up the Internet based services: From 4526ee29c2bd8c19160551b95766f3f78592bcba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serge=20Crois=C3=A9?= Date: Wed, 12 Oct 2022 00:38:25 +0200 Subject: [PATCH 2/2] punctuation (... "Time To Live".) --- docs/guides/dns/private_dns_server_using_bind.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/dns/private_dns_server_using_bind.md b/docs/guides/dns/private_dns_server_using_bind.md index 058bd3c82d..5c477a8129 100644 --- a/docs/guides/dns/private_dns_server_using_bind.md +++ b/docs/guides/dns/private_dns_server_using_bind.md @@ -178,7 +178,7 @@ Now that we have all of this added in and are preparing to restart our _bind_ DN Just making things work isn't good enough if you don't know what each term means, right? -* **TTL** appears in both files and it stands for "Time To Live." TTL tells the DNS server how long to keep its cache in place before requesting a fresh copy. In this case, the TTL is the default setting for all records unless a specific record TTL is set. The default here is 86400 seconds or 24 hours. +* **TTL** appears in both files and it stands for "Time To Live". TTL tells the DNS server how long to keep its cache in place before requesting a fresh copy. In this case, the TTL is the default setting for all records unless a specific record TTL is set. The default here is 86400 seconds or 24 hours. * **IN** stands for Internet. In this case, we aren't actually using the Internet, so think of this as the Intranet. * **SOA** stands for "Start Of Authority" or what the primary DNS server is for the domain. * **NS** stands for "name server"