在 AD 服务器上使用 winldap.h 进行 LDAP 搜索

编程入门 行业动态 更新时间:2024-10-25 17:31:11
本文介绍了在 AD 服务器上使用 winldap.h 进行 LDAP 搜索的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试进行 LDAP 搜索,但它在我的 Active Directory 测试服务器上不起作用.我使用此代码:

I am trying to do a LDAP search and it is not working on my Active Directory Test Server. I use this code:

#include <winldap.h> ... LDAP* ld = ldap_init("AD-servername", 389); int myVersion =LDAP_VERSION3; ldap_set_option(ld, LDAP_OPT_PROTOCOL_VERSION, &myVersion); ldap_connect(ld, NULL); //ldap_simple_bind_s(ld, NULL, NULL); I tried using this line too. but got the same error LDAPMessage *pMsg = NULL; int retVal = ldap_search_s(ld, "dc=myDomain,dc=extension", LDAP_SCOPE_SUBTREE, "(samAccountName=testaccount)", NULL, NULL, &pMsg); //retVal = 1 which is LDAP_OPERATIONS_ERROR

我做错了什么?

推荐答案

除非另有配置,您必须绑定使用 Microsoft Active Directory 服务器的有效帐户名和密码,否则将返回操作除了极少数.

Unless otherwise configured, you must bind using a valid account name and password for Microsoft Active Directory servers, otherwise it will return the operations error for all queries except a very small handful.

即那个:

ldap_simple_bind_s(ld, NULL, NULL);

需要替换为:

char *username = "cn=aUser,ou=Users,dc=myDomain,dc=extension"; char *password = "this is the password"; ldap_simple_bind_s(ld, username, password);

更多推荐

在 AD 服务器上使用 winldap.h 进行 LDAP 搜索

本文发布于:2023-11-17 02:55:45,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1608548.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:器上   AD   LDAP   winldap

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!