재귀 DNS 리졸버
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://tldfyi.com/iframe/glossary/recursive-dns/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://tldfyi.com/glossary/recursive-dns/
Add a dynamic SVG badge to your README or docs.
[](https://tldfyi.com/glossary/recursive-dns/)
Use the native HTML custom element.
재귀 DNS 리졸버는 클라이언트로부터 [[dns|DNS]] 쿼리를 받아 대신 전체 해석 과정을 수행하는 서버로, DNS 계층 구조의 [[dns-root-server|루트 네임서버]]부터 쿼리 대상 도메인의 [[authoritative-dns|권한 서버]]까지 단계적으로 탐색합니다. [[authoritative-dns|권한 서버]]와 달리 재귀 리졸버는 중간 역할을 담당하며, 각 레코드의 [[ttl|TTL]]에 따라 응답을 캐시하여 지연 시간과 상위 쿼리 부하를 줄입니다. ISP 운영 리졸버, Cloudflare 1.1.1.1·Google 8.8.8.8 같은 공개 서비스, 기업 DNS 서버 모두 재귀 리졸버로 동작합니다. [[dns-over-https|DNS over HTTPS]]와 [[dns-over-tls|DNS over TLS]]는 클라이언트와 재귀 리졸버 사이의 채널을 암호화해 도청을 방지합니다.
예시
When you visit example.com, your laptop sends a query to the recursive resolver at 1.1.1.1, which contacts root, .com TLD, and authoritative nameservers in sequence before returning the IP — subsequent users hitting 1.1.1.1 receive the cached answer instantly.