ldapauthenticator icon indicating copy to clipboard operation
ldapauthenticator copied to clipboard

LDAP Authenticator Plugin for Jupyter

Results 80 ldapauthenticator issues
Sort by recently updated
recently updated
newest added

I'm not sure whether this feature request belongs here, it sort of falls between two (or even 3) chairs. There is plugin [out there](https://github.com/benhosmer/jupyterhub-ldapcreateusers), that combines between LDAPAuthenticator and LocalAuthenticator....

This change allowed me to connect to another server that was rejecting the connection due to only `member` being in its schema. Other attributes caused it to raise an exception,...

Hey, I have not found a way to grant administrator rights to a user who has logged in via LDAP. Is this possibility available, if so, where? Currently I cannot...

The [recommended configuration](https://github.com/jupyterhub/ldapauthenticator#active-directory-integration) for Active Directory integration: ```python c.LDAPAuthenticator.lookup_dn = True c.LDAPAuthenticator.lookup_dn_search_filter = '({login_attr}={login})' c.LDAPAuthenticator.lookup_dn_search_user = 'ldap_search_user_technical_account' c.LDAPAuthenticator.lookup_dn_search_password = 'secret' c.LDAPAuthenticator.user_search_base = 'ou=people,dc=wikimedia,dc=org' c.LDAPAuthenticator.user_attribute = 'sAMAccountName' c.LDAPAuthenticator.lookup_dn_user_dn_attribute = 'cn' c.LDAPAuthenticator.escape_userdn...

### Bug description Not using allowed_users. Any authenticated user will be allowed #### Expected behaviour I would like to configure a whitelist of users authorized to login to the jupyterhub...

new version 10.6 ldap can't work with error "automatic start_tls befored bind not successful" but working well for 0.9.1 version

### Bug description Ldap Authenticator does not connect to Active Directory when JupyterHub and LDAP Authenticator have been installed using pip. The connection to LDAP and the user authentication work...

**JupyterHub configuration:** ``` c.JupyterHub.authenticator_class = 'ldapauthenticator.LDAPAuthenticator' c.LDAPAuthenticator.server_address = 'xxx' c.LDAPAuthenticator.allowed_groups = [ "CN=xxx,OU=Groups,DC=xyz,DC=com", ] c.LDAPAuthenticator.use_ssl = True c.LDAPAuthenticator.lookup_dn = True c.LDAPAuthenticator.user_search_base = 'DC=xyz,DC=com' c.LDAPAuthenticator.user_attribute = 'sAMAccountName' c.LDAPAuthenticator.bind_dn_template = ['CN={username},OU=People,DC=xyz,DC=com'] c.LDAPAuthenticator.lookup_dn_search_filter...

### Bug description LDAP authentication works just fine with JupyterHub version 0.9.x and this configuration: ``` auth: type: ldap ldap: server: address: ldap.example.org dn: templates: - 'uid={username},ou=People,dc=example,dc=org' ``` However, I...

bug

### Bug description Make ldap3 library `auto_bind` config settable. #### Expected behaviour Currently, if `use_ssl` is set to `False`, `auto_bind` becomes `ldap3.AUTO_BIND_TLS_BEFORE_BIND`. This means that the ldap server must support...

bug