README 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 and ISC
  4. DHCP. BIND 10 is written in C++ and Python and provides a modular
  5. environment for serving, maintaining, and developing DNS and DHCP.
  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.
  10. This release includes the bind10 master process, b10-msgq message
  11. bus, b10-auth authoritative DNS server (with SQLite3 and in-memory
  12. backends), b10-resolver recursive or forwarding DNS server, b10-cmdctl
  13. remote control daemon, b10-cfgmgr configuration manager, b10-xfrin
  14. AXFR inbound service, b10-xfrout outgoing AXFR service, b10-zonemgr
  15. secondary manager, b10-stats statistics collection and reporting
  16. daemon, b10-stats-httpd for HTTP access to XML-formatted stats,
  17. b10-host DNS lookup utility, and a new libdns++ library for C++
  18. with a python wrapper. BIND 10 also provides experimental DHCPv4
  19. and DHCPv6 servers, b10-dhcp4 and b10-dhcp6, a portable DHCP library,
  20. libdhcp++, and a DHCP benchmarking tool, perfdhcp.
  21. Documentation is included with the source. See doc/guide/bind10-guide.txt
  22. (or bind10-guide.html) for installation instructions. The
  23. documentation is also available via the BIND 10 website at
  24. http://bind10.isc.org/
  25. The latest released source tar file may be downloaded from:
  26. ftp://ftp.isc.org/isc/bind10/
  27. Users and developers are encouraged to participate on the BIND 10
  28. mailing lists:
  29. https://lists.isc.org/mailman/listinfo/bind10-users
  30. https://lists.isc.org/mailman/listinfo/bind10-dev
  31. Bugs may be reported as tickets via the developers website:
  32. http://bind10.isc.org/
  33. Simple build and installation instructions:
  34. ./configure
  35. make
  36. make install
  37. If building from Git repository, run:
  38. autoreconf --install
  39. before running ./configure
  40. See the Guide for detailed installation directions at
  41. doc/guide/bind10-guide.txt.
  42. For operating system specific tips see the wiki at:
  43. http://bind10.isc.org/wiki/SystemSpecificNotes
  44. Please see the wiki and the doc/ directory for various documentation.