lamcro
lamcro

Reputation: 6281

How can I download a list of users from an LDAP server using Perl?

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.

Upvotes: 4

Views: 2391

Answers (1)

David Schmitt
David Schmitt

Reputation: 59356

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

Upvotes: 9

Related Questions