當主 DNS 無法解析時進行故障轉移 DNS?

當主 DNS 無法解析時進行故障轉移 DNS?

我正在託管 Windows 網域的網路上執行 Ubuntu 18.04 桌面工作站。 Windows 網域伺服器為本機伺服器提供 DNS 解析,但並非總是為遠端伺服器提供準確的 DNS 解析。這意味著,如果我將非網域 DNS 伺服器作為我的主伺服器(例如 Google 的 8.8.8.8),我可以解析 Web 伺服器,但不能解析本機伺服器。如果我將網域控制站作為我的主 DNS 伺服器,我可以解析本機伺服器,但不能解析某些 Web 伺服器(尤其是 AWS Cloudfront 終端節點)。

以 Google DNS 作為主要、網域控制站作為輔助的範例:

nslookup localserver
Server:     8.8.8.8
Address:    8.8.8.8#53

** server can't find localserver: NXDOMAIN

當主 DNS 伺服器無法解析 DNS 名稱時,是否有辦法取得 DNS 解析以與輔助 DNS 伺服器進行檢查?

答案1

您可以在中查看目前已設定的 DNS 伺服器列表

/run/systemd/resolve/resolv.conf

如果它不包含您需要的所有 DNS 伺服器,請嘗試添加更多,每個伺服器在 IPV4 標籤下的網路設定中以逗號分隔,IPV4 DNS 設定

如果這不起作用,您可以直接在 /etc/systemd/resolved.conf 中設定後備 DNS

這是一個範例:

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See resolved.conf(5) for details

[Resolve]
#DNS=
#FallbackDNS=
#Domains=
#LLMNR=no
#MulticastDNS=no
#DNSSEC=no
#Cache=yes
#DNSStubListener=yes

相關內容