README 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. This is the source for the development version of BIND 10.
  2. BIND is the popular implementation of a DNS server, developer
  3. interfaces, and DNS tools. BIND 10 is a rewrite of BIND 9. BIND 10
  4. is written in C++ and Python and provides a modular environment
  5. for serving, maintaining, and developing DNS.
  6. BIND10-devel is new development leading up to the production
  7. BIND 10 release. It contains prototype code and experimental
  8. interfaces. Nevertheless it is ready to use now for testing the
  9. new BIND 10 infrastructure ideas. The Year 3 goals of the five
  10. year plan are described here:
  11. http://bind10.isc.org/wiki/Year3Goals
  12. This release includes the bind10 master process, b10-msgq message
  13. bus, b10-auth authoritative DNS server (with SQLite3 and in-memory
  14. backends), b10-resolver recursive or forwarding DNS server, b10-cmdctl
  15. remote control daemon, b10-cfgmgr configuration manager, b10-xfrin
  16. AXFR inbound service, b10-xfrout outgoing AXFR service, b10-zonemgr
  17. secondary manager, b10-stats statistics collection and reporting
  18. daemon, b10-stats-httpd for HTTP access to XML-formatted stats,
  19. b10-host DNS lookup utility, and a new libdns++ library for C++
  20. with a python wrapper. BIND 10 also provides an experimental DHCPv6
  21. echo server, b10-dhcp6.
  22. Documentation is included with the source. See doc/guide/bind10-guide.txt
  23. (or bind10-guide.html) for installation instructions. The
  24. documentation is also available via the BIND 10 website at
  25. http://bind10.isc.org/
  26. The latest released source tar file may be downloaded from:
  27. ftp://ftp.isc.org/isc/bind10/
  28. Users and developers are encouraged to participate on the BIND 10
  29. mailing lists:
  30. https://lists.isc.org/mailman/listinfo/bind10-users
  31. https://lists.isc.org/mailman/listinfo/bind10-dev
  32. Bugs may be reported as tickets via the developers website:
  33. http://bind10.isc.org/
  34. Simple build and installation instructions:
  35. ./configure
  36. make
  37. make install
  38. If building from Git repository, run:
  39. autoreconf --install
  40. before running ./configure
  41. See the Guide for detailed installation directions at
  42. doc/guide/bind10-guide.txt.
  43. For operating system specific tips see the wiki at:
  44. http://bind10.isc.org/wiki/SystemSpecificNotes
  45. Please see the wiki and the doc/ directory for various documentation.