Re: LDAPS via Oracle Internet Directory

2012-02-25 Thread Chris Ridd
On 23 Feb 2012, at 22:19, tBM wrote: > First let me ask for your forgiveness, I am a perl newbie. > > We have a little perl script that is currently doing cleartext authentication > against Oracle Internet Directory 10G that we've revised to use LDAPS and > have the following in our NET::LDAP

Re: ldaps ssl validation

2011-08-08 Thread Kevan Carstensen
I've attached a revised patch that also bumps the IO::Socket::SSL version in Makefile.PL. Does anyone have any more comments? Thanks, -- Kevan Carstensen Operating Systems Analyst, I&IT Systems, Cal Poly Pomona specify-verifycn-scheme.patch Description: Binary data

Re: ldaps ssl validation

2011-08-03 Thread Kevan Carstensen
Excerpts from Chris Ridd's message of 2011-08-03 11:27:03 -0700: > The patch looks good to me, I think it should go in. Does it force a > new minimum version of IO::Socket::SSL? It looks like perl-ldap currently depends on IO::Socket::SSL version 0.93 or greater. The feature my patch uses appears

Re: ldaps ssl validation

2011-08-03 Thread Chris Ridd
On 3 Aug 2011, at 18:06, Kevan Carstensen wrote: > We can easily address this by changing the options we pass to > IO::Socket::SSL's new and start_SSL functions. I'm attaching a patch > that does this, setting SSL_verifycn_name to 'ldap'. This behaves > correctly in my tests: LDAPS connections to

Re: LDAPS

2009-03-22 Thread Helmut Schneider
From: "Chris Ridd" A problem like this came up last year. Searching my list archives for "IO::Socket::SSL Timeout" I think it got resolved by updating the IO::Socket::SSL package. I don't follow that package closely to know what might have changed... It is most recent, 1.23. But I got it:

Re: LDAPS

2009-03-20 Thread Chris Ridd
On 20 Mar 2009, at 16:23, Helmut Schneider wrote: LDAPSHow do I turn on debugging for Net::LDAP? Also, I'm not familiar with the ldapserach syntax, but: Call $ldap->debug(n) - n is a mask of debug flags described in the docs. But as it is mainly for debugging LDAP PDUs, it isn't going to

Re: LDAPS

2009-03-20 Thread Helmut Schneider
'm using a self signed CA if this is relevant. - Original Message - From: Miller, Don C. To: Helmut Schneider ; perl-ldap@perl.org Sent: Friday, March 20, 2009 4:57 PM Subject: RE: LDAPS Helmut, try connecting with debugging on and see what is happening. Also, try using ldapsea

RE: LDAPS

2009-03-20 Thread Miller, Don C.
Helmut, try connecting with debugging on and see what is happening. Also, try using ldapsearch in verbose mode. It might give you good information about the connection as well. Don From: Helmut Schneider [mailto:jumpe...@gmx.de] Sent: Fri 3/20/2009 8:30 AM T

Re: ldaps

2005-03-11 Thread Chris Ridd
On 11/3/05 1:09 pm, sujatha <[EMAIL PROTECTED]> wrote: > when i run a simple program > use Net::LDAPS; > $url="test.com"; > $username="sona"; > $password="sona"; > $a=Net::LDAPS->new($url)||die "cannot connect"; > $a->bind($usename,$password)||die "cannot bind"; > > the error shown is > > Can't

Re: LDAPS + certificate + SASL-EXTERNAL

2004-10-22 Thread Graham Barr
On 22 Oct 2004, at 09:59, [EMAIL PROTECTED] wrote: my $ldapbind = $ldapconn->bind(anonymous=>'empty', sasl=>$sasl, version=>3); You should not pass both anonymous and sasl, try $ldapbind = $ldapconn->bind(sasl=>$sasl, version=>3); Graham.