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
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.
= 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 -->

Revision as of 17:12, 11 October 2021

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

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