Skip to content Skip to sidebar Skip to footer

Python: How To Setup Python-ldap To Ignore Referrals?

how can I avoid getting (undocumented) exception in following code? import ldap import ldap.sasl connection = ldap.initialize('ldaps://server:636', trace_level=0) connection.set_o

Solution 1:

This is a working example, see if it helps.

def ldap_initialize(remote, port, user, password, use_ssl=False, timeout=None):
    prefix = 'ldap'
    if use_ssl is True:
        prefix = 'ldaps'
        # ask ldap to ignore certificate errors
        ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_NEVER)

    if timeout:
        ldap.set_option(ldap.OPT_NETWORK_TIMEOUT, timeout)

    ldap.set_option(ldap.OPT_REFERRALS, ldap.OPT_OFF)
    server = prefix + '://' + remote + ':' + '%s' % port
    l = ldap.initialize(server)
    l.simple_bind_s(user, password)

Post a Comment for "Python: How To Setup Python-ldap To Ignore Referrals?"