README 2.1 KB

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