2013-06-27 74 views
0

如何确保在Active Directory服务器上正确启用SSL?如何确保在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行错误怎么样?

谢谢。

+0

我按照以下流程启用SSL:http://www.linuxmail.info/enable-ldap-ssl-active-directory/ –

+0

我认为SSL已正确启用 - http://blogs.technet.com /b/yuridiogenes/archive/2008/06/04/iag-2007-authentication-repository.aspx –

回答

0

是的,启用了SSL。

我在评论中提供的网址有更多详细信息。

相关问题