Рекурсивный 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]] каждой записи, снижая задержку и нагрузку на вышестоящие серверы. В роли рекурсивных резолверов выступают серверы интернет-провайдеров, публичные сервисы 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.