tags:

views:

236

answers:

1

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.

+8  A: 

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
David Schmitt
what parameter should I put on the $ldap->search() to get all the users in the server?
lamcro
that depends solely on the configuration of your server.
David Schmitt