我正在尝试使用python连接到eDirectory。它不像使用python连接到活动目录那么容易,所以我想知道这是否可能。我目前正在运行python3.4
答案 0 :(得分: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一起使用。
再见 乔瓦尼