1

我正在尝试使用 python 连接到 eDirectory。它不像使用 python 连接到活动目录那么容易,所以我想知道这是否可能。我目前正在运行 python3.4

4

1 回答 1

0

我是 ldap3 的作者,我使用 eDirectory 来测试这个库。

只需尝试以下代码:

from ldap3 import Server, Connection, ALL, SUBTREE
server = Server('your_server_name', get_info=ALL)  # don't user get_info if you don't need info on the server and the schema
connection = Connection(server, 'your_user_name_dn', 'your_password')
connection.bind()
if connection.search('your_search_base','(objectClass=*)', SUBTREE, attributes = ['cn', 'objectClass', 'your_attribute'])
    for entry in connection.entries:
        print(entry.entry_get_dn())
        print(entry.cn, entry.objectClass, entry.your_attribute)
connection.unbind()

如果您需要安全连接,只需将服务器定义更改为:

server = Server('your_server_name', get_info=ALL, use_tls=True)  # default tls configuration on port 636

此外, https: //ldap3.readthedocs.org/en/latest/quicktour.html 上的文档中的任何示例都应该适用于 eDirectory。

再见,乔瓦尼

于 2015-04-10T06:19:58.673 回答