Object identifier: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Add ASN.1 category.
Line 55: Line 55:
* [http://pen.iana.org/ IANA Private Enterprise Numbers]
* [http://pen.iana.org/ IANA Private Enterprise Numbers]
* [http://www.vishnivetsky.ru/notices%20articles%20reviews/on-line%20oid%20generator%20for%20active%20directory%20schema.html On-line OID generator for Microsoft Active Directory Schema]
* [http://www.vishnivetsky.ru/notices%20articles%20reviews/on-line%20oid%20generator%20for%20active%20directory%20schema.html On-line OID generator for Microsoft Active Directory Schema]
* [https://www.hl7.org/oid/ HL7 OID registry]

[[Category:Identifiers]]
[[Category:Identifiers]]
[[Category:Network management]]
[[Category:Network management]]
[[Category:ASN.1]]
* [https://www.hl7.org/oid/ HL7 OID registry]

Revision as of 06:13, 7 March 2017

In computing, object identifiers or OIDs are an identifier mechanism standardized by the International Telecommunications Union (ITU) and ISO/IEC for naming any object, concept, or "thing" with a globally unambiguous persistent name.[1]

An OID corresponds to a node in the "OID tree" or hierarchy, which is formally defined using the ITU's ASN.1 standard, X.690. The root of the tree contains the following three arcs:

Each node in the tree is represented by a series of integers separated by periods, corresponding to the path from the root through the series of ancestor nodes, to the node. Thus, an OID denoting Intel Corporation appears as follows,

1.3.6.1.4.1.343

and corresponds to the following path through the OID tree:

  • 1 ISO
  • 1.3 identified-organization,
  • 1.3.6 dod,
  • 1.3.6.1 internet,
  • 1.3.6.1.4 private,
  • 1.3.6.1.4.1 IANA enterprise numbers,
  • 1.3.6.1.4.1.343 Intel Corporation

A textual representation of the OID paths is also commonly seen; for example,

  • iso.identified-organization.dod.internet.private.enterprise.intel

Each node in the tree is controlled by an assigning authority, which may define child nodes under the node and delegate assigning authority for the child nodes. Continuing with the example, the node numbers under root node "1" are assigned by ISO; the nodes under "1.3.6" are assigned by the US Department of Defense; the nodes under "1.3.6.1.4.1" are assigned by IANA; the nodes under "1.3.6.1.4.1.343" are assigned by Intel Corporation, and so forth.

Usage

See also

References

  1. ^ "Object Identifier Repository".

This article is based on material taken from the Free On-line Dictionary of Computing prior to 1 November 2008 and incorporated under the "relicensing" terms of the GFDL, version 1.3 or later.

External links