unbound/doc
Wouter Wijngaards 1f47306af9 typo.
git-svn-id: file:///svn/unbound/trunk@834 be551aaa-1e26-0410-a405-d3ace91eadb9
2008-01-10 09:25:14 +00:00
..
Changelog typo. 2008-01-10 09:25:14 +00:00
CREDITS coverity run fixes. 2007-12-04 17:54:14 +00:00
example.conf typo. 2008-01-10 09:25:14 +00:00
ietf67-design-02.odp Added presentation that shows the design we plan to make. 2007-01-15 12:51:47 +00:00
ietf67-design-02.pdf Added presentation that shows the design we plan to make. 2007-01-15 12:51:47 +00:00
LICENSE Added licenses, this is the BSD license. 2007-01-03 09:17:12 +00:00
plan - tests for localdata multiple RR, and implicit zones. 2007-11-28 08:10:45 +00:00
README document misconfiguration. 2008-01-04 13:13:50 +00:00
README.svn Tiny change to test commit mails. 2007-02-08 10:21:35 +00:00
README.tests Ldns included. 2007-10-18 13:05:41 +00:00
requirements.txt text. 2008-01-04 18:00:45 +00:00
TODO - changed checkconf/ to smallapp/ to make room for more support tools. 2007-12-03 08:24:36 +00:00
unbound-checkconf.8 manpage for unbound-host. 2007-12-07 09:03:29 +00:00
unbound-host.1 manpage for unbound-host. 2007-12-07 09:03:29 +00:00
unbound.8 default config file location, example conf installed. 2007-11-09 13:52:13 +00:00
unbound.conf.5 refused stops retries. 2008-01-02 13:48:19 +00:00
unbound.doxygen regional. 2007-10-18 15:40:31 +00:00

README for Unbound @version@
Copyright 2007 NLnet Labs
http://unbound.net

This software is under BSD license, see LICENSE for details.

* Download the latest version of this software from 
  	http://unbound.net 
  or get a beta version from the svn repository at 
  	http://unbound.net/svn/

* Uses the following libraries; 
  * ldns	http://www.nlnetlabs.nl/ldns/			(BSD license)
  * libevent	http://www.monkey.org/~provos/libevent/		(BSD license)

* Create build environment 
  * run libtoolize -c if config.sub is missing, or run glibtoolize.
  * autoreconf (autoheader && autoconf), if ./configure is missing.

* Make and install: ./configure; make; make install
  * Use GNU make; default on linux, often called 'gmake' on BSD and Solaris.
  * --with-ldns=/path/to/ldns
  	If ldns is not detected on the system, a prepackaged tarball
	of the ldns library is used to compile and statically link against.
	If detected on the system, it will dynamically link against it.
  * --with-libevent=/path/to/libevent
  	Can be set to either the system install or the build directory.
	--with-libevent=no gives a builtin alternative implementation.
	libevent is useful when having many (thousands) of outgoing ports.
	This improves randomization and spoof resistance. For the default 
	of 16 ports the builtin alternative works well.
  * --without-pthreads 
	This disables pthreads, and uses Solaris thr library or no threading. 
	Without this option the pthreads library is detected automatically.
  * --enable-static-exe
	This enables a debug option to statically link, against ldns and 
	libevent libraries.
  * --enable-lock-checks
  	This enables a debug option to check lock and unlock calls. It needs
	a recent pthreads library to work.
  * --enable-alloc-checks
	This enables a debug option to check malloc (calloc, realloc, free).
	The server periodically checks if the amount of memory used fits with
	the amount of memory it thinks it should be using, and reports 
	memory usage in detail.

* 'make test' attempts to run a series of tests, depending on the support
  programs that are installed.

Known issues
------------
o If libevent is older (before 1.3c), unbound will exit instead of reload
  on sighup. On a restart 'did not exit gracefully last time' warning is 
  printed. Perform ./configure --with-libevent=no or update libevent, rerun 
  configure and recompile unbound to make sighup work correctly.
o If you receive no answers deploying unbound on a private network.
  Check that the zone you configure as a stub zone is correct, listing working 
  ip-addresses. Check that the NS data in the zone, those hostnames, are
  in fact those same, working, ip-addresses. Unbound will fetch the NS data
  from the zone and use that information in preference to the config 
  information. 

Acknowledgements
----------------
o Thanks to David Blacka and Matt Larson (Verisign) for the unbound-java
  prototype. Design and code from that prototype has been used to create
  this program. Such as the iterator state machine and the cache design.
o Other code origins are from the NSD (NLnet Labs) and LDNS (NLnet Labs)
  projects. Such as buffer, region-allocator and red-black tree code.
o See Credits file for contributors.

* mailto:unbound-bugs@nlnetlabs.nl