Net::LDAP::Constant - Constants for use with Net::LDAP
| Use Case | Command | Description |
|---|---|---|
| 🔧 Import all constants | use Net::LDAP qw(:all); | Import every known constant from Net::LDAP::Constant |
| 🔢 Import only status codes | use Net::LDAP qw(:codes); | Import only LDAP status code constants (e.g. LDAP_SUCCESS) |
| 🎛️ Import control OIDs | use Net::LDAP qw(:controls); | Import all LDAP_CONTROL_* OID constants |
| 🔌 Import extension OIDs | use Net::LDAP qw(:extensions); | Import all LDAP_EXTENSION_* OID constants |
| ⭐ Import feature OIDs | use Net::LDAP qw(:features); | Import all LDAP_FEATURE_* OID constants |
| 🖥️ Import AD capability OIDs | use Net::LDAP qw(:capabilities); | Import all LDAP_CAP_* OID constants |
| ✅ Check success | if ($mesg->code == LDAP_SUCCESS) | Test if an LDAP operation completed without error |
| ❌ Check specific error | if ($mesg->code == LDAP_NO_SUCH_OBJECT) | Test for a specific LDAP error condition |
use Net::LDAP qw(LDAP_SUCCESS LDAP_PROTOCOL_ERROR);
Net::LDAP::Constant exports constants, technically: constant subroutines, for the LDAP status codes and OIDs listed in the sections below.
In addition to exporting individual constants, the following tags can be used to export groups of constants.
Net::LDAP::Constant.LDAP_CONTROL_* constants.LDAP_EXTENSION_* constants.LDAP_FEATURE_* constants.LDAP_CAP_* constants.LDAP_SUCCESS (0) — ✅ Operation completed without errorLDAP_OPERATIONS_ERROR (1) — ❌ Server encountered an internal errorLDAP_PROTOCOL_ERROR (2) — ❌ Unrecognized version number or incorrect PDU structureLDAP_TIMELIMIT_EXCEEDED (3) — ⏰ The time limit on a search operation has been exceededLDAP_SIZELIMIT_EXCEEDED (4) — 📏 The maximum number of search results to return has been exceededLDAP_COMPARE_FALSE (5) — ❌ Returned when a compare request completes and the attribute value given is not in the entry specifiedLDAP_COMPARE_TRUE (6) — ✅ Returned when a compare request completes and the attribute value given is in the entry specifiedLDAP_AUTH_METHOD_NOT_SUPPORTED (7) — ❌ Unrecognized SASL mechanism nameLDAP_STRONG_AUTH_NOT_SUPPORTED (7) — ❌ Unrecognized SASL mechanism nameLDAP_STRONG_AUTH_REQUIRED (8) — 🔒 The server requires authentication be performed with a SASL mechanismLDAP_PARTIAL_RESULTS (9) — 📋 Returned to version 2 clients when a referral is returned. The response will contain a list of URLs for other servers.LDAP_REFERRAL (10) — 🔗 The server is referring the client to another server. The response will contain a list of URLsLDAP_ADMIN_LIMIT_EXCEEDED (11) — ⚠️ The server has exceeded the maximum number of entries to search while gathering a list of search result candidatesLDAP_UNAVAILABLE_CRITICAL_EXT (12) — ❌ A control or matching rule specified in the request is not supported by the serverLDAP_CONFIDENTIALITY_REQUIRED (13) — 🔒 Returned when confidentiality is required to perform a given operationLDAP_SASL_BIND_IN_PROGRESS (14) — 🔄 The server requires the client to send a new bind request, with the same SASL mechanism, to continue the authentication processLDAP_NO_SUCH_ATTRIBUTE (16) — ❌ The request referenced an attribute that does not existLDAP_UNDEFINED_TYPE (17) — ❌ The request contains an undefined attribute typeLDAP_INAPPROPRIATE_MATCHING (18) — ❌ An extensible matching rule in the given filter does not apply to the specified attributeLDAP_CONSTRAINT_VIOLATION (19) — ❌ The request contains a value which does not meet with certain constraints. This result can be returned as a consequence of:
LDAP_TYPE_OR_VALUE_EXISTS (20) — ❌ The request attempted to add an attribute type or value that already existsLDAP_INVALID_SYNTAX (21) — ❌ Some part of the request contained an invalid syntax. It could be a search with an invalid filter or a request to modify the schema and the given schema has a bad syntax.LDAP_NO_SUCH_OBJECT (32) — ❌ The server cannot find an object specified in the requestLDAP_ALIAS_PROBLEM (33) — ❌ Server encountered a problem while attempting to dereference an aliasLDAP_INVALID_DN_SYNTAX (34) — ❌ The request contained an invalid DNLDAP_IS_LEAF (35) — 🌿 The specified entry is a leaf entryLDAP_ALIAS_DEREF_PROBLEM (36) — ❌ Server encountered a problem while attempting to dereference an aliasLDAP_PROXY_AUTHZ_FAILURE (47) — ❌ The user bound is not authorized to assume the requested identityLDAP_INAPPROPRIATE_AUTH (48) — ❌ The server requires the client which had attempted to bind anonymously or without supplying credentials to provide some form of credentialsLDAP_INVALID_CREDENTIALS (49) — ❌ The wrong password was supplied or the SASL credentials could not be processedLDAP_INSUFFICIENT_ACCESS (50) — 🚫 The client does not have sufficient access to perform the requested operationLDAP_BUSY (51) — ⏳ The server is too busy to perform requested operationLDAP_UNAVAILABLE (52) — 🔴 The server is unavailable to perform the request, or the server is shutting downLDAP_UNWILLING_TO_PERFORM (53) — 🙅 The server is unwilling to perform the requested operationLDAP_LOOP_DETECT (54) — 🔄 The server was unable to perform the request due to an internal loop detectedLDAP_SORT_CONTROL_MISSING (60) — ❌ The search contained a "virtual list view" control, but not a server-side sorting control, which is required when a "virtual list view" is given.LDAP_INDEX_RANGE_ERROR (61) — ❌ The search contained a control for a "virtual list view" and the results exceeded the range specified by the requested offsets.LDAP_NAMING_VIOLATION (64) — ❌ The request violates the structure of the DITLDAP_OBJECT_CLASS_VIOLATION (65) — ❌ The request specifies a change to an existing entry or the addition of a new entry that does not comply with the servers schemaLDAP_NOT_ALLOWED_ON_NONLEAF (66) — ❌ The requested operation is not allowed on an entry that has child entriesLDAP_NOT_ALLOWED_ON_RDN (67) — ❌ The requested operation will affect the RDN of the entryLDAP_ALREADY_EXISTS (68) — ❌ The client attempted to add an entry that already exists. This can occur as a result of:
LDAP_NO_OBJECT_CLASS_MODS (69) — ❌ Request attempted to modify the object class of an entry that should not be modifiedLDAP_RESULTS_TOO_LARGE (70) — 📦 The results of the request are too largeLDAP_AFFECTS_MULTIPLE_DSAS (71) — ❌ The requested operation needs to be performed on multiple servers where the requested operation is not permittedLDAP_VLV_ERROR (76) — ❌ A VLV error has occurredLDAP_OTHER (80) — ❓ An unknown error has occurredLDAP_SERVER_DOWN (81) — 🔌 Net::LDAP cannot establish a connection or the connection has been lostLDAP_LOCAL_ERROR (82) — ❌ An error occurred in Net::LDAPLDAP_ENCODING_ERROR (83) — ❌ Net::LDAP encountered an error while encoding the request packet that would have been sent to the serverLDAP_DECODING_ERROR (84) — ❌ Net::LDAP encountered an error while decoding a response packet from the serverLDAP_TIMEOUT (85) — ⏰ Net::LDAP timeout while waiting for a response from the serverLDAP_AUTH_UNKNOWN (86) — ❌ The method of authentication requested in a bind request is unknown to the serverLDAP_FILTER_ERROR (87) — ❌ An error occurred while encoding the given search filterLDAP_USER_CANCELED (88) — ❌ The user canceled the operationLDAP_PARAM_ERROR (89) — ❌ An invalid parameter was specifiedLDAP_NO_MEMORY (90) — 💾 Out of memory errorLDAP_CONNECT_ERROR (91) — ❌ A connection to the server could not be establishedLDAP_NOT_SUPPORTED (92) — ❌ An attempt has been made to use a feature not supported by Net::LDAPLDAP_CONTROL_NOT_FOUND (93) — ❌ The controls required to perform the requested operation were not foundLDAP_NO_RESULTS_RETURNED (94) — ❌ No results were returned from the serverLDAP_MORE_RESULTS_TO_RETURN (95) — 📋 There are more results in the chain of resultsLDAP_CLIENT_LOOP (96) — 🔄 A loop has been detected. For example when following referrals.LDAP_REFERRAL_LIMIT_EXCEEDED (97) — ❌ The referral hop limit has been exceededLDAP_CANCELED (118) — ❌ Operation was canceledLDAP_NO_SUCH_OPERATION (119) — ❌ Server has no knowledge of the operation requested for cancellationLDAP_TOO_LATE (120) — ❌ Too late to cancel the outstanding operationLDAP_CANNOT_CANCEL (121) — ❌ The identified operation does not support cancellation or the cancel operation cannot be performedLDAP_ASSERTION_FAILED (122) — ❌ An assertion control given in the LDAP operation evaluated to false causing the operation to not be performedLDAP_SYNC_REFRESH_REQUIRED (4096) — 🔄 Refresh RequiredControl OIDs identify LDAP Controls. By announcing the respective OIDs in the operational attribute supportedControls of the Root DSE an LDAP server indicates which LDAP Controls it supports.
LDAP_CONTROL_SORTREQUEST (1.2.840.113556.1.4.473) — See Net::LDAP::Control::SortLDAP_CONTROL_SORTRESULT (1.2.840.113556.1.4.474) / LDAP_CONTROL_SORTRESPONSE (1.2.840.113556.1.4.474) — See Net::LDAP::Control::SortResultLDAP_CONTROL_VLVREQUEST (2.16.840.1.113730.3.4.9) — See Net::LDAP::Control::VLVLDAP_CONTROL_VLVRESPONSE (2.16.840.1.113730.3.4.10) — See Net::LDAP::Control::VLVResponseLDAP_CONTROL_PROXYAUTHORIZATION (2.16.840.1.113730.3.4.18) / LDAP_CONTROL_PROXYAUTHENTICATION (2.16.840.1.113730.3.4.18) — See Net::LDAP::Control::ProxyAuthLDAP_CONTROL_PAGED (1.2.840.113556.1.4.319) — See Net::LDAP::Control::PagedLDAP_CONTROL_TREE_DELETE (1.2.840.113556.1.4.805) — See Net::LDAP::Control::TreeDeleteLDAP_CONTROL_MATCHEDVALS (1.2.826.0.1.3344810.2.2) — Outdated OID mentioned in predecessors to RFC 3876. Superseded by LDAP_CONTROL_MATCHEDVALUES.LDAP_CONTROL_MATCHEDVALUES (1.2.826.0.1.3344810.2.3) — See Net::LDAP::Control::MatchedValuesLDAP_CONTROL_MANAGEDSAIT (2.16.840.1.113730.3.4.2) — See Net::LDAP::Control::ManageDsaITLDAP_CONTROL_PERSISTENTSEARCH (2.16.840.1.113730.3.4.3) — See Net::LDAP::Control::PersistentSearchLDAP_CONTROL_ENTRYCHANGE (2.16.840.1.113730.3.4.7) — See Net::LDAP::Control::EntryChangeLDAP_CONTROL_PWEXPIRED (2.16.840.1.113730.3.4.4) / LDAP_CONTROL_PWEXPIRING (2.16.840.1.113730.3.4.5) — Password expiry controlsLDAP_CONTROL_REFERRALS (1.2.840.113556.1.4.616) — Referral chaining controlLDAP_CONTROL_RELAX (1.3.6.1.4.1.4203.666.5.12) — See Net::LDAP::Control::RelaxLDAP_CONTROL_PASSWORDPOLICY (1.3.6.1.4.1.42.2.27.8.5.1) — See Net::LDAP::Control::PasswordPolicyLDAP_CONTROL_PERMISSIVEMODIFY (1.2.840.113556.1.4.1413) — Permissive modify controlLDAP_CONTROL_PREREAD (1.3.6.1.1.13.1) — See Net::LDAP::Control::PreReadLDAP_CONTROL_POSTREAD (1.3.6.1.1.13.2) — See Net::LDAP::Control::PostReadLDAP_CONTROL_ASSERTION (1.3.6.1.1.12) — See Net::LDAP::Control::AssertionLDAP_CONTROL_DONTUSECOPY (1.3.6.1.1.22) — See Net::LDAP::Control::DontUseCopyLDAP_CONTROL_NOOP (1.3.6.1.4.1.4203.666.5.2) — See Net::LDAP::Control::NoOpLDAP_CONTROL_SUBENTRIES (1.3.6.1.4.1.4203.1.10.1) — See Net::LDAP::Control::SubentriesLDAP_CONTROL_SYNC (1.3.6.1.4.1.4203.1.9.1.1) — See Net::LDAP::Control::SyncRequestLDAP_CONTROL_SYNC_STATE (1.3.6.1.4.1.4203.1.9.1.2) — See Net::LDAP::Control::SyncStateLDAP_CONTROL_SYNC_DONE (1.3.6.1.4.1.4203.1.9.1.3) — See Net::LDAP::Control::SyncDoneLDAP_SYNC_INFO (1.3.6.1.4.1.4203.1.9.1.4) — Sync info OIDLDAP_PP_PASSWORD_EXPIRED (0) [LDAP_CONTROL_PASSWORDPOLICY] — The account's password has expiredLDAP_PP_ACCOUNT_LOCKED (1) [LDAP_CONTROL_PASSWORDPOLICY] — The account is lockedLDAP_PP_CHANGE_AFTER_RESET (2) [LDAP_CONTROL_PASSWORDPOLICY] — The account's password has been reset and now must be changedLDAP_PP_PASSWORD_MOD_NOT_ALLOWED (3) [LDAP_CONTROL_PASSWORDPOLICY] — The account's password may not be modifiedLDAP_PP_MUST_SUPPLY_OLD_PASSWORD (4) [LDAP_CONTROL_PASSWORDPOLICY] — The old password must also be supplied when setting a new passwordLDAP_PP_INSUFFICIENT_PASSWORD_QUALITY (5) [LDAP_CONTROL_PASSWORDPOLICY] — The new password was not of sufficient qualityLDAP_PP_PASSWORD_TOO_SHORT (6) [LDAP_CONTROL_PASSWORDPOLICY] — The new password was too shortLDAP_PP_PASSWORD_TOO_YOUNG (7) [LDAP_CONTROL_PASSWORDPOLICY] — The previous password was changed too recentlyLDAP_PP_PASSWORD_IN_HISTORY (8) [LDAP_CONTROL_PASSWORDPOLICY] — The new password was used too recentlyLDAP_SYNC_NONE (0) [LDAP_CONTROL_SYNC] — No sync modeLDAP_SYNC_REFRESH_ONLY (1) [LDAP_CONTROL_SYNC] — Refresh only modeLDAP_SYNC_RESERVED (2) [LDAP_CONTROL_SYNC] — ReservedLDAP_SYNC_REFRESH_AND_PERSIST (3) [LDAP_CONTROL_SYNC] — Refresh and persist modeLDAP_SYNC_REFRESH_PRESENTS (0) [LDAP_SYNC_INFO] — Refresh presentsLDAP_SYNC_REFRESH_DELETES (1) [LDAP_SYNC_INFO] — Refresh deletesLDAP_TAG_SYNC_NEW_COOKIE (0x80) [LDAP_SYNC_INFO] — New cookie tagLDAP_TAG_SYNC_REFRESH_DELETE (0xa1) [LDAP_SYNC_INFO] — Refresh delete tagLDAP_TAG_SYNC_REFRESH_PRESENT (0xa2) [LDAP_SYNC_INFO] — Refresh present tagLDAP_TAG_SYNC_ID_SET (0xa3) [LDAP_SYNC_INFO] — ID set tagLDAP_TAG_SYNC_COOKIE (0x04) [LDAP_SYNC_INFO] — Cookie tagLDAP_TAG_REFRESHDELETES (0x01) [LDAP_SYNC_INFO] — Refresh deletes tagLDAP_TAG_REFRESHDONE (0x01) [LDAP_SYNC_INFO] — Refresh done tagLDAP_TAG_RELOAD_HINT (0x01) [LDAP_CONTROL_SYNC] — Reload hint tagLDAP_SYNC_PRESENT (0) [LDAP_CONTROL_SYNC_STATE] — Present stateLDAP_SYNC_ADD (1) [LDAP_CONTROL_SYNC_STATE] — Add stateLDAP_SYNC_MODIFY (2) [LDAP_CONTROL_SYNC_STATE] — Modify stateLDAP_SYNC_DELETE (3) [LDAP_CONTROL_SYNC_STATE] — Delete stateSee section LDAP Extended Controls in [MS-ADTS].pdf.
| Constant | OID |
|---|---|
LDAP_CONTROL_SHOW_DELETED | 1.2.840.113556.1.4.417 |
LDAP_CONTROL_CROSSDOMAIN_MOVE | 1.2.840.113556.1.4.521 |
LDAP_CONTROL_SERVER_NOTIFICATION | 1.2.840.113556.1.4.528 |
LDAP_CONTROL_EXTENDED_DN | 1.2.840.113556.1.4.529 |
LDAP_CONTROL_LAZY_COMMIT | 1.2.840.113556.1.4.619 |
LDAP_CONTROL_SD_FLAGS | 1.2.840.113556.1.4.801 |
LDAP_CONTROL_RANGE_OPTION | 1.2.840.113556.1.4.802 |
LDAP_CONTROL_DIRSYNC | 1.2.840.113556.1.4.841 |
LDAP_CONTROL_GET_STATS | 1.2.840.113556.1.4.970 |
LDAP_CONTROL_VERIFY_NAME | 1.2.840.113556.1.4.1338 |
LDAP_CONTROL_DOMAIN_SCOPE | 1.2.840.113556.1.4.1339 |
LDAP_CONTROL_SEARCH_OPTIONS | 1.2.840.113556.1.4.1340 |
LDAP_CONTROL_RODC_DCPROMO | 1.2.840.113556.1.4.1341 |
LDAP_CONTROL_ASQ | 1.2.840.113556.1.4.1504 |
LDAP_CONTROL_QUOTA_CONTROL | 1.2.840.113556.1.4.1852 |
LDAP_CONTROL_SHUTDOWN_NOTIFY | 1.2.840.113556.1.4.1907 |
LDAP_CONTROL_RANGE_RETRIEVAL_NOERR | 1.2.840.113556.1.4.1948 |
LDAP_CONTROL_FORCE_UPDATE | 1.2.840.113556.1.4.1974 |
LDAP_CONTROL_DN_INPUT | 1.2.840.113556.1.4.2026 |
LDAP_CONTROL_SHOW_RECYCLED | 1.2.840.113556.1.4.2064 |
LDAP_CONTROL_SHOW_DEACTIVATED_LINK | 1.2.840.113556.1.4.2065 |
LDAP_CONTROL_POLICY_HINTS_DEPRECATED | 1.2.840.113556.1.4.2066 |
LDAP_CONTROL_DIRSYNC_EX | 1.2.840.113556.1.4.2090 |
LDAP_CONTROL_TREE_DELETE_EX | 1.2.840.113556.1.4.2204 |
LDAP_CONTROL_UPDATE_STATS | 1.2.840.113556.1.4.2205 |
LDAP_CONTROL_SEARCH_HINTS | 1.2.840.113556.1.4.2206 |
LDAP_CONTROL_EXPECTED_ENTRY_COUNT | 1.2.840.113556.1.4.2211 |
LDAP_CONTROL_POLICY_HINTS | 1.2.840.113556.1.4.2239 |
LDAP_CONTROL_SET_OWNER | 1.2.840.113556.1.4.2255 |
LDAP_CONTROL_BYPASS_QUOTA | 1.2.840.113556.1.4.2256 |
LDAP_CONTROL_LINK_TTL | 1.2.840.113556.1.4.2309 |
LDAP_CONTROL_SET_CORRELATION_ID | 1.2.840.113556.1.4.2330 |
LDAP_CONTROL_THREAD_TRACE_OVERRIDE | 1.2.840.113556.1.4.2354 |
Extension OIDs identify LDAP Extended operations. By announcing the respective OIDs in the operational attribute supportedExtension of the Root DSE an LDAP server indicates which LDAP Extended operations it supports.
LDAP_NOTICE_OF_DISCONNECTION (1.3.6.1.4.1.1466.20036) — 🔌 Indicates that the server is about to close the connection due to an error (RFC 4511)LDAP_EXTENSION_START_TLS (1.3.6.1.4.1.1466.20037) — 🔒 Indicates if the server supports the Start TLS extension (RFC 4513). See start_tls in Net::LDAP.LDAP_EXTENSION_PASSWORD_MODIFY (1.3.6.1.4.1.4203.1.11.1) — 🔑 Indicates that the server supports the Password Modify extension (RFC 3062). See Net::LDAP::Extension::SetPassword.LDAP_EXTENSION_WHO_AM_I (1.3.6.1.4.1.4203.1.11.3) — 👤 Indicates that the server supports the "Who am I?" extension (RFC 4532). See Net::LDAP::Extension::WhoAmI.LDAP_EXTENSION_REFRESH (1.3.6.1.4.1.1466.101.119.1) — 🔄 Indicates that the server supports the Refresh extension (RFC 2589). See Net::LDAP::Extension::Refresh.LDAP_EXTENSION_CANCEL (1.3.6.1.1.8) — ❌ Indicates the server supports the Cancel extension (RFC 3909). See Net::LDAP::Extension::Cancel.See section LDAP Extended Operations in [MS-ADTS].pdf.
LDAP_EXTENSION_FAST_BIND (1.2.840.113556.1.4.1781) — ⚡ Fast bindLDAP_EXTENSION_BATCH_REQUEST (1.2.840.113556.1.4.2212) — 📦 Batch requestLDAP_EXTENSION_NDSTOLDAP (2.16.840.1.113719.1.27.100.2)LDAP_EXTENSION_SPLIT_PARTITION (2.16.840.1.113719.1.27.100.3)LDAP_EXTENSION_MERGE_PARTITION (2.16.840.1.113719.1.27.100.5)LDAP_EXTENSION_ADD_REPLICA (2.16.840.1.113719.1.27.100.7)LDAP_EXTENSION_REFRESH_LDAP_SERVER (2.16.840.1.113719.1.27.100.9)LDAP_EXTENSION_REMOVE_REPLICA (2.16.840.1.113719.1.27.100.11)LDAP_EXTENSION_PARTITION_ENTRY_COUNT (2.16.840.1.113719.1.27.100.13)LDAP_EXTENSION_CHANGE_REPLICA_TYPE (2.16.840.1.113719.1.27.100.15)LDAP_EXTENSION_GET_REPLICA_INFO (2.16.840.1.113719.1.27.100.17)LDAP_EXTENSION_LIST_REPLICAS (2.16.840.1.113719.1.27.100.19)LDAP_EXTENSION_RECEIVE_ALL_UPDATES (2.16.840.1.113719.1.27.100.21)LDAP_EXTENSION_SEND_ALL_UPDATES (2.16.840.1.113719.1.27.100.23)LDAP_EXTENSION_REQUEST_PARTITIONSYNC (2.16.840.1.113719.1.27.100.25)LDAP_EXTENSION_REQUEST_SCHEMASYNC (2.16.840.1.113719.1.27.100.27)LDAP_EXTENSION_ABORT_PARTITION_OPERATION (2.16.840.1.113719.1.27.100.29)LDAP_EXTENSION_GET_BINDDN (2.16.840.1.113719.1.27.100.31)LDAP_EXTENSION_GET_EFFECTIVE_PRIVILEGES (2.16.840.1.113719.1.27.100.33)LDAP_EXTENSION_SET_REPLICATION_FILTER (2.16.840.1.113719.1.27.100.35)LDAP_EXTENSION_GET_REPLICATION_FILTER (2.16.840.1.113719.1.27.100.37)LDAP_EXTENSION_CREATE_ORPHAN_PARTITION (2.16.840.1.113719.1.27.100.39)LDAP_EXTENSION_REMOVE_ORPHAN_PARTITION (2.16.840.1.113719.1.27.100.41)LDAP_EXTENSION_TRIGGER_BACKLINKER (2.16.840.1.113719.1.27.100.43)LDAP_EXTENSION_TRIGGER_DRLPROCESS (2.16.840.1.113719.1.27.100.45)LDAP_EXTENSION_TRIGGER_JANITOR (2.16.840.1.113719.1.27.100.47)LDAP_EXTENSION_TRIGGER_LIMBER (2.16.840.1.113719.1.27.100.49)LDAP_EXTENSION_TRIGGER_SKULKER (2.16.840.1.113719.1.27.100.51)LDAP_EXTENSION_TRIGGER_SCHEMASYNC (2.16.840.1.113719.1.27.100.53)LDAP_EXTENSION_TRIGGER_PARTITIONPURGE (2.16.840.1.113719.1.27.100.55)LDAP_EXTENSION_MONITOR_EVENTS (2.16.840.1.113719.1.27.100.79)LDAP_EXTENSION_EVENT_NOTIFICATION (2.16.840.1.113719.1.27.100.81)LDAP_EXTENSION_FILTERED_EVENT_MONITOR (2.16.840.1.113719.1.27.100.84)LDAP_EXTENSION_LDAPBACKUP (2.16.840.1.113719.1.27.100.96)LDAP_EXTENSION_LDAPRESTORE (2.16.840.1.113719.1.27.100.98)LDAP_EXTENSION_GET_EFFECTIVE_LIST_PRIVILEGES (2.16.840.1.113719.1.27.100.103)LDAP_EXTENSION_CREATE_GROUPING (2.16.840.1.113719.1.27.103.1)LDAP_EXTENSION_END_GROUPING (2.16.840.1.113719.1.27.103.2)LDAP_EXTENSION_NMAS_PUT_LOGIN_CONFIGURATION (2.16.840.1.113719.1.39.42.100.1)LDAP_EXTENSION_NMAS_GET_LOGIN_CONFIGURATION (2.16.840.1.113719.1.39.42.100.3)LDAP_EXTENSION_NMAS_DELETE_LOGIN_CONFIGURATION (2.16.840.1.113719.1.39.42.100.5)LDAP_EXTENSION_NMAS_PUT_LOGIN_SECRET (2.16.840.1.113719.1.39.42.100.7)LDAP_EXTENSION_NMAS_DELETE_LOGIN_SECRET (2.16.840.1.113719.1.39.42.100.9)LDAP_EXTENSION_NMAS_SET_PASSWORD (2.16.840.1.113719.1.39.42.100.11)LDAP_EXTENSION_NMAS_GET_PASSWORD (2.16.840.1.113719.1.39.42.100.13)LDAP_EXTENSION_NMAS_DELETE_PASSWORD (2.16.840.1.113719.1.39.42.100.15)LDAP_EXTENSION_NMAS_PASSWORD_POLICYCHECK (2.16.840.1.113719.1.39.42.100.17)LDAP_EXTENSION_NMAS_GET_PASSWORD_POLICY_INFO (2.16.840.1.113719.1.39.42.100.19)LDAP_EXTENSION_NMAS_CHANGE_PASSWORD (2.16.840.1.113719.1.39.42.100.21)LDAP_EXTENSION_NMAS_GAMS (2.16.840.1.113719.1.39.42.100.23)LDAP_EXTENSION_NMAS_MANAGEMENT (2.16.840.1.113719.1.39.42.100.25)LDAP_EXTENSION_START_FRAMED_PROTOCOL (2.16.840.1.113719.1.142.100.1)LDAP_EXTENSION_END_FRAMED_PROTOCOL (2.16.840.1.113719.1.142.100.4)LDAP_EXTENSION_LBURP_OPERATION (2.16.840.1.113719.1.142.100.6)Feature OIDs identify LDAP features. By announcing the respective OIDs in the operational attribute supportedFeature of the Root DSE an LDAP server indicates which LDAP features it supports.
LDAP_FEATURE_ALL_OPATTS (1.3.6.1.4.1.4203.1.5.1) — Indicates if the server allows "+" for returning all operational attributes (RFC 3673)LDAP_FEATURE_OBJECTCLASS_ATTRS (1.3.6.1.4.1.4203.1.5.2) — Indicates that the server allows @<objectclass> for returning all attributes used to represent a particular class of object (RFC 4529)LDAP_FEATURE_ABSOLUTE_FILTERS (1.3.6.1.4.1.4203.1.5.3) — Indicates that the server supports (&) for the absolute True filter, and (|) for the absolute False filter (RFC 4526)LDAP_FEATURE_LANGUAGE_TAG_OPTIONS (1.3.6.1.4.1.4203.1.5.4) — Indicates the server supports language tag options of the form lang-<language-tag> with attributes (RFC 3866)LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS (1.3.6.1.4.1.4203.1.5.5) — Indicates that the server supports language tag range options (RFC 3866)LDAP_FEATURE_MODIFY_INCREMENT (1.3.6.1.1.14) — Indicates if the server supports the Modify Increment extension (RFC 4525). See modify in Net::LDAP.The following constants are specific to Microsoft Active Directory. They serve to denote capabilities via the non-standard operational attribute supportedCapabilities in the Root DSE of an LDAP server.
LDAP_CAP_ACTIVE_DIRECTORY (1.2.840.113556.1.4.800) — Indicates that the LDAP server is running Active Directory and is running as AD DSLDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG (1.2.840.113556.1.4.1791) — Indicates that the LDAP server on the DC is capable of signing and sealing on an NTLM authenticated connection, and that the server is capable of performing subsequent binds on a signed or sealed connectionLDAP_CAP_ACTIVE_DIRECTORY_V51 (1.2.840.113556.1.4.1670) — On an Active Directory DC operating as AD DS, the presence of this capability indicates that the LDAP server is running at least Windows 2003. On an Active Directory DC operating as AD LDS, indicates at least Windows 2008.LDAP_CAP_ACTIVE_DIRECTORY_ADAM (1.2.840.113556.1.4.1851) — Indicates that the LDAP server is running Active Directory as AD LDSLDAP_CAP_ACTIVE_DIRECTORY_ADAM_DIGEST (1.2.840.113556.1.4.1880) — Indicates on a DC operating as AD LDS, that the DC accepts DIGEST-MD5 binds for AD LDS security principalsLDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS (1.2.840.113556.1.4.1920) — Indicates that the Active Directory DC operating as AD DS, is an RODCLDAP_CAP_ACTIVE_DIRECTORY_V60 (1.2.840.113556.1.4.1935) — Indicates that the LDAP server is running at least Windows 2008LDAP_CAP_ACTIVE_DIRECTORY_V61_R2 (1.2.840.113556.1.4.2080) — Indicates that the LDAP server is running at least Windows 2008 R2LDAP_CAP_ACTIVE_DIRECTORY_W8 (1.2.840.113556.1.4.2237) — Indicates that the LDAP server is running at least Windows 2012Graham Barr <gbarr@pobox.com>
Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org>
Copyright (c) 1998-2009 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Generated by phpman v4.9.29 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-22 03:36 @2600:1f28:365:80b0:8802:8bb4:3873:328e
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format