LDAP的DirectoryEntry无法通过主机名,但仅通过IP地址连接(LDAP Directo

2019-10-21 11:56发布

当我试图通过编写以下行来连接到我的计算机网络一则广告:

DirectoryEntry de = new DirectoryEntry("LDAP://hostname.local");

我得到以下错误:

登录失败:未知的用户名或密码错误

但是,当我试图使用它的IP,我能不出错到达计算机连接到同一台计算机,这是下面的行不工作:

DirectoryEntry de = new DirectoryEntry("LDAP://The IP of hostname.local");

这怎么可能,当我试图使用与主机我得到登录失败的LDAP查询,但是当我使用的主机名的IP地址我成功地和到达计算机能够查看其广告内容。

文章来源: LDAP DirectoryEntry unable to connect via hostname but only via IP address