File: dnstracer.pod

package info (click to toggle)
dnstracer 1.9-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 696 kB
  • ctags: 274
  • sloc: sh: 3,018; ansic: 1,364; makefile: 21
file content (117 lines) | stat: -rw-r--r-- 2,822 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#
# $Id: dnstracer.pod,v 1.19 2004/07/08 11:15:42 mavetju Exp $
#

=head1 NAME

B<dnstracer> - trace a chain of DNS servers to the source

=head1 SYNOPSIS

B<dnstracer> [B<options>] I<name>

=head1 DESCRIPTION

B<dnstracer> determines where a given Domain Name Server (DNS) gets
its information from, and follows the chain of DNS servers back to
the servers which know the data.

Options are:

=over 8

=item B<-c>

Disable local caching.

=item B<-C>

Enable negative caching.

=item B<-o>

Enable overview of received answers at the end.

=item B<-q I<queryclass>>

Change the query-class, default is A. You can either specify a
number of the type (if you're brave) or one of the following strings:
a, aaaa, a6, soa, cname, hinfo, mx, ns, txt and ptr.

=item B<-r I<retries>>

Number of retries for DNS requests, default 3.

=item B<-s I<server>>

DNS server to use for the initial request, default is aquired from
the system. If a dot is specified (.), A.ROOT-SERVERS.NET will be
used.

=item B<-v>

Be verbose on what sent or received.

=item B<-4>

Use only IPv4 servers, don't query IPv6 servers (only available
when IPv6 support hasn't been disabled)

=item B<-S I<sourceaddress>>

Use this as source-address for the outgoing packets.

=back

=head1 HOW IT WORKS

It sends the specified name-server a non-recursive request for the
name.

Non-recursive means: if the name-server knows it, it will return
the data requested. If the name-server doesn't know it, it will
return pointers to name-servers that are authoritative for the domain
part in the name or it will return the addresses of the root
name-servers.

If the name server does returns an authoritative answer for the name,
the next server is queried. If it returns an non-authoritative
answer for the name, the name servers in the authority records will
be queried.

The program stops if all name-servers are queried.

Make sure the server you're querying doesn't do forwarding towards
other servers, as dnstracer is not able to detect this for you.

It detects so called lame servers, which are name-servers which has
been told to have information about a certain domain, but don't
have this information.

=head1 EXAMPLES

Search for the A record of www.mavetju.org on your local nameserver:

dnstracer www.mavetju.org

Search for the MX record of mavetju.org on the root-nameservers:

dnstracer C<-s> . C<-q> mx mavetju.org

Search for the PTR record (hostname) of 212.204.230.141:

dnstracer C<-q> ptr 141.230.204.212.in-addr.arpa

And for IPv6 addresses:

dnstracer C<-q> ptr C<-s> . C<-o> 2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6.4.0.2.0.0.0.0.8.b.0.e.f.f.3.ip6.int

=head1 SEE ALSO

ntptrace(8), traceroute(8), dig(1)

=head1 AUTHOR

Edwin Groothuis, edwin@mavetju.org (http://www.mavetju.org)

See http://www.mavetju.org/contacts.php for mailing-lists.