我有一台服务器(Windows Server 2012 R2),我需要在PHP中配置LDAP用户身份验证。服务器是域控制器,安装了PHP(5.6),PHP已经有LDAP扩展。与ldp.exe中的凭据绑定可以正常工作。
我知道什么:
域控制器:LDAP服务器签名要求
NONE
网络安全:LDAP客户端签名要求
谈判签署
PHP代码:
// using ldap bind
$ldaprdn = 'bigboss'; // ldap rdn or dn
$ldappass = 'AdmiN123'; // associated password
// connect to ldap server
$ldapconn = ldap_connect("ldap://172.16.31.70")
or die("Could not connect to LDAP server.");
if ($ldapconn) {
// binding to ldap server
$ldapbind = ldap_bind($ldapconn, $ldaprdn, $ldappass);
// verify binding
if ($ldapbind) {
echo "LDAP bind successful...";
} else {
echo "LDAP bind failed...";
}
}
答案 0 :(得分:0)
我的错,我需要编辑
$ldaprdn = 'bigboss'
到
$ldaprdn = '[domain name]\bigboss'
由于