home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / drafts / draft_n_r / draft-rfced-info-maruyama-00.txt < prev    next >
Text File  |  1997-01-30  |  12KB  |  348 lines

  1.  
  2. Internet-Draft               Expires: June 1997      Internet-Draft
  3. Network Working Group                                   K. Murakami
  4. Internet-Draft                                          M. Maruyama
  5. Category: Informational                                 NTT Laboratories
  6.                                                         January 1997
  7.  
  8.  
  9.                         IP over MAPOS Version 1
  10.                  <draft-rfced-info-maruyama-00.txt>
  11.  
  12.  
  13. Status of this Memo
  14.  
  15.    This document is an Internet-Draft.Internet-Drafts are working
  16.    documents of the Internet Engineering Task Force (IETF), its areas,
  17.    and its working groups.  Note that other groups may also distribute
  18.    working documents as Internet-Drafts.
  19.  
  20.    Internet-Drafts are draft documents valid for a maximum of six
  21.    months and may be updated, replaced, or obsoleted by other
  22.    documents at any time.  It is inappropriate to use Internet- Drafts
  23.    as reference material or to cite them other than as ``work in
  24.    progress.''
  25.  
  26.    To learn the current status of any Internet-Draft, please check the
  27.    ``1id-abstracts.txt'' listing contained in the Internet- Drafts
  28.    Shadow Directories on ftp.is.co.za (Africa), nic.nordu.net (Europe),
  29.    munnari.oz.au (Pacific Rim), ds.internic.net (US East Coast), or
  30.    ftp.isi.edu (US West Coast).
  31.  
  32.    This document provides information for the Internet community.  This
  33.    memo does not specify an Internet standard of any kind.  Distribution
  34.    of this memo is unlimited.
  35.  
  36.    This memo documents a mechanism for supporting the Internet Protocol
  37.    (IP) on Version 1 of the Multiple Access Protocol over SONET/SDH.
  38.    This protocol is NOT the product of an IETF working group nor is it a
  39.    standards track document.  It has not necessarily benefited from the
  40.    widespread and in-depth community review that standards track
  41.    documents receive.
  42.  
  43. Abstract
  44.  
  45.    This document describes a protocol for transmission of the Internet
  46.    Protocol (IP) over Multiple Access Over SONET/SDH (MAPOS) version 1.
  47.    MAPOS is a link layer protocol and provides multiple access
  48.    capability over SONET/SDH links. IP runs on top of MAPOS. This
  49.    document explains IP datagram encapsulation in HDLC frame of MAPOS,
  50.    and the Address Resolution Protocol (ARP).
  51.  
  52. 1. Introduction
  53.  
  54.    Multiple Access Protocol over SONET/SDH (MAPOS) [1] is a high-speed
  55.    link-layer protocol that provides multiple access capability over
  56.    SONET/SDH. Its frame format is based on the HDLC-like framing [2] for
  57.    PPP.  A component called ``Frame Switch'' [1] allows multiple nodes
  58.    to be connected together in a star topology to form a LAN. Using long
  59.    haul SONET/SDH links, the nodes on such a ``SONET-LAN'' can span over
  60.    a wide geographical area. The Internet Protocol (IP) [3] datagrams
  61.    are transmitted in MAPOS HDLC frames [1].
  62.  
  63.    This document describes a protocol for transmission of IP datagrams
  64.    over MAPOS version 1 [1]. It explains IP datagram encapsulation in
  65.    HDLC frame of MAPOS, and ARP (Address Resolution Protocol) for
  66.    mapping between IP address and HDLC address.
  67.  
  68. 2. Frame Format for Encapsulating IP Datagrams
  69.  
  70.    An IP datagram is transmitted in a MAPOS HDLC frame.  The protocol
  71.    field of the frame must contain the value 0x21 (hexadecimal) as
  72.    defined by the MAPOS Version 1 Assigned Numbers [4].  The information
  73.    field contains the IP datagram.
  74.  
  75.  
  76.  
  77. Murakami, Maruyama                                              [Page 1]
  78.  
  79. Internet-Draft         IP over MAPOS Version 1             January 1997
  80.  
  81.  
  82.    The information field may be one to 65,280 octets in length; the
  83.    MTU(Maximum Transmission Unit) of MAPOS is 65,280 octets.  Although
  84.    the large MTU size can suppress the overhead of IP header processing,
  85.    it may cause fragmentation anywhere along the path from the source to
  86.    the destination and result in performance degradation. To cope with
  87.    the issue, Path MTU discovery [5] may be used.
  88.  
  89. 3. Address Mapping
  90.  
  91.    This section explains MAPOS ARP and the mapping of special addresses.
  92.  
  93. 3.1 ARP cache
  94.  
  95.    Each node on a MAPOS network maintains an ``ARP cache'' that maps
  96.    destination IP addresses to their corresponding 8-bit HDLC addresses.
  97.    Entries are added to this cache either manually or by the Address
  98.    Resolution Protocol described below.  Entries are removed from this
  99.    cache manually, by the UNARP mechanism, or by ARP cache validation
  100.    mechanism.  An implementation must provide a mechanism for manually
  101.    adding or removing arbitrary ARP cache entries.
  102.  
  103. 3.2 Address Resolution Protocol (ARP)
  104.  
  105.    This subsection describes MAPOS ARP protocol and its packet format.
  106.  
  107. 3.2.1 Overview
  108.  
  109.    The MAPOS ARP is similar to that for ethernet.  Prior to sending an
  110.    IP datagram, the node must know the destination HDLC address
  111.    corresponding to the destination IP address. When its ARP cache does
  112.    not contain the corresponding entry, it uses ARP to translate the IP
  113.    address to the HDLC address. That is, it broadcasts an ARP request
  114.    containing the destination IP address.  In response to the request,
  115.    the node which has the IP address sends an ARP reply containing the
  116.    HDLC address. The returned HDLC address is stored in the ARP cache.
  117.  
  118. 3.2.2 ARP Frame Format
  119.  
  120.    The protocol field for an ARP frame must contain 0xfe01 (hexadecimal)
  121.    as defined by the MAPOS Version 1 Assigned Numbers [4]. The
  122.    information field contains the ARP packet as shown below.
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139. Murakami, Maruyama                                              [Page 2]
  140.  
  141. Internet-Draft         IP over MAPOS Version 1             January 1997
  142.  
  143.  
  144.  
  145.            +-------------------------+------------------------+
  146.            |  Hardware Address Space | Protocol Address Space |
  147.            |       (1:ethernet)      |     (2048 in Dec)      |
  148.            |    16 bits              |   16 bits              |
  149.            +------------+------------+------------------------+
  150.            | Hard Addr  | Proto Addr |   Operation Code       |
  151.            | Length (4) | Length (4) |(1:Request 2:Response)  |
  152.            |   8 bits   |   8 bits   |         16 bits        |
  153.            +------------+------------+------------------------+
  154.            |    Sender HDLC Address        32 bits            |
  155.            +--------------------------------------------------+
  156.            |    Sender IP Address          32 bits            |
  157.            +--------------------------------------------------+
  158.            |    Target HDLC Address        32 bits            |
  159.            +--------------------------------------------------+
  160.            |    Target IP Address          32 bits            |
  161.            +--------------------------------------------------+
  162.  
  163.                             Figure 5  ARP packet format
  164.  
  165.  
  166.      Hardware Address Space (16 bits)
  167.  
  168.      MAPOS ARP uses the same value as Ethernet ARP.  The hardware
  169.      address space assigned for Ethernet networks is 1.  ARP packets
  170.      should thus be transmitted with a hardware-type code of 1 and
  171.      should be accepted if and only if its hardware-type code is 1.
  172.  
  173.      Protocol Address Space (16 bits)
  174.  
  175.      The protocol address space for IP is 2048 in Decimal.
  176.  
  177.      Hardware Address Length (8 bits)
  178.  
  179.      The hardware address length is 4.
  180.  
  181.      Protocol Address Length (8 bits)
  182.  
  183.      The protocol address length for IP is 4.
  184.  
  185.      Operation Code (16 bits)
  186.  
  187.      The operation code is 1 for request and 2 for reply.
  188.  
  189.      Sender hardware (HDLC) Address (32 bits)
  190.  
  191.      Contains the sender's HDLC address in an ARP request, and the
  192.      target HDLC address in an ARP response.  The 8-bit HDLC address is
  193.      placed in the least significant place of the 32-bit field. The
  194.      remaining bits should be zero.
  195.  
  196.      Sender Protocol (IP) Address (32 bits)
  197.  
  198.  
  199.  
  200.  
  201. Murakami, Maruyama                                              [Page 3]
  202.  
  203. Internet-Draft         IP over MAPOS Version 1             January 1997
  204.  
  205.  
  206.      Contains the sender's IP address in an ARP request, and the target
  207.      IP address in an ARP response.
  208.  
  209.      Target hardware (HDLC) Address (32 bits)
  210.  
  211.      Contains unknown target HDLC address (all zeros) in an ARP request,
  212.      and sender's HDLC address in an ARP response.  The 8-bit HDLC
  213.      address is placed in the least significant place of the 32-bit
  214.      field.  The remaining bits should be zero.
  215.  
  216.      Target Protocol (IP) Address (32 bits)
  217.  
  218.      Contains the target IP address in an ARP request, and the sender's
  219.      IP address in an ARP response.
  220.  
  221. 3.3 UNARP
  222.  
  223.    An implementation MUST provide an UNARP mechanism to flush obsolete
  224.    ARP cache entries.  The mechanism is similar to the ARP extension
  225.    described in [6].  When a node detects that its port has came up, it
  226.    MUST broadcast an UNARP packet.  It forces every other node to clear
  227.    the obsolete ARP entry which was created by the node previously
  228.    connected to the switch port. An UNARP is an ARP clear request with
  229.    the following values:
  230.  
  231.      Hardware Address Space          :       1
  232.      Protocol Address Space          :       2048
  233.      Hardware Address Length         :       4
  234.      Protocol Address Length         :       4
  235.      Operation Code                  :       3 (clear request)
  236.      Sender hardware (HDLC) Address  :       HDLC address of the node
  237.      Sender Protocol (IP) Address    :       0.0.0.0 (unknown)
  238.      Target hardware (HDLC) Address  :       all 1
  239.      Target Protocol (IP) Address    :       255.255.255.255 (broadcast)
  240.  
  241.    The receiving node of the packet MUST clear the ARP entry
  242.    corresponding to the Sender Hardware (HDLC) Address.
  243.  
  244. 3.4 ARP Cache Validation
  245.  
  246.    An implementation MUST provide a mechanism to remove out-of-date
  247.    cache entries and it SHOULD provide options to configure the timeout
  248.    value [7].  One approach is to periodically time-out the cache
  249.    entries, even if they are in use.  This approach involves ARP cache
  250.    timeouts in the order of a minute or less.
  251.  
  252. 3.5 IP Broadcast and multicast
  253.  
  254.    In broadcast and multicast frames, the most significant bit of the
  255.    HDLC address must be 1 [1].  In addition, the least significant bit
  256.    must always be 1 to indicate the end of the field [1].
  257.  
  258.    In the case of IP broadcast, the remaining six bits of the HDLC
  259.    address must be all 1s.  That is, it should be mapped to the HDLC
  260.  
  261.  
  262.  
  263. Murakami, Maruyama                                              [Page 4]
  264.  
  265. Internet-Draft          IP over MAPOS Version 1             January 1997
  266.  
  267.  
  268.    broadcast address 0xFF (hexadecimal).
  269.  
  270.    In the case of IP multicast, the remaining six bits of the HDLC
  271.    address must contain the lowest-order six bits of the IP multicast
  272.    group address.  It resembles IP multicast extension for ethernet
  273.    described in [8].  Exceptions arise when these six bits are either
  274.    all zeros or all ones, in which case they should be altered to the
  275.    bit sequence 111110.
  276.  
  277. 4. Security Considerations
  278.  
  279.    Security issues are not discussed in this memo.
  280.  
  281. References
  282.  
  283.    [1]   K. Murakami and M. Maruyama, "Multiple Access Protocol over
  284.          SONET/SDH, Version 1," January 1997.
  285.  
  286.    [2]   W. Simpson, editor, "PPP in HDLC-like Framing," RFC-1662,
  287.          July 1994.
  288.  
  289.    [3]   J. Postel, "Internet Protocol (IP)," RFC-791, September 1981.
  290.  
  291.    [4]   M. Maruyama and K. Murakami, "MAPOS Version 1 Assigned
  292.          Numbers,"  January 1997.
  293.  
  294.    [5]   J. Mogul and S. Deering, "Path MTU Discovery," RFC1191,
  295.          Nov.1990
  296.  
  297.    [6]   G. Malkin, "ARP Extension - UNARP," RFC-1868, November 1995.
  298.  
  299.    [7]   R. Braden, "Requirements for Internet Hosts - Communication
  300.          Layers," RFC-1122, October 1989.
  301.  
  302.    [8]   S. Deering, "Host Extensions for IP Multicasting," RFC-1112,
  303.          August 1989.
  304.  
  305. Acknowledgements
  306.  
  307.    The authors would like to acknowledge the contributions and thoughtful
  308.    suggestions of John P. Mullaney, Clark Bremer, Masayuki Kobayashi,
  309.    Paul Francis, Toshiaki Yoshida, and Takahiro Sajima.
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326. Murakami, Maruyama                                              [Page 5]
  327.  
  328. Internet-Draft          IP over MAPOS Version 1             January 1997
  329.  
  330.  
  331. Author's Address
  332.  
  333.      Ken Murakami
  334.      NTT Software Laboratories
  335.      3-9-11, Midori-cho
  336.      Musashino-shi
  337.      Tokyo-180, Japan
  338.      E-mail: murakami@ntt-20.ecl.net
  339.  
  340.      Mitsuru Maruyama
  341.      NTT Software Laboratories
  342.      3-9-11, Midori-cho
  343.      Musashino-shi
  344.      Tokyo-180, Japan
  345.      E-mail: mitsuru@ntt-20.ecl.net
  346.  
  347. Internet-Draft            Expires: June 1997     Internet-Draft
  348.