README 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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-resolver recursive or
  12. forwarding DNS server, b10-xfrin IXFR/AXFR inbound service, b10-xfrout
  13. outgoing IXFR/AXFR service, b10-zonemgr secondary manager, libdns++
  14. library for C++ with a python wrapper, and many tests and example
  15. programs.
  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.
  19. Documentation is included with the source. See doc/guide/bind10-guide.txt
  20. (or bind10-guide.html) for installation instructions. The
  21. documentation is also available via the BIND 10 website at
  22. http://bind10.isc.org/
  23. The latest released source tar file may be downloaded from:
  24. ftp://ftp.isc.org/isc/bind10/
  25. Users and developers are encouraged to participate on the BIND 10
  26. mailing lists:
  27. https://lists.isc.org/mailman/listinfo/bind10-users
  28. https://lists.isc.org/mailman/listinfo/bind10-dev
  29. Bugs may be reported as tickets via the developers website:
  30. http://bind10.isc.org/
  31. Simple build and installation instructions:
  32. ./configure
  33. make
  34. make install
  35. If building from Git repository, run:
  36. autoreconf --install
  37. before running ./configure
  38. See the Guide for detailed installation directions at
  39. doc/guide/bind10-guide.txt.
  40. For operating system specific tips see the wiki at:
  41. http://bind10.isc.org/wiki/SystemSpecificNotes
  42. Please see the wiki and the doc/ directory for various documentation.
  43. The BIND 10 suite is started by running "bind10". Note that the default
  44. configuration does not start any DNS or DHCP services. Please see the
  45. Guide for information on how to configure these services to be started
  46. automatically.