mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
06a0101082
This adds configuration lines for BIND versions 9.8.x and 9.9.x. Autobuild-User: Amitay Isaacs <amitay@samba.org> Autobuild-Date: Mon Apr 16 03:52:14 CEST 2012 on sn-devel-104
20 lines
519 B
Plaintext
20 lines
519 B
Plaintext
# This DNS configuration is for BIND 9.8.0 or later with dlz_dlopen support.
|
|
#
|
|
# This file should be included in your main BIND configuration file
|
|
#
|
|
# For example with
|
|
# include "${NAMED_CONF}";
|
|
|
|
#
|
|
# This configures dynamically loadable zones (DLZ) from AD schema
|
|
# Uncomment only single database line, depending on your BIND version
|
|
#
|
|
dlz "AD DNS Zone" {
|
|
# For BIND 9.8.0
|
|
database "dlopen ${MODULESDIR}/bind9/dlz_bind9.so";
|
|
|
|
# For BIND 9.9.0
|
|
# database "dlopen ${MODULESDIR}/bind9/dlz_bind9_9.so";
|
|
};
|
|
|