-
I am trying to set up Netbox to use LDAP to Active Directory. It is not working. I do not see any network traffic being initiated by the Netbox server to the Active Directory server. How can I fix this? RHEL 9 REMOTE_AUTH_BACKEND = 'netbox.authentication.LDAPBackend' is set in configuration.py ldap_config.py
/opt/netbox/local/logs/django-ldap-debug.log |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Converted /etc/ssl/certs/ADCA-Cert2.cer to /etc/ssl/certs/ADCA-Cert2.pem In the ldap_conf.py file: Authentication works now. |
Beta Was this translation helpful? Give feedback.
Converted /etc/ssl/certs/ADCA-Cert2.cer to /etc/ssl/certs/ADCA-Cert2.pem
In the ldap_conf.py file:
Commented out LDAP_IGNORE_CERT_ERRORS = True
and changed LDAP_CA_CERT_FILE = '/etc/ssl/certs/ADCA-Cert2.cer' to LDAP_CA_CERT_FILE = '/etc/ssl/certs/ADCA-Cert2.pem'
Authentication works now.