Object identifier: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 27: Line 27:
* In [[Simple network management protocol|Simple Network Management Protocol]] (SNMP), each node in [[Management information base|Management Information Base]] (MIB) is an OID.
* In [[Simple network management protocol|Simple Network Management Protocol]] (SNMP), each node in [[Management information base|Management Information Base]] (MIB) is an OID.
* IANA assigns [[Private Enterprise Number]]s (PEN) to companies and other organizations. OIDs based on these are among the most commonly seen; for example, within SNMP MIBs, as LDAP attributes, and as vendor suboptions in the [[Dynamic Host Configuration Protocol]] (DHCP).
* IANA assigns [[Private Enterprise Number]]s (PEN) to companies and other organizations. OIDs based on these are among the most commonly seen; for example, within SNMP MIBs, as LDAP attributes, and as vendor suboptions in the [[Dynamic Host Configuration Protocol]] (DHCP).
* In the [[United States]], [[Health Level Seven]] (HL7), a standards-developing organization in the area of electronic health care data exchange, is tje assigning authority at the 2.16.840.1.113883 (joint-iso-itu-t.country.us.organization.hl7) node. HL7 maintains its own [http://www.hl7.org/oid/index.cfm OID registry], and as of January 1, 2008 it contained almost 3,000 nodes, most of them under the HL7 root.
* In the [[United States]], [[Health Level Seven]] (HL7), a standards-developing organization in the area of electronic health care data exchange, is the assigning authority at the 2.16.840.1.113883 (joint-iso-itu-t.country.us.organization.hl7) node. HL7 maintains its own [http://www.hl7.org/oid/index.cfm OID registry], and as of January 1, 2008 it contained almost 3,000 nodes, most of them under the HL7 root.
* [[DICOM]] uses OIDs.
* [[DICOM]] uses OIDs.
* The [[Centers for Disease Control and Prevention]] uses OIDs to manage the many complex values sets or "vocabularies" used in the Public Health Information Network (PHIN) Vocabulary Access and Distribution System ([http://www.cdc.gov/phin/tools/PHINvads/index.html VADS]).
* The [[Centers for Disease Control and Prevention]] uses OIDs to manage the many complex values sets or "vocabularies" used in the Public Health Information Network (PHIN) Vocabulary Access and Distribution System ([http://www.cdc.gov/phin/tools/PHINvads/index.html VADS]).

Revision as of 19:26, 30 January 2017

In computing, an 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.

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. Successive numbers of the nodes, starting at the root of the tree, identify each node in the tree. The root of the tree contains the following three arcs:

Each node in the tree is represented by the series of identifiers leading from the root of the tree to the node, separated by periods. Thus, the OID

1.3.6.1.4.1.343

an OID denoting "Intel Corporation" corresponds to the following path through the OID tree:

  • ISO (1),
  • identified-organization(3),
  • dod(6),
  • internet(1),
  • private(4),
  • IANA enterprise numbers (1),
  • Intel Corporation(343)

Each node in the tree is controlled by a single authority. 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" are assigned by Intel Corporation, and so forth.

Usage

See also

References

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