|
NAMENet::LDAP::AutoDNs - Automatically make some default decisions some LDAP DNs and scopes.VERSIONVersion 0.2.2SYNOPSISuse Net::LDAP::AutoDNs; my $obj = Net::LDAP::AutoDNs->new(); print $obj->{users}."\n"; print $obj->{usersScope}."\n"; print $obj->{dns}."\n"; print $obj->{groups}."\n"; print $obj->{groupsScope}."\n"; print $obj->{home}."\n"; print $obj->{base}."\n"; print $obj->{bind}."\n"; METHODSnewCreates a new Net::LDAP::AutoDNs object.hash args methods This is a comma seperated list of methods to use. The currently supported ones are listed below and checked in the listed order. hostname env devldap EESDPenv The naming of those wraps around to the similarly named methodes. #Only the hostname methode will be tried. my $obj=Net::LDAP::AutoDNs->({methodes=>"hostname"}); #First the env methdoe will be tried and then the hostname methode. my $obj=Net::LDAP::AutoDNs->({methodes=>"env,hostname"}) newEESDPCreates a new Net::LDAP::AutoDNs object in a EESDP LDAP Standard method.byDevLDAPThis sets it up using the information found under '/dev/ldap/'.More information on this can be found at http://eesdp.org/eesdp/ldap-kmod.html . byEnvThis sets it up using $ENV{AutoDNbase} for the base.byEESDPenvPopulates all DNs using the EESDP LDAP Standard in regards to environmental values.byHostnameSets the DNs based on the hostname. The last subdomain is chopped off and each '.' is replaced with a ',dc='. This means 'host.foo.bar' becomes 'dc=foo,dc=bar'.Returns true if it succeeds. Error Codes$obj->{error} is defined, there is an error.0Methode not implemented yet.1Retrieving hostname failed. Most likely caused by 'hostname' not being in the path.2None of the methodes returned matched or returned true.3Either the system does not support /dev/ldap/.AUTHORZane C. Bowers, "<vvelox at vvelox.net>"BUGSPlease report any bugs or feature requests to "bug-net-ldap-autodns at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-LDAP-AutoDNs>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Net::LDAP::AutoDNs You can also look for information at:
ACKNOWLEDGEMENTSCOPYRIGHT & LICENSECopyright 2008 Zane C. Bowers, all rights reserved.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |