Help for this page

Select Code to Download


  1. or download this
      my $hostname = "ldap.example.com";
      my $ldap = Net::LDAP->new($hostname)
       or die "Unable to connect to LDAP server $hostname: $@\n";
    
  2. or download this
      my $result = $ldap->bind();
    
  3. or download this
      my $binddn = "uid=jblow, ou=People, dc=Example, dc=Com";
      my $password = readpassword();
      my $result = $ldap->bind(dn => $binddn, password => $password);
    
  4. or download this
      my $result = $ldap->bind();
      if ($result->code) { # This makes Net::LDAP get the server response
        die "An error occurred binding to the LDAP server\n";
      }
    
  5. or download this
      use Net::LDAP::Util qw(ldap_error_text);
      my $result = $ldap->bind();
    ...
        die "An error occurred binding to the LDAP server: "
             .ldap_error_text($result->code)."\n";
      }
    
  6. or download this
      sub ldapassert {
        my $mesg = shift;
    ...
        return $mesg;
      }
      my $result = ldapassert($ldap->bind(), "binding to the server");
    
  7. or download this
      my $searchresult = $ldap->search(base => "ou=People, dc=Example, dc=
    +Com",
                                       filter => "(objectClass=posixAccoun
    +t)",
                               scope => "one",
                                       attrs => ['cn', 'accountStatus'] );
    
  8. or download this
       my $searchresult = do_search($ldap);
       foreach my $entry ($searchresult->entries) {
         print "Matched: ", $entry->dn, "\n";
       }
    
  9. or download this
      my $sr = ldapassert($ldap->search(base => "ou=People, $ourdn",
                                        filter => "(objectClass=person)"
    ...
       my $uid = ${$entry->get('uid')}[0];
       print "$uid: $cn\n";
      }
    
  10. or download this
      sub changename {
        my $entry = shift;
        my $newname = shift;
        $entry->replace(cn => $newname);
      }
    
  11. or download this
      # Add "extraClass" to everyone's "objectClass" attribute.
      my $sr = ldapassert($ldap->search(base => $ourdn, filter => "(object
    +Class=person)"), "searching the LDAP server");
    ...
       $_->add(objectClass => "extraClass");
       ldapassert($_->update($ldap), "updating the LDAP server");
      }
    
  12. or download this
       $_->replace(objectClass => [@{$_->get("objectClass")}, "extraClass"
    +]