home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1838.txt < prev    next >
Text File  |  1996-05-07  |  13KB  |  294 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                           S. Kille Request for Comments: 1838                              ISODE Consortium Category: Experimental                                       August 1995 
  8.  
  9.        Use of the X.500 Directory to support mapping between X.400                          and RFC 822 Addresses 
  10.  
  11. Status of this Memo 
  12.  
  13.    This memo defines an Experimental Protocol for the Internet    community.  This memo does not specify an Internet standard of any    kind.  Discussion and suggestions for improvement are requested.    Distribution of this memo is unlimited. 
  14.  
  15. Abstract 
  16.  
  17.    This document defines how to use directory to support the mapping    between X.400 O/R Addresses and mailboxes defined in RFC 1327 [2]. 
  18.  
  19. 1.  X.400/RFC 822 Mappings 
  20.  
  21.    RFC 1327 defines an algorithm for maintaining a global mapping    between X.400 and RFC 822 addresses directory [2].  RFC 1327 also    defines a table based mechanism for maintaining this mapping.  There    is substantial benefit to maintaining this mapping within the    directory.  In particular, this will lead to an approach for managing    the mapping which is both distributed and scalable. 
  22.  
  23.    Mechanisms for representing O/R Address and Domain hierarchies within    the DIT are defined in [1, 5].  These techniques are used to define    two independent subtrees in the DIT, which contain the mapping    information.  The benefits of this approach are: 
  24.  
  25.    1.  The mapping information is kept in a clearly defined area which        can be widely replicated in an efficient manner.  The tree is        constrained to hold only information needed to support the        mapping.  This is important as gateways need good access to the        entire mapping. 
  26.  
  27.    2.  It facilitates migration from the currently deployed table-based        approach. 
  28.  
  29.    3.  It handles the issues of "missing components" in a natural        manner. 
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  Kille                         Experimental                      [Page 1] 
  36.  RFC 1838             RFC 822/X.400 Mapping by X.500          August 1995 
  37.  
  38.            An alternative approach which is not taken is to locate the           information in the routing subtrees.  The benefits of this           would be: 
  39.  
  40.         o  It is the "natural" location, and will also help to            ensure correct administrative authority for a mapping            definition. 
  41.  
  42.         o  The tree will usually be accessed for routing, and so it            will be efficient for addresses which are being routed. 
  43.  
  44.           This is not done, as the benefits of the approach proposed           are greater. 
  45.  
  46.    There are three mappings, which are represented by two subtrees    located under: 
  47.  
  48.    OU=X.400/RFC 822 Mapping,  O=Internet 
  49.  
  50.    These subtree roots are of object class subtree, and use the    mechanism for representing subtrees defined in [4]. 
  51.  
  52.    X.400 to RFC 822 This table gives the equivalence mapping from X.400        to RFC 822.  There is an O/R Address tree under this.  An example        entry is: 
  53.  
  54.        PRMD=UK.AC, ADMD=Gold 400, C=GB, CN=X.400 to RFC 822,        OU=X.400/RFC 822 Mapping,  O=Internet 
  55.  
  56.     RFC 822 to X.400 There is a domain tree under this.  This table holds        the equivalence mapping from RFC 822 to X.400, and the gateway        mapping defined in RFC 1327.  An example entry is: 
  57.  
  58.        DomainComponent=ISODE, DomainComponent=COM,        CN=RFC 822 to X.400,        OU=X.400/RFC 822 Mapping,  O=Internet 
  59.  
  60.    The values of the table mapping are defined by use of two new object    classes, as specified in Figure 1.  The objects give pointers to the    mapped components. 
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  Kille                         Experimental                      [Page 2] 
  71.  RFC 1838             RFC 822/X.400 Mapping by X.500          August 1995 
  72.  
  73.  2.  Omitted Components 
  74.  
  75.    In RFC 1327, it is possible to have omitted components in O/R    Addresses on either side of the mapping.  A mechanism to represent    such omitted components is defined in Figure 2. 
  76.  
  77.    The attribute at-or-address-component-type is set to the X.500    attribute type associated with the omitted component (e.g., at-prmd-    name).  This mechanism is for use only within the X.400 to RFC 822    subtree and for the at-associated-or-address attribute. 
  78.  
  79. ----------------------------------------------------------------------- rFC822ToX400Mapping OBJECT-CLASS ::= {     SUBCLASS OF {domain-component}     MAY CONTAIN {         associatedORAddress|         associatedX400Gateway}     ID oc-rfc822-to-x400-mapping} 
  80.  
  81. x400ToRFC822Mapping OBJECT-CLASS ::= {     SUBCLASS OF {top}     MAY CONTAIN {                                                   10         associatedDomain}     ID oc-x400-to-rfc822-mapping} 
  82.  
  83.  associatedORAddress ATTRIBUTE ::= {     SUBTYPE OF distinguishedName     SINGLE VALUE     ID at-associated-or-address} 
  84.  
  85.                                                                     20 associatedX400Gateway ATTRIBUTE ::= {     SUBTYPE OF mhs-or-addresses     MULTI VALUE     ID at-associated-x400-gateway} 
  86.  
  87. associatedDomain ATTRIBUTE ::= {     SUBTYPE OF name     WITH SYNTAX caseIgnoreIA5String     SINGLE VALUE     ID at-associated-domain}                                        30 
  88.  
  89.               Figure 1:  ObjectClasses for RFC 1327 mappings 
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  Kille                         Experimental                      [Page 3] 
  96.  RFC 1838             RFC 822/X.400 Mapping by X.500          August 1995 
  97.  
  98.  ----------------------------------------------------------------------- omittedORAddressComponent OBJECT-CLASS ::=         SUBCLASS OF {top}         MUST Contain {                 oRAddressComponentType         }         ID oc-omitted-or-address-component} 
  99.  
  100.  oRAddressComponentType ATTRIBUTE ::= {         SUBTYPE OF  objectIdentifier                                10         SINGLE VALUE         ID at-or-address-component-type} 
  101.  
  102.                 Figure 2:  Omitted O/R Address Component 
  103.  
  104. 3.  Mapping from X.400 to RFC 822 
  105.  
  106.    As an example, consider the mapping from the O/R Address: 
  107.  
  108.    P=UK.AC; A=Gold 400; C=GB 
  109.  
  110.    This would be keyed by the directory entry: 
  111.  
  112.    PRMD=UK.AC, ADMD=Gold 400, C=GB, CN=X.400 to RFC 822,    OU=X.400/RFC 822 Mapping,  O=Internet 
  113.  
  114.    and return the mapping from the associatedDomain attribute, which    gives the domain which this O/R address maps to.  This attribute is    used to define authoritative mappings, which are placed in the open    community tree.  The manager of an RFC 1327 mapping shall make the    appropriate entry. 
  115.  
  116.    Functionally, mapping takes place exactly according to RFC 1327.  The    longest match is found by the following algorithm. 
  117.  
  118.    1.  Take the O/R Address, and derive a directory name.  This will be        the O/R Address as far as the lowest OU. 
  119.  
  120.    2.  Look up the entire name derived from the RFC 1327 key in the in        the X.400 to RFC 822 subtree.  This lookup will either succeed,        or it will fail and indicate the longest possible match, which        can then be looked up. 
  121.  
  122.    3.  Check for an associatedDomain attribute in the matched entry. 
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  Kille                         Experimental                      [Page 4] 
  129.  RFC 1838             RFC 822/X.400 Mapping by X.500          August 1995 
  130.  
  131.     The mapping can always be achieved with two lookups. 
  132.  
  133.    Because of the availability of aliases, some of the table mappings    may be simplified.  In addition, the directory can support mapping    from addresses using the numeric country codes. 
  134.  
  135. 4.  Mapping from RFC 822 to X.400 
  136.  
  137.    There is an analogous structure for mappings in the reverse    direction.  The domain hierarchy is represented in the DIT according    to RFC 1279.  The domain: 
  138.  
  139.    AC.UK 
  140.  
  141.    Is represented in the DIT as: 
  142.  
  143.    DomainComponent=AC, DomainComponent=UK,  CN=RFC 822 to X.400,    OU=X.400/RFC 822 Mapping,  O=Internet 
  144.  
  145.    This has associated with it the attribute associatedORAddress encoded    as a distinguished name with a value: 
  146.  
  147.    PRMD=UK.AC, ADMD=Gold 400, C=GB 
  148.  
  149.    The "table 3" mapping defined in RFC 1327 [2] is provided by the    associatedX400Gateway attribute.  This value may identify multiple    possible associated gateways.  This information is looked up at the    same time as mapped O/R addresses.  In effect, this provides a    fallback mapping, which is found if there is no equivalence mapping.    Because of the nature of the mapping a domain will map to either a    gateway or a domain, but not both.  Thus, there shall never be both    an associatedX400Gateway and associatedORAddress attribute present in    the same entry.  Functionally, mapping takes place exactly according    to RFC 1327.  The longest match is found by the following algorithm. 
  150.  
  151.    1.  Derive a directory name from the domain part of the RFC 822        address. 
  152.  
  153.    2.  Look up this name in the RFC 822 to X.400 subtree to find the        mapped value (either associatedORAddress or        associatedX400Gateway.).  If the lookup fails, the error will        indicate the longest match, which can then be looked up. 
  154.  
  155.    If associatedORAddress is found, this will define the mapped O/R    Address.  The mapping can always be achieved with two lookups.  If an    associatedX400Gateway is present, the address in question will be    encoded as a domain defined attribute, relative to the O/R Address    defined by this attribute.  If multiple associatedX400Gateway 
  156.  
  157.  
  158.  
  159. Kille                         Experimental                      [Page 5] 
  160.  RFC 1838             RFC 822/X.400 Mapping by X.500          August 1995 
  161.  
  162.     attributes are found, the MTA may select the one it chooses to use. 
  163.  
  164.    Because of the availability of aliases, some of the table mappings    may be simplified.  In addition, the directory can support mapping    from addresses using the numeric country codes. 
  165.  
  166. 5.  Acknowledgements 
  167.  
  168.    Acknowledgements for work on this document are given in [3]. 
  169.  
  170. References 
  171.  
  172.    [1] Kille, S. "X.500 and Domains", RFC 1279,        Department of Computer Science, University College London,        November 1991. 
  173.  
  174.    [2] Kille, S., "Mapping between X.400(1988)/ISO 10021 and RFC 822",        RFC 1327, Department of Computer Science, University College        London, May 1992. 
  175.  
  176.    [3] Kille, S., "MHS Use of the X.500 Directory to Support MHS        Routing", RFC 1801, ISODE Consortium, June 1995. 
  177.  
  178.    [4] Kille, S., "Representing Tables and Subtrees in the X.500        Directory", RFC 1837, ISODE Consortium, August 1995. 
  179.  
  180.    [5] Kille, S., "Representing the O/R Address Hierarchy in the X.500        Directory Information Tree", RFC 1836, ISODE Consortium, August        1995. 
  181.  
  182. 6.  Security Considerations 
  183.  
  184.    Security issues are not discussed in this memo. 
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  Kille                         Experimental                      [Page 6] 
  203.  RFC 1838             RFC 822/X.400 Mapping by X.500          August 1995 
  204.  
  205.  7.  Author's Address 
  206.  
  207.    Steve Kille    ISODE Consortium    The Dome    The Square    Richmond    TW9 1DT    England 
  208.  
  209.    Phone:  +44-81-332-9091    Internet EMail:  S.Kille@ISODE.COM 
  210.  
  211.    X.400:  I=S; S=Kille; O=ISODE Consortium; P=ISODE;    A=Mailnet; C=FI; 
  212.  
  213.    UFN: S. Kille, ISODE Consortium, GB 
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  Kille                         Experimental                      [Page 7] 
  248.  RFC 1838             RFC 822/X.400 Mapping by X.500          August 1995 
  249.  
  250.  A  Object Identifier Assignment 
  251.  
  252. ----------------------------------------------------------------------- mhs-ds OBJECT IDENTIFIER ::= {iso(1) org(3) dod(6) internet(1)           private(4) enterprises(1) isode-consortium (453) mhs-ds (7)} 
  253.  
  254. mapping OBJECT IDENTIFIER ::= {mhs-ds 4} 
  255.  
  256. oc OBJECT IDENTIFIER ::= {mapping 1} at OBJECT IDENTIFIER ::= {mapping 2} 
  257.  
  258.  oc-rfc822-to-x400-mapping OBJECT IDENTIFIER ::= {oc 1}              10 oc-x400-to-rfc822-mapping OBJECT IDENTIFIER ::= {oc 2} oc-omitted-or-address-component OBJECT IDENTIFIER ::= {oc 3} 
  259.  
  260. at-associated-or-address OBJECT IDENTIFIER ::= {at 6} at-associated-x400-gateway OBJECT IDENTIFIER ::= {at 3} at-associated-domain OBJECT IDENTIFIER ::= {at 4} at-or-address-component-type OBJECT IDENTIFIER ::= {at 7} 
  261.  
  262. Figure 3:  Object Identifier Assignment 
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292. Kille                         Experimental                      [Page 8] 
  293.  
  294.