README 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. NOTE: The API/ABI provided by libraries in BIND 10 may change in future
  23. point releases. So please do not assume currently that any code that you
  24. compile for a particular version of a BIND 10 library will work in
  25. future versions of the library. We aim to stabilize the public API/ABI
  26. interface of BIND 10 libraries in future releases.
  27. Documentation is included with the source. See doc/guide/bind10-guide.txt
  28. (or bind10-guide.html) for installation instructions. The
  29. documentation is also available via the BIND 10 website at
  30. http://bind10.isc.org/
  31. The latest released source tar file may be downloaded from:
  32. ftp://ftp.isc.org/isc/bind10/
  33. Users and developers are encouraged to participate on the BIND 10
  34. mailing lists:
  35. https://lists.isc.org/mailman/listinfo/bind10-users
  36. https://lists.isc.org/mailman/listinfo/bind10-dev
  37. Bugs may be reported as tickets via the developers website:
  38. http://bind10.isc.org/
  39. Simple build and installation instructions:
  40. ./configure
  41. make
  42. make install
  43. If building from Git repository, run:
  44. autoreconf --install
  45. before running ./configure
  46. See the Guide for detailed installation directions at
  47. doc/guide/bind10-guide.txt.
  48. For operating system specific tips see the wiki at:
  49. http://bind10.isc.org/wiki/SystemSpecificNotes
  50. Please see the wiki and the doc/ directory for various documentation.
  51. The BIND 10 suite is started by running "bind10". Note that the default
  52. configuration does not start any DNS or DHCP services. Please see the
  53. Guide for information on how to configure these services to be started
  54. automatically.