vote up 2 vote down star

I want to upload a list of users from my work's LDAP server to upload into our wiki as a company directory. How can I download a list of users from an LDAP server using Perl?

Thanks.

flag

35% accept rate

1 Answer

vote up 8 vote down check

Use the NET::LDAP module.

A little example from the POD:

use Net::LDAP;

$ldap = Net::LDAP->new( 'ldap.bigfoot.com' ) or die "$@";

$mesg = $ldap->bind ;    # an anonymous bind

$mesg = $ldap->search( # perform a search
                       base   => "c=US",
                       filter => "(&(sn=Barr) (o=Texas Instruments))"
                     );
$mesg->code && die $mesg->error;

foreach $entry ($mesg->entries) { $entry->dump; }

$mesg = $ldap->unbind;   # take down session
link|flag
what parameter should I put on the $ldap->search() to get all the users in the server? – lamcro Jan 14 '09 at 12:16
that depends solely on the configuration of your server. – David Schmitt Jan 14 '09 at 12:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.