错误,同时试图使用LDAP连接来连接AD错误、LDAP、AD

2023-09-08 12:20:23 作者:蹲街看帅哥

尝试使用此code连接AD

Trying to use this code to connect the AD

PrincipalContext context = new PrincipalContext(ContextType.Domain, domain)

但我得到的错误说:

but i got the error saying:

LDAP服务器不可用。

The LDAP server is unavailable.

你知道吗?

推荐答案

的问题是:你指定我们的域

The questions is: do you specify our domain as

在mydomain.com(DNS格式) 或DC = MYDOMAIN,DC = COM(AD-样式格式)

要我吃惊的是,该域名必须是在 DNS格式(如mydomain.com),以这个工作(和的不是的在平时的AD的DC = MYDOMAIN,DC = COM)式的格式。

To my surprise, the Domain name must be in DNS format (e.g. "mydomain.com") in order for this to work (and NOT in the usual AD-style format of "dc=mydomain,dc=com").