Ldns drill: Difference between revisions

From wikinotes
(Created page with "Performs DNS queries, like dig.<br> Written in C, apparently much faster.")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Performs DNS queries, like [[dig]].<br>
Performs DNS queries, like [[dig]].<br>
Written in C, apparently much faster.
Written in C, apparently much faster.
= Documentation =
<blockquote>
{| class="wikitable"
|-
| <code>man drill</code> || https://man.archlinux.org/man/drill.1
|-
| home || https://www.nlnetlabs.nl/projects/ldns/about/
|-
|}
</blockquote><!-- Documentation -->
= Install =
<blockquote>
<syntaxhighlight lang="bash">
pacman -S ldns
</syntaxhighlight>
</blockquote><!-- Install -->
= Usage =
<blockquote>
<syntaxhighlight lang="bash">
# use DNS-server at 127.0.0.1 to retrieve DNS 'A' records from google.com
drill @127.0.0.1 \
  A google.com
</syntaxhighlight>
</blockquote><!-- Usage -->

Latest revision as of 17:13, 11 October 2021

Performs DNS queries, like dig.
Written in C, apparently much faster.

Documentation

man drill https://man.archlinux.org/man/drill.1
home https://www.nlnetlabs.nl/projects/ldns/about/

Install

pacman -S ldns

Usage

# use DNS-server at 127.0.0.1 to retrieve DNS 'A' records from google.com
drill @127.0.0.1 \
  A google.com