![추가 읽기](https://linux55.com/image/172823/%EC%B6%94%EA%B0%80%20%EC%9D%BD%EA%B8%B0.png)
# uname -a
Linux myserver 3.10.0-1062.18.1.el7.x86_64 #1 SMP Tue Mar 17 23:49:17 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
# cat /etc/resolv.conf
# Generated by NetworkManager
options rotate
options timeout:3
options attempts:6
nameserver one.xxx.xxx.xxx
nameserver two.xxx.xxx.xxx
nameserver thr.xxx.xxx.xxx
# nslookup some.url.ihave
Server: one.xxx.xxx.xxx
Address: one.xxx.xxx.xxx#53
** server can't find some.url.ihave: NXDOMAIN
DNS 조회를 위해 resolv.conf에 입력한 다른 두 개의 이름 서버를 시도하지 않는 이유는 무엇입니까?
답변1
** server can't find some.url.ihave: NXDOMAIN
nslookup
쿼리에 대한 답변을 받았기 때문에 중지됩니다. 분명히 대답을 얻으면 묻지 않습니다. 대답은 도메인이 존재하지 않는다는 것입니다.
이런 일이 발생하지 않도록 하려면 resolv.conf
도메인이 존재하지 않는다고 생각하는 DNS 서버의 IP 주소를 나열하지 마십시오. 그렇지 않으면 때로는, 아마도 항상 이런 대답을 듣게 될 것입니다. (고정된 보편적 규칙은 없습니다.동일한 안정적인 라이브러리의 두 프로그램 nslookup
과 ISC의 BIND DNS 클라이언트 라이브러리는 다른 순서를 사용하며 여전히 다른 동작을 하는 다른 사람들의 다른 DNS 클라이언트가 있습니다. )
추가 읽기
- 조나단 데보인 폴라드(2003).백업 프록시 DNS 서버는 기본 DNS 네임스페이스와 동일한 DNS 네임스페이스 보기를 제공해야 합니다.. 일반적인 답변.
- 조나단 데보인 폴라드(2003).결과
nslookup
가 작업과 다른 이유ping
. 일반적인 답변. - 조나단 드보인 폴라드(2001).
nslookup
심각한 결함이 있는 도구입니다. 사용하지 마십시오.. 일반적인 답변.