Question
How to configure bind9-dyndb-ldap on ubuntu server 16.04 LTS ? I have install it, but it doesn't work.
Here is how i install the packages:
sudo apt-get update
sudo apt-get install bind9-dyndb-ldap
i add the next lines in my named.conf.options file :
dynamic-db “bind9-dyndb” {
Library “ldap.so”;
arg “uri ldap://localhost”;
arg “base ou=dns,dc=example,dc=com”;
arg “authmethod simple”;
arg “basedn cn=admin,dc=example,dc=com”;
arg “password accessCode”;
};
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×