README 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. This is the source for the BIND 10 suite.
  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. This release includes the bind10 master process, b10-msgq message
  7. bus, b10-cmdctl remote control daemon, b10-cfgmgr configuration
  8. manager, b10-stats statistics collection and reporting daemon, and
  9. b10-stats-httpd for HTTP access to XML-formatted stats.
  10. For DNS services, it provides the b10-auth authoritative DNS server
  11. (with SQLite3 and in-memory backends), b10-xfrin IXFR/AXFR inbound
  12. service, b10-xfrout outgoing IXFR/AXFR service, b10-zonemgr secondary
  13. manager, libdns++ library for C++ with a python wrapper, and many
  14. tests and example programs. (It also includes an experimental proof
  15. of concept recursive or forwarding DNS server, b10-resolver.)
  16. BIND 10 also provides experimental DHCPv4 and DHCPv6 servers,
  17. b10-dhcp4 and b10-dhcp6, a portable DHCP library, libdhcp++, and
  18. a DHCP benchmarking tool, perfdhcp. In this release of BIND 10,
  19. the DHCPv4 and DHCPv6 servers must be considered experimental.
  20. Limitations and known issues with this DHCP release can be found
  21. at http://bind10.isc.org/wiki/KeaKnownIssues
  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.
  46. The BIND 10 suite is started by running "bind10". Note that the default
  47. configuration does not start any DNS or DHCP services. Please see the
  48. Guide for information on how to configure these services to be started
  49. automatically.