Hi *, running this script from a Linux machine against our Active Directory
---------------------------< schnipp schnapp >-------------------------- #!/usr/bin/perl use Net::LDAPS; $ldap = Net::LDAP->new( 'ldaps://<my_dc>:636', timeout => 1000, verify => 'require', capath => '/etc/ssl/certs/', ) || die "cant make initial connection: $@"; $result - $ldap->bind( '<my_dn>', password => '<my_pass>', ) || die $!; $ldap->unbind(); exit; ---------------------------< schnipp schnapp >-------------------------- gives the following result: cant make initial connection: IO::Socket::SSL: Timeout at ./x line 4, <DATA> line 253. Any idea, why this might happen? The same script from any Windows box in here works as expected. versions: - Novell SLES 10 (x86_64) - Net::LDAP 0.36 - Net::SSLeay 1.32 - openssl 0.9.8a-18.23 TIA. Bye. Michael.