home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / rfc / rfc1836 < prev    next >
Text File  |  1995-08-16  |  20KB  |  620 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                           S. Kille
  8. Request for Comments: 1836                              ISODE Consortium
  9. Category: Experimental                                       August 1995
  10.  
  11.  
  12.              Representing the O/R Address hierarchy in the
  13.                     X.500 Directory Information Tree
  14.  
  15. Status of this Memo
  16.  
  17.    This memo defines an Experimental Protocol for the Internet
  18.    community.  This memo does not specify an Internet standard of any
  19.    kind.  Discussion and suggestions for improvement are requested.
  20.    Distribution of this memo is unlimited.
  21.  
  22. Abstract
  23.  
  24.    This document defines a representation of the O/R Address hierarchy
  25.    in the Directory Information Tree [6, 1].  This is useful for a range
  26.    of purposes, including:
  27.  
  28. o  Support for MHS Routing [4].
  29.  
  30. o  Support for X.400/RFC 822 address mappings [2, 5].
  31.  
  32.                  Object Class               Mandatory
  33.                  ------------               ---------
  34.                  mHSCountry                 M
  35.                  aDMD                       M
  36.                  pRMD                       O
  37.                  mHSX121                    O
  38.                  mHSNumericUserIdentifier   O
  39.                  mHSOrganization            O
  40.                  mHSOrganizationalUnit      O
  41.                  mHSPerson                  O
  42.                  mHSNamedObject             O
  43.                  mHSTerminalID              O
  44.                  mHSDomainDefinedAttribute  O
  45.  
  46.          Table 1:  Order of O/R Address Directory Components
  47.  
  48. 1.  The O/R Address Hierarchy
  49.  
  50.    An O/R Address hierarchy is represented in the X.500 directory by
  51.    associating directory name components with O/R Address components.
  52.    An example of this is given in Figure 1.  The object classes and
  53.    attributes required to support this representation are defined in
  54.    Figure 2.  The schema, which defines the hierarchy in which these
  55.  
  56.  
  57.  
  58. Kille                         Experimental                      [Page 1]
  59.  
  60. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  61.  
  62.  
  63.    objects are represented in the directory information tree is
  64.    specified in Table 1.  A given object class defined in the table will
  65.    always be higher in the DIT than an object class defined lower down
  66.    the table.  Valid combinations of O/R Address components are defined
  67.    in X.400.
  68.  
  69.                                   /\
  70.                                  /   \
  71.                     C=GB        /      \   Numeric-C=234
  72.                                /         \
  73.                               /            \
  74.                              /               \
  75.                 +------------+<----------------+----+
  76.                 | Country    |                 |    |
  77.                 +------------+                 +----+
  78.                      /\
  79.                     /   \
  80.                    /      \
  81.                   /         \
  82.      ADMD=" "    /            \  ADMD=Gold 400
  83.      +-------------+         +------------+
  84.      |   ADMD      |         |   ADMD     |
  85.      +-------------+         +------------+
  86.            \                     \
  87.              \                     \
  88.                \ PRMD=UK.AC          \ PRMD=UK.AC
  89.                  \                     \
  90.                 +----------+             +----+
  91.                 |  PRMD    |< -----------|    |
  92.                 +----------+             +----+
  93.                      /
  94.                     /
  95.                  O=UCL
  96.                   /
  97.                  /
  98.      +------------+
  99.      | MHS-Org    |
  100.      +------------+
  101.           \
  102.             \  OU=CS
  103.               \
  104.                 \
  105.               +-----------+
  106.               | MHS-OU    |
  107.               +-----------+
  108.  
  109.                     Figure 1:  Example O/R Address Tree
  110.  
  111.  
  112.  
  113.  
  114. Kille                         Experimental                      [Page 2]
  115.  
  116. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  117.  
  118.  
  119. IMPORTS
  120.   ub-domain-name-length, ub-organization-name-length,
  121.   ub-organizational-unit-name-length, ub-common-name-length,
  122.   ub-x121-address-length, ub-domain-defined-attribute-type-length,
  123.   ub-domain-defined-attribute-value-length, ub-terminal-id-length,
  124.   ub-numeric-user-id-length, ub-country-name-numeric-length,
  125.   ub-surname-length, ub-given-name-length,  ub-initials-length,
  126.   ub-generation-qualifier-length
  127.  
  128.     FROM MTSUpperBounds {joint-iso-ccitt mhs-motis(6) mts(3)        10
  129.         modules(0) upper-bounds(3) };
  130.  
  131. mHSCountry OBJECT-CLASS ::= {
  132.     SUBCLASS OF {country}
  133.     MAY CONTAIN {mHSNumericCountryName}
  134.     ID oc-mhs-country}
  135.  
  136. mHSNumericCountryName ATTRIBUTE ::= {
  137.     WITH SYNTAX NumericString (SIZE (1..ub-country-name-numeric-length))
  138.     SINGLE VALUE                                                    20
  139.     ID at-mhs-numeric-country-name}
  140.  
  141. aDMD OBJECT-CLASS ::= {
  142.     SUBCLASS OF {top}
  143.     MUST CONTAIN {aDMDName}
  144.     ID oc-admd}
  145.  
  146. aDMDName ATTRIBUTE ::= {
  147.     SUBTYPE OF name
  148.     WITH SYNTAX DirectoryString {ub-domain-name-length}             30
  149.     ID at-admd-name}
  150.  
  151. pRMD OBJECT-CLASS ::= {
  152.     SUBCLASS OF {top}
  153.     MUST CONTAIN {pRMDName}
  154.     ID oc-prmd}
  155.  
  156. pRMDName ATTRIBUTE ::= {
  157.     SUBTYPE OF name
  158.     WITH SYNTAX DirectoryString {ub-domain-name-length}             40
  159.     ID at-prmd-name}
  160.  
  161. mHSOrganization OBJECT-CLASS ::= {
  162.     SUBCLASS OF {top}
  163.     MUST CONTAIN {mHSOrganizationName }
  164.     ID oc-mhs-organization}
  165.  
  166.  
  167.  
  168.  
  169.  
  170. Kille                         Experimental                      [Page 3]
  171.  
  172. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  173.  
  174.  
  175. mHSOrganizationName ATTRIBUTE ::= {
  176.     SUBTYPE OF organizationName
  177.     WITH SYNTAX DirectoryString {ub-organization-name-length}       50
  178.     ID at-mhs-organization-name}
  179.  
  180. mHSOrganizationalUnit OBJECT-CLASS ::= {
  181.     SUBCLASS OF {top}
  182.     MUST CONTAIN {mHSOrganizationalUnitName}
  183.     ID oc-mhs-organizational-unit}
  184.  
  185. mHSOrganizationalUnitName ATTRIBUTE ::= {
  186.     SUBTYPE OF organizationalUnitName                               60
  187.     WITH SYNTAX DirectoryString {ub-organizational-unit-name-length}
  188.     ID at-mhs-organizational-unit-name}
  189.  
  190. mHSPerson OBJECT-CLASS ::= {
  191.     SUBCLASS OF {top}
  192.     MUST CONTAIN {mHSSurname}
  193.     MAY CONTAIN {mHSGivenName|
  194.                 mHSInitials|
  195.                 mHSGenerationalQualifier}
  196.     ID oc-mhs-person}                                               70
  197.  
  198. mHSSurname ATTRIBUTE ::= {
  199.     SUBTYPE OF surname
  200.     WITH SYNTAX DirectoryString {ub-surname-lenght}
  201.     ID at-mhs-surname}
  202.  
  203. mHSGivenName ATTRIBUTE ::= {
  204.     SUBTYPE OF givenName
  205.     WITH SYNTAX DirectoryString {ub-given-name-length}
  206.     ID at-mhs-given-name}                                           80
  207.  
  208. mHSInitials ATTRIBUTE ::= {
  209.     SUBTYPE OF initials
  210.     WITH SYNTAX DirectoryString {ub-initials-length}
  211.     ID at-mhs-initials}
  212.  
  213. mHSGenerationQualifier ATTRIBUTE ::= {
  214.     SUBTYPE OF generationQualifier
  215.     WITH SYNTAX DirectoryString {ub-generation-qualifier-length}
  216.     ID at-mhs-generation-qualifier}                                 90
  217.  
  218. mHSNamedObject OBJECT-CLASS ::= {
  219.     SUBCLASS OF {top}
  220.     MUST CONTAIN {mHSCommonName}
  221.     ID oc-mhs-named-object}
  222.  
  223.  
  224.  
  225.  
  226. Kille                         Experimental                      [Page 4]
  227.  
  228. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  229.  
  230.  
  231. mHSCommonName ATTRIBUTE ::= {
  232.     SUBTYPE OF commonName
  233.     WITH SYNTAX DirectoryString {ub-common-name-length}
  234.     ID at-mhs-common-name}                                         100
  235.  
  236. mHSX121 OBJECT-CLASS ::= {
  237.     SUBCLASS OF {top}
  238.     MUST CONTAIN {mHSX121Address}
  239.     ID oc-mhs-x121}
  240.  
  241. mHSX121Address ATTRIBUTE ::= {
  242.     SUBTYPE OF name
  243.     WITH SYNTAX DirectoryString {ub-x121-address-length}
  244.     ID at-x121-address}                                            110
  245.  
  246. mHSDomainDefinedAttribute OBJECT-CLASS ::= {
  247.     SUBCLASS OF {top}
  248.     MUST CONTAIN {
  249.         mHSDomainDefinedAttributeType|
  250.         mHSDomainDefinedAttributeValue}
  251.     ID oc-mhs-domain-defined-attribute}
  252.  
  253. mHSDomainDefinedAttributeType ATTRIBUTE ::= {
  254.     SUBTYPE OF name                                                120
  255.     WITH SYNTAX DirectoryString {ub-domain-defined-attribute-type-length}
  256.     SINGLE VALUE
  257.     ID at-mhs-domain-defined-attribute-type}
  258.  
  259. mHSDomainDefinedAttributeValue ATTRIBUTE ::= {
  260.     SUBTYPE OF name
  261.     WITH SYNTAX DirectoryString {ub-domain-defined-attribute-value-length}
  262.     SINGLE VALUE
  263.     ID at-mhs-domain-defined-attribute-value}
  264.                                                                    130
  265. mHSTerminalID OBJECT-CLASS ::= {
  266.     SUBCLASS OF {top}
  267.     MUST CONTAIN {mHSTerminalIDName}
  268.     ID oc-mhs-terminal-id}
  269.  
  270. mHSTerminalIDName ATTRIBUTE ::= {
  271.     SUBTYPE OF name
  272.     WITH SYNTAX DirectoryString {ub-terminal-id-length}
  273.     ID at-mhs-terminal-id-name}                                    140
  274.  
  275. mHSNumericUserIdentifier OBJECT-CLASS ::= {
  276.     SUBCLASS OF {top}
  277.     MUST CONTAIN {mHSNumericUserIdentifierName}
  278.     ID oc-mhs-numeric-user-id}
  279.  
  280.  
  281.  
  282. Kille                         Experimental                      [Page 5]
  283.  
  284. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  285.  
  286.  
  287. mHSNumericeUserIdentifierName ATTRIBUTE ::= {
  288.     SUBTYPE OF name
  289.     WITH SYNTAX DirectoryString {ub-numeric-user-id-length}        150
  290.     ID at-mhs-numeric-user-id-name}
  291.  
  292.                     Figure 2:  O/R_Address Hierarchy
  293.  
  294. The hierarchy is defined so that:
  295.  
  296. 1.  The representation is defined so that it is straightforward to
  297.     make a mechanical transformation in either direction.  This
  298.     requires that each node is named by an attribute whose type can
  299.     determine the mapping.
  300.  
  301. 2.  Where there are multiple domain defined attributes, the first in
  302.     the sequence is the most significant.
  303.  
  304. 3.  Physical Delivery (postal) addresses are not represented in this
  305.     hierarchy.  This is primarily because physical delivery can be
  306.     handled by the Access Unit routing mechanisms defined in [4], and
  307.     there is no need for this representation.
  308.  
  309. 4.  Terminal and network forms of address are not handled, except for
  310.     X.121 form, which is useful for addressing faxes.
  311.  
  312. 5.  MHSCountry is defined as a subclass of Country, and so the same
  313.     entry will be used for MHS Routing as for the rest of the DIT.
  314.  
  315. 6.  The numeric country code will be an alias.
  316.  
  317. 7.  ADMD will always be present in the hierarchy.  This is true in the
  318.     case of " " and of "0".  This facilitates an easy mechanical
  319.     transformation between the two forms of address.
  320.  
  321. 8.  Each node is named by the relevant part of the O/R Address.
  322.  
  323. 9.  Aliases may be used in other parts of the tree, in order to
  324.     normalise alternate values.  Where an alias is used, the value of
  325.     the alias should be present as an alternate value in the node
  326.     aliased to.  Aliases may not be used for domain defined
  327.     attributes.
  328.  
  329. 10. Domain Defined Attributes are named by a multi-valued RDN
  330.     (Relative Distinguished Name), consisting of the type and value.
  331.     This is done so that standard attribute syntaxes can be used.
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338. Kille                         Experimental                      [Page 6]
  339.  
  340. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  341.  
  342.  
  343. 11. Where an O/R Address has a valid Printable String and T.61 form,
  344.     both must be present, with one as an alias for the other.  This is
  345.     so that direct lookup of the name will work, independent of the
  346.     variant used.  When both are present in an O/R Address being
  347.     looked up, either may be used to construct the distinguished name.
  348.  
  349. 12. Personal name is handled by use of the mHSPerson object class.
  350.     Each of the components of the personal name will be present in the
  351.     relative distinguished name, which will usually be multi-valued.
  352.  
  353.    The relationship between X.400 O/R Addresses and the X.400 Entries
  354.    (Attribute Type and Object Class) are given in Table 2.  Where there
  355.    are multiple Organizational Units or Domain Defined Attributes, each
  356.    component is mapped onto a single X.500 entry.
  357.  
  358.    Note: When an X.121 address is used for addressing fax transmission,
  359.        this may only be done relative to the PRMD or ADMD. This is in
  360.        line with the current X.400 standards position.  This means that
  361.        it is not possible to use this form of addressing for an
  362.        organisational or departmental fax gateway service.
  363.  
  364. O/R Address  Object Class               Naming Attribute
  365. -----------  ------------               ----------------
  366. C            mHSCountry                 countryName
  367.                                         or
  368.                                         mHSNumericCountryName
  369. A            aDMD                       aDMDName
  370. P            pRMD                       pRMDName
  371. O            mHSOrganization            mHSOrganizationName
  372. OU/OU1/OU2   mHSOrganizationalUnit      mHSOrganizationalUnitName
  373. OU3/OU4
  374. PN           mHSPerson                  personName
  375. CN           mHSNamedObject             mHSCommonName
  376. X121         mHSX121                    mHSX121Address
  377. T-ID         mHSTerminalID              mHSTerminalIDName
  378. UA-ID        mHSNumericUserIdentifier   mHSNumericUserIdentifierName
  379. DDA          mHSDomainDefinedAttribute  mHSDomainDefinedAttributeType
  380.                                         and
  381.                                         mHSDomainDefinedAttributeValue
  382.  
  383.  
  384.          Table 2:  O/R Address relationship to Directory Name
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394. Kille                         Experimental                      [Page 7]
  395.  
  396. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  397.  
  398.  
  399. 2.  Notation
  400.  
  401.    O/R Addresses are written in the standard X.400 Notation.
  402.    Distinguished Names use the string representation of distinguished
  403.    names defined in [3].  The keywords used for the attributes defined
  404.    in this specification are given in Table 3.
  405.  
  406. 3.  Example Representation
  407.  
  408.    The O/R Address:
  409.  
  410.    I=S; S=Kille; OU1=CS; O=UCL,
  411.    P=UK.AC; A=Gold 400; C=GB;
  412.  
  413.  
  414.    would be represented in the directory as:
  415.  
  416.    MHS-I=S + MHS-S=Kille, MHS-OU=CS, MHS-O=UCL,
  417.  
  418.             Attribute                       Keyword
  419.             ---------                       -------
  420.             mHSNumericCountryName           MHS-Numeric-Country
  421.             aDMDName                        ADMD
  422.             pRMDName                        PRMD
  423.             mHSOrganizationName             MHS-O
  424.             mHSOrganizationalUnitName       MHS-OU
  425.             mHSSurname                      MHS-S
  426.             mHSGivenName                    MHS-G
  427.             mHSInitials                     MHS-I
  428.             mHSGenerationalQualifier        MHS-GQ
  429.             mHSCommonName                   MHS-CN
  430.             mHSX121Address                  MHS-X121
  431.             mHSDomainDefinedAttributeType   MHS-DDA-Type
  432.             mHSDomainDefinedAttributeValue  MHS-DDA-Value
  433.             mHSTerminalIDName               MHS-T-ID
  434.             mHSNumericeUserIdentifierName   MHS-UA-ID
  435.  
  436.               Table 3:  Keywords for String DN Representation
  437.  
  438.  
  439.    PRMD=UK.AC, ADMD=Gold 400, C=GB
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450. Kille                         Experimental                      [Page 8]
  451.  
  452. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  453.  
  454.  
  455. 4.  Mapping from O/R Address to Directory Name
  456.  
  457.    The primary application of this mapping is to take an X.400 encoded
  458.    O/R Address and to generate an equivalent directory name.  This
  459.    mapping is only used for selected types of O/R Address:
  460.  
  461.    o  Mnemonic form
  462.  
  463.    o  Numeric form
  464.  
  465.    o  Terminal form, where country is present and X121 addressing is
  466.       used
  467.  
  468.    Other forms of O/R address are handled by Access Unit mechanisms.
  469.    The O/R Address is treated as an ordered list, with the order as
  470.    defined in Table 1.  For each O/R Address attribute, generate the
  471.    equivalent directory naming attribute.  In most cases, the mapping is
  472.    mechanical.  Printable String or Teletex encodings are chosen as
  473.    appropriate.  Where both forms are present in the O/R Address, either
  474.    form may be used to generate the distinguished name.  Both will be
  475.    represented in the DIT. There are two special cases:
  476.  
  477.    1.  A DDA generates a multi-valued RDN
  478.  
  479.    2.  The Personal Name is mapped to a multi-valued RDN
  480.  
  481.    In many cases, an O/R Address will be provided, and only the higher
  482.    components of the address will be represented in the DIT. In this
  483.    case, the "longest possible match" should be returned.
  484.  
  485. 5.  Mapping from Directory Name to O/R Address
  486.  
  487.    The reverse mapping is also needed in some cases.  All of the naming
  488.    attributes are unique, so the mapping is mechanically reversible.
  489.  
  490. 6.  Acknowledgements
  491.  
  492.    Acknowledgements for work on this document are given in [4].
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506. Kille                         Experimental                      [Page 9]
  507.  
  508. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  509.  
  510.  
  511. References
  512.  
  513.    [1] The Directory --- overview of concepts, models and services,
  514.        1993. CCITT X.500 Series Recommendations.
  515.  
  516.    [2] Kille, S., "Mapping between X.400(1988)/ISO 10021 and RFC 822",
  517.        RFC 1327, Department of Computer Science, University College
  518.        London, May 1992.
  519.  
  520.    [3] Kille, S., "A String Representation of Distinguished Names",
  521.        RFC 1779, Department of Computer Science, University College
  522.        London, March 1995.
  523.  
  524.    [4] Kille, S., "MHS Use of the X.500 Directory to Support MHS
  525.        Routing, RFC 1801, ISODE Consortium, June 1995.
  526.  
  527.    [5] Kille, S., "Use of the X.500 Directory to Support Mapping between
  528.        X.400 and RFC 822 Addresses, RFC 1838, ISODE Consortium,
  529.        August 1995.
  530.  
  531.    [6] CCITT recommendations X.400 / ISO 10021, April 1988. CCITT
  532.        SG 5/VII / ISO/IEC JTC1, Message Handling:  System and Service
  533.        Overview.
  534.  
  535. 7.  Security Considerations
  536.  
  537.    Security issues are not discussed in this memo.
  538.  
  539. 8.  Author's Address
  540.  
  541.    Steve Kille
  542.    ISODE Consortium
  543.    The Dome
  544.    The Square
  545.    Richmond
  546.    TW9 1DT
  547.    England
  548.  
  549.    Phone:  +44-81-332-9091
  550.    Internet EMail:  S.Kille@ISODE.COM
  551.  
  552.    X.400:  I=S; S=Kille; O=ISODE Consortium; P=ISODE;
  553.    A=Mailnet; C=FI;
  554.  
  555.    DN: CN=Steve Kille,
  556.    O=ISODE Consortium, C=GB
  557.  
  558.    UFN: S. Kille, ISODE Consortium, GB
  559.  
  560.  
  561.  
  562. Kille                         Experimental                     [Page 10]
  563.  
  564. RFC 1836             O/R Addresses in the X.500 DIT          August 1995
  565.  
  566.  
  567. A.  Object Identifier Assignment
  568.  
  569.    -----------------------------------------------------------------------
  570.    mhs-ds OBJECT IDENTIFIER ::= {iso(1) org(3) dod(6) internet(1)
  571.              private(4) enterprises(1) isode-consortium (453) mhs-ds (7)}
  572.  
  573.  
  574.    tree OBJECT IDENTIFIER ::= {mhs-ds 2}
  575.  
  576.    oc OBJECT IDENTIFIER ::= {tree 1}
  577.    at OBJECT IDENTIFIER ::= {tree 2}
  578.  
  579.    oc-admd OBJECT IDENTIFIER ::= {oc 1}                                10
  580.    oc-mhs-country OBJECT IDENTIFIER ::= {oc 2}
  581.    oc-mhs-domain-defined-attribute OBJECT IDENTIFIER ::= {oc 3}
  582.    oc-mhs-named-object OBJECT IDENTIFIER ::= {oc 4}
  583.    oc-mhs-organization OBJECT IDENTIFIER ::= {oc 5}
  584.    oc-mhs-organizational-unit OBJECT IDENTIFIER ::= {oc 6}
  585.    oc-mhs-person OBJECT IDENTIFIER ::= {oc 7}
  586.    oc-mhs-x121 OBJECT IDENTIFIER ::= {oc 8}
  587.    oc-prmd OBJECT IDENTIFIER ::= {oc 9}
  588.    oc-mhs-terminal-id OBJECT IDENTIFIER ::= {oc 10}
  589.    oc-mhs-numeric-user-id OBJECT IDENTIFIER ::= {oc 11}                20
  590.  
  591.    at-admd-name OBJECT IDENTIFIER ::= {at 1}
  592.    at-mhs-common-name OBJECT IDENTIFIER ::= {at 2}
  593.    at-mhs-domain-defined-attribute-type OBJECT IDENTIFIER ::= {at 3}
  594.    at-mhs-domain-defined-attribute-value OBJECT IDENTIFIER ::= {at 4}
  595.    at-mhs-numeric-country-name OBJECT IDENTIFIER ::= {at 5}
  596.    at-mhs-organization-name OBJECT IDENTIFIER ::= {at 6}
  597.    at-mhs-organizational-unit-name OBJECT IDENTIFIER ::= {at 7}
  598.    at-prmd-name OBJECT IDENTIFIER ::= {at 10}
  599.    at-x121-address OBJECT IDENTIFIER ::= {at 12}                       30
  600.    at-mhs-terminal-id-name OBJECT IDENTIFIER ::= {at 13}
  601.    at-mhs-numeric-user-id-name  OBJECT IDENTIFIER ::= {at 14}
  602.    at-mhs-surname OBJECT IDENTIFIER ::= {at 15}
  603.    at-mhs-given-name OBJECT IDENTIFIER ::= {at 16}
  604.    at-mhs-initials OBJECT IDENTIFIER ::= {at 17}
  605.    at-mhs-generation-qualifier OBJECT IDENTIFIER ::= {at 18}
  606.  
  607.    Figure 3:  Object Identifier Assignment
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618. Kille                         Experimental                     [Page 11]
  619.  
  620.