如何确保在 Active Directory 服务器上正确启用 SSL?
如果我在服务器本身上运行 ldp,我想我可以连接到 636 端口。
我在输出中看到这样的内容:
ld = ldap_sslinit("localhost", 636, 1);
Error <0x0> = ldap_set_option(hLdap, LDAP_OPT_PROTOCOL_VERSION, LDAP_VERSION3);
Error <0x0> = ldap_connect(hLdap, NULL);
Error <0x0> = ldap_get_option(hLdap,LDAP_OPT_SSL,(void*)&lv);
Host supports SSL, SSL cipher strength = 128 bits
Established connection to localhost.
Retrieving base DSA information...
Result <0>: (null)
Matched DNs:
Getting 1 entries:
>> Dn:
**** and 10-12 more lines ****
这是否意味着 SSL 已正确启用?
2-4行的错误怎么办?
谢谢。