
Perl Net::LDAP를 사용하여 AD 서버( w2k12 )의 보안 연결을 시도하고 있습니다.
단계:
$ldaps = Net::LDAPS->new('AD.server.ip', port => '636', verify => 'none', capath => 'W2K12AD-0-CA');
$binddn = "Administrator\@NAS.net";
$mesg = $ldaps->bind (dn=>$binddn, password=>'xxxx' );
다음과 같은 오류가 발생합니다.
errorMessage' => 'I/O Error An existing connection was forcibly closed by the remote host.
어떤 도움이라도 좋을 것입니다.