LDAP Shell 2.0 review

Download
by rbytes.net on

LDAP Shell is an interactive LDAP shell written in Perl and allowing basic administrative functionality, such as crawling the directo

License: GPL (GNU General Public License)
File size: 40K
Developer: Luke Kanies
0 stars award from rbytes.net

LDAP Shell is an interactive LDAP shell written in Perl and allowing basic administrative functionality, such as crawling the directory tree and modifying entries.

It is composed of two parts: Net::LDAP::Config, and ldapsh.

Net::LDAP::Config is a library for simplifying and centralizing access to your LDAP repositories. Instead of having every single script ask for your ldap server and search base, or have it hard coded, you can simply use this library:

my $config = Net::LDAP::Config->new("default");

It's got a couple other nice features, like the fact that it caches your LDAP UID (per host), so you should only ever have to type it in once. It's pretty well documented, so 'perldoc Net::LDAP::config' should get you the rest of the way.

ldapsh, and its corresponding library Net::LDAP::Shell, provide (shockingly) the shell behaviour. When run, ldapsh drops you into a (very simple) interpreter.

Even given its simplicity, though, ldapsh is still very useful: You can use it to walk your LDAP tree, you can clone existing objects (using the 'clone' command), remove objects (can you guess the command?), and create new objects using 'new'.

The 'new' command, when provided one or more objectclasses, will automatically retrieve the required and optional attributes for those objectclasses, which can be a great time-saver.

What's New in This Release:
A lot of cleanup, some new commands, and Term::ReadKey support.

LDAP Shell 2.0 keywords