Do not run tests of executables not built. Do not build
[adns] / INSTALL
CommitLineData
95ecb688 1INSTALLATION INSTRUCTIONS for ADNS
2
2b61beb8 31. Read the security note below.
4
52. Standard GNU package build process:
95ecb688 6 $ ./configure
7 $ make
8 # make install
9
10Unfortunately, since this is a beta, there is no good documentation
11yet. For now, use the comments in the public header file adns.h.
12
13
14You will find that adns requires a reasonably standard and up to date
15system.
16
e32d0f9e 17The following platforms have been tested at at least some point and
18should work - please report if they don't:
19 [adns] OS
20 pre-1.0 Linux glibc 2.1 (actually tested on Debian 2.2).
a069d77f 21 pre-1.0 FreeBSD 3.2
e32d0f9e 22 pre-1.0 Solaris 2.6, 2.7, 2.8
23 pre-1.0 HP-UX 10.20, 11.00
24 pre-1.0 IRIX 6.5 *not* with GCC [1], --disable-dynamic
a069d77f 25 AIX no dynamic
e32d0f9e 26Later versions of the same OS should work too. [adns] is the latest
27version of adns that has been tested. Usually entries in this table
28mean they pass adns's own regression test, when compiled with GCC.
29Notes/known problems:
30 [1] IRIX 6.5 inet_ntoa seems to break with GCC.
31
32The following platforms are known to be deficient and will not work:
f9476535 33 Solaris 2.5 Lacks vsnprintf - install glibc ?
34 TruUnix64 (DEC UNIX 4.0f) Lacks vsnprintf - install glibc ?
e32d0f9e 35Please don't report these problems unless you have a nice,
36straightforward solution or workaround for them.
37
95ecb688 38In particular, the build system assumes that you have ELF shared
39libraries. If you don't then please don't send me patches to support
40your kind of shared libraries, and don't send me patches to use
a5893daf 41libtool. I'm not interested in supporting non-ELF shared libraries,
42and I dislike libtool. If you do not have ELF shared libraries then
43please use the --disable-shared configure option.
95ecb688 44
9a09fa18 45The adnsresfilter utility uses `tsearch' from the C library (a la SVID
46and X/Open). If your C library doesn't have tsearch you will find
47that configure arranges for adnsresfilter not to be built. To rectify
48this, install a C library containing tsearch, such as the GNU C
49library. It is best if tsearch uses an automatically-balancing tree
50algorithm, like the glibc version does. Simple binary trees may
51perform badly.
52
e39ec089 53You will probably find that GNU Make is required.
95ecb688 54
55
2b61beb8 56SECURITY AND PERFORMANCE - AN IMPORTANT NOTE
57
58adns is not a full-service resolver. It does no caching of responses
59at all, and has no defence against bad nameservers or fake packets
60which appear to come from your real nameservers. It relies on the
61full-service resolvers listed in resolv.conf to handle these tasks.
62
63For secure and reasonable operation you MUST run a full-service
64nameserver on the same system as your adns applications, or on the
65same local, fully trusted network. You MUST only list such
66nameservers in the adns configuration (eg resolv.conf).
67
68You MUST use a firewall or other means to block packets which appear
69to come from these nameservers, but which were actually sent by other,
70untrusted, entities.
71
72Furthermore, adns is not DNSSEC-aware in this version; it doesn't
73understand even how to ask a DNSSEC-aware nameserver to perform the
74DNSSEC cryptographic signature checking.
75
76
95ecb688 77COPYRIGHT
78
79This file, INSTALL, contains installation instructions and other
3d5cde09 80details for adns. It is
81 Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
95ecb688 82
d942707d 83adns is
d0bed398 84 Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
85 Copyright (C) 1999 Tony Finch <dot@dotat.at> [1]
86 Copyright (C) 1991 Massachusetts Institute of Technology [2]
95ecb688 87
88adns is free software; you can redistribute it and/or modify it under
89the terms of the GNU General Public License as published by the Free
90Software Foundation; either version 2 of the License, or (at your
91option) any later version.
92
93This program is distributed in the hope that it will be useful, but
94WITHOUT ANY WARRANTY; without even the implied warranty of
95MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
96General Public License for more details.
97
98You should have received a copy of the GNU General Public License
4423286d 99along with adns as the file COPYING; if not, email me at the address
95ecb688 100above or write to the Free Software Foundation, 59 Temple Place -
101Suite 330, Boston, MA 02111-1307, USA.
9a09fa18 102
d0bed398 103[1] Tony Finch holds the original copyright on
104 client/adnslogres.c and client/fanftest.c.
105[2] MIT hold the original copyright on the included install-sh,
106 which came via GNU autoconf.
107
9a09fa18 108# Local variables:
109# mode: text
110# End: