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

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                           K. Smith Request For Comments: 1934                         Ascend Communications Category: Informational                                       April 1996 
  8.  
  9.                   Ascend's Multilink Protocol Plus (MP+) 
  10.  
  11. Status of This Memo 
  12.  
  13.    This memo provides information for the Internet community.  This memo    does not specify an Internet standard of any kind.  Distribution of    this memo is unlimited. 
  14.  
  15. Abstract 
  16.  
  17.    This document proposes an extension to the PPP Multilink Protocol    (MP) [1]. Multilink Protocol Plus (MP+) is a new control protocol for    managing multiple data links that are bundled by MP. 
  18.  
  19. Table Of Contents 
  20.  
  21. 1.      Introduction.................................................2         1.1     Functional Description...............................2         1.2     Conventions..........................................3 2.      General Overview.............................................3         2.1     Operation............................................4 3.      MP+ Frame Formats............................................4         3.1     Error Control (EC) Layer.............................6                 3.1.1   Error Control State Machine..................7         3.2     Multilink Plus Control Messages......................9         3.3     Multilink Plus Message Formats......................10                 3.3.1   VERSION_EXCHANGE_REQ Message Format.........10                 3.3.2   VERSION_EXCHANGE_RSP Message Format.........12                 3.3.3   ADD_REQ Message Format......................13                 3.3.4   ADD_RSP Message Format......................15                 3.3.5   ADD_COMPLETE Message Format.................16                 3.3.6   REMOVE_REQ Message Format...................17                 3.3.7   REMOVE_RSP Message Format...................17                 3.3.8   REMOVE_COMPLETE Message Format..............18                 3.3.9   CLOSE_REQ Message Format....................19                 3.3.10  CLOSE_RSP Message Format....................19                 3.3.11  REMOTE_MGMT_REQ Message Format..............20                 3.3.12  REMOTE_MGMT_RSP Message Format..............20                 3.3.13  REMOTE_MGMT_RX_REQ Message Format...........21                 3.3.14  REMOTE_MGMT_TX_REQ Message Format...........22                 3.3.15  REMOTE_MGMT_TX_RSP Message Format...........22                 3.3.16  CLEAR_REQ Message Format....................23         3.4     Events..............................................23 
  22.  
  23.  
  24.  
  25. Smith                        Informational                      [Page 1] 
  26.  RFC 1934                Multilink Protocol Plus               April 1996 
  27.  
  28.          3.5     State Machine.......................................25                 3.5.1   States......................................25                 3.5.2   Common Actions..............................26                 3.5.3   MP+STATE_INITIAL state machine..............32                 3.5.4   MP+STATE_IDLE state machine.................35                 3.5.5   MP+STATE_ADD state machine..................37                 3.5.6   MP+STATE_REMOVE state machine...............41                 3.5.7   MP+STATE_CLOSE state machine................44 4.      PPP LCP Extensions..........................................46 5.      Security Considerations.....................................47 6.      References..................................................47 7.      Author's Address............................................47 
  29.  
  30. 1. Introduction 
  31.  
  32.    The PPP Multilink Protocol (MP), is a set of features that provide    inverse multiplexing at the packet/fragment level by bundling    multiple independent links between a fixed pair of systems, providing    a virtual link with greater bandwidth than any of the constituent    members. 
  33.  
  34.    Once multiple channels have been established  MP is responsible for    managing channel use to insure in-sequence delivery of user packets. 
  35.  
  36.    MP+ is an extension to MP that adds an inband control channel to    provide a new level of session management and control. 
  37.  
  38.    MP+ also allows remote device management of (unconfigured) systems.    This feature allows a network operations center to dial into an    unconfigured system and remotely manage it, before ethernet    interface, IP address, and other LCP and system configuration    information is entered.  (This does require local configuration of    the WAN interfaces to the extent required to answer an incoming    call). 
  39.  
  40. 1.1 Functional Description 
  41.  
  42.    The features of MP+ include: 
  43.  
  44.    * Ability to negotiate to add and subtract channels when bandwidth      needs change. 
  45.  
  46.    * Phone number management so calling stations need not know every      possible number; answering stations can manage their own resources. 
  47.  
  48.    * A simple remote management interface. 
  49.  
  50.  
  51.  
  52.  
  53.  
  54. Smith                        Informational                      [Page 2] 
  55.  RFC 1934                Multilink Protocol Plus               April 1996 
  56.  
  57.     To perform the above functions  MP+ is split into a call management    layer and a reliable delivery layer.  The call management layer is    the source and sink of  MP+ control messages.  The reliable delivery    layer adds a simple acknowledge and retry mechanism. 
  58.  
  59.    MP+ only takes network bandwidth when in the process of performing a    user request, e.g. adding and subtracting bandwidth. 
  60.  
  61.    NOTE: Neither MP, or MP+ define the process that makes the bandwidth    requirement determination. That is outside the scope of either of    these protocols and will likely be implementation dependent. 
  62.  
  63. 1.2  Conventions 
  64.  
  65.    The following language conventions are used in the items of    specification in this document: 
  66.  
  67.       MUST,  SHALL or  MANDATORY -- the item is an absolute requirement       of the specification. 
  68.  
  69.       SHOULD or RECOMMENDED --   the item should generally be followed       for all but exceptional circumstances. 
  70.  
  71.       MAY or OPTIONAL --  the item is truly optional and may be followed       or ignored according to the needs of the implementor. 
  72.  
  73. 2.  General Overview 
  74.  
  75.    PPP       In order to establish communications over a point-to-point link,       each end of the PPP [2] link must first send LCP packets to       configure the data link during  link establishment  phase.  After       the link has been established, PPP provides for an  authentication       phase. 
  76.  
  77.    MP The goal of multilink operation is to  bundle  multiple       independent links between a fixed pair of systems, providing a       virtual link with greater bandwidth than any of the constituent       members. 
  78.  
  79.    MP+ MP+ is also negotiated during initial LCP option negotiation.  A       system indicates to its peer that it is willing to do MP+ by       sending the  MP+ option as part of the initial LCP option       negotiation.  The  MP+  option MUST NOT be negotiated unless MP is       also negotiated. When used, MP+ adds a virtual unit-to-unit       control channel. 
  80.  
  81.    A peer may elect to: 
  82.  
  83.  
  84.  
  85. Smith                        Informational                      [Page 3] 
  86.  RFC 1934                Multilink Protocol Plus               April 1996 
  87.  
  88.     Acknowledge both the MP and MP+ options, indicating that both MP and    MP+ will be used. 
  89.  
  90.    Acknowledge the MP option and reject the MP+ option. Operation will    fall back to MP. 
  91.  
  92.    Reject both options.  Standard PPP will be used for this connection. 
  93.  
  94. 2.1. Operation 
  95.  
  96.    Standard PPP       In standard PPP the LCP negotiation phase is followed by an       optional authentication phase, and then one or more NCPs are       initiated. 
  97.  
  98.    PPP with MP The LCP negotiation phase and authentication phase are       identical to standard PPP.  The ability to initiate an MP       aggregate data link is indicated by sending an MP option - as       described in [1]. 
  99.  
  100.    PPP with MP and MP+ When MP+ is negotiated at LCP startup, the same       procedures are followed as when MP is negotiated alone.  The MP+       LCP option is negotiated to indicate the ability to use the MP+       feature.The first connection between endpoints causes the MP+       process to be started for the connection. 
  101.  
  102. 3.  MP+ Frame Formats 
  103.  
  104.                     +---------------+---------------+        PPP Header:  | Address 0xff  | Control 0x03  |                     +---------------+---------------+                     | PID(H)  0x00  | PID(L)  0x73  |                     +-+-+-+-+-------+---------------+        MP Header:   |1|1|0|0|0|0|0|1| seq # high    |                     +-+-+-+-+-------+---------------+                     |   sequence number low bits    |                     +---------------+---------------+                     |         control data          |                     |               .               |                     |               .               |                     |               .               |                     +---------------+---------------+        PPP FCS:     |              FCS              |                     +---------------+---------------+ 
  105.  
  106.    Figure 1: Multilink Plus Frame Format (long sequence number format) 
  107.  
  108.  
  109.  
  110.  
  111.  
  112. Smith                        Informational                      [Page 4] 
  113.  RFC 1934                Multilink Protocol Plus               April 1996 
  114.  
  115.                      +---------------+---------------+        PPP Header:  | Address 0xff  | Control 0x03  |                     +---------------+---------------+                     | PID(H)  0x00  | PID(L)  0x73  |                     +-+-+-+-+-------+---------------+        MP Header:   |1|1|0|1|  sequence number      |                     +-+-+-+-+-------+---------------+                     |         control data          |                     |               .               |                     |               .               |                     |               .               |                     +---------------+---------------+        PPP FCS:     |              FCS              |                     +---------------+---------------+ 
  116.  
  117.    Figure 2: Multilink Plus Frame Format (short sequence number format) 
  118.  
  119.    MP+ frames use a similar structure to MP fragments. 
  120.  
  121.    The MP+ assigned PID is designated 00 73. 
  122.  
  123.    MP+ control uses the following two rules: 
  124.  
  125.   - MP+ control frames have their own sequence number space,     controlled by MP+. 
  126.  
  127.   - MP+ control frames MUST NOT be fragmented. 
  128.  
  129. NOTE: Implementations of this protocol prior to the date of submission       of this specification to the IETF use the same PID as MP, but       sets the LSB of the reserved bits in the MP header to 1 - this       is how the MP+ packets are discriminated from MP fragments.       So the header of the MP+ packet looks like: 
  130.  
  131.                 00 3d c1 ...... 
  132.  
  133.       As compared to an MP packet that looks like: 
  134.  
  135.                 00 3d c0 ......  or                 00 3d 80 ......  or                 00 3d 40 ...... 
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  Smith                        Informational                      [Page 5] 
  146.  RFC 1934                Multilink Protocol Plus               April 1996 
  147.  
  148.  3.1. Error Control (EC) Layer (MP+ control only) 
  149.  
  150.    The error control layer that runs over the virtual inband channel is    as simple as it can get, while handling the possibility of errors on    the line. 
  151.  
  152.    An assumption is made that errors are infrequent, and that at the    same time messages are rarely, if ever, dropped on the floor. The    implication of this is that "timing out" on retransmission of    messages does no harm.  If a message cannot get through, then it    simply is retried some number of times.  After giving up, the only    recourse is to notify the call management layer (of MP) that the    session has died. 
  153.  
  154.                     +---------------+---------------+        PPP Header:  | Address 0xff  | Control 0x03  |                     +---------------+---------------+                     | PID(H)  0x00  | PID(L)  0x73  |                     +-+-+-+-+-------+---------------+        MP+ Header:  |1|1|0|0|0|0|0|1| seq # high    |                     +-+-+-+-+-------+---------------+                     |   sequence number low bits    |                     +---------------+---------------+         EC Header:  | Error Control Message Type    |                     |   32 bits reserved            |                     +---------------+---------------+          MP+ Data:  |    MP+ Message                |  May not be                     |                               |  present. 
  155.  
  156.    Figure 3: MP+ control message format (shown long sequence number              format) 
  157.  
  158.   Error Control Message Type: 
  159.  
  160.    1      DATA_MSG:         This message contains MP+ data transferred                             between the peers. 
  161.  
  162.    2      ACK_MSG:          An acknowledgement of a previous data message. 
  163.  
  164.    When set to DATA_MSG, the remainder of the frame contains an MP+    Control message. 
  165.  
  166.    When set to ACK_MSG, the remainder of the frame consists only of the    PPP Frame Check Sum (FCS). 
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174. Smith                        Informational                      [Page 6] 
  175.  RFC 1934                Multilink Protocol Plus               April 1996 
  176.  
  177.  3.1.1. Error Control State Machine 
  178.  
  179.    This layer is controlled by a simple state machine.  There are three    states: 
  180.  
  181.    Stopped        There is no connection between peers. 
  182.  
  183.    Idle           There is a connection between peers;                   no unacknowledged messages pending. 
  184.  
  185.    Pending        There is a connection between peers;                   awaiting an acknowledgement to the                   last message sent. 
  186.  
  187.    Messages from the call management layer are queued for transmission    whenever the link is in the  pending  state.  For simplicity, only    one outstanding message may be in the link at any given time.  The    entire procedure is defined in table 1. 
  188.  
  189. Event                           State ______________________________________________________________________                                 Stopped    Idle         Pending ====================================================================== Start                           1,Idle     -,*          -,* ______________________________________________________________________ Received ACK_MSG                **         2,Start      5,Idle|Pending current tx sequence number ______________________________________________________________________ Received ACK_MSG                **         -,*          -,* last tx sequence number ______________________________________________________________________ Received ACK_MSG                **         2,Start      2,Start other tx sequence number ______________________________________________________________________ Received DATA_MSG               **         6,*          6,* current rx sequence number ______________________________________________________________________ Received DATA_MSG               **         7,*          7,* previous rx sequence number ______________________________________________________________________ Received DATA_MSG               **         2,Start      2,Start other rx sequence number ______________________________________________________________________ Receive Invalid Frame           **         2,Start      2,Start ______________________________________________________________________ Retransmit Timer Expire         **         **           4,Start|* ______________________________________________________________________ 
  190.  
  191.  
  192.  
  193.  Smith                        Informational                      [Page 7] 
  194.  RFC 1934                Multilink Protocol Plus               April 1996 
  195.  
  196.  ______________________________________________________________________ Transmit Request from call      -,*        3,Pending    8,* management layer ______________________________________________________________________ Stop                            9,Start    9,Start      9,Start ______________________________________________________________________ 
  197.  
  198.                   Table 1: Error Control State Machine 
  199.  
  200. Legend: 
  201.  
  202.         -       No action 
  203.  
  204.         *       Stay in same state 
  205.  
  206.         **      Invalid or meaningless event for state, ignored. 
  207.  
  208. Notes: 
  209.  
  210.    [1] Data from the call management layer will always be copied before        being queued for transmission.  The call management layer is        responsible for its own buffers. 
  211.  
  212.    [2] MP always copies data for transmission and returns immediately.        Any buffers allocated to build control messages MUST be released        immediately upon return from MP transmission requests. 
  213.  
  214. Actions: 
  215.  
  216.    1       Reset rx sequence number            Reset tx sequence number            Reset tx retransmit count            Stop retransmit timer 
  217.  
  218.    2       Report error to user            Stop retransmit timer            Stop frame transmit timer            Free buffers 
  219.  
  220.    3       Save call management message in pending transmit queue            Build DATA_MSG from first message in pending transmit            queue using current tx sequence number.            Send message to MP for transmission.            Reset tx retransmit count 
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228. Smith                        Informational                      [Page 8] 
  229.  RFC 1934                Multilink Protocol Plus               April 1996 
  230.  
  231.     4       Increment tx retransmit count            If tx retransmit count >= RETRANSMIT_COUNT                    Action 2 (followed by state change to the Start state)            else                    Build DATA_MSG from first message in pending                    transmit queue using current tx sequence number.                    Send message to MP for transmission. 
  232.  
  233.    5       Dequeue first element on pending transmit queue and release            its buffer            Increment the tx sequence number            Stop the retransmit timer            if pending transmit queue not empty                    Build DATA_MSG from first message in pending                    transmit queue using current tx sequence number.                    Send message to MP for transmission.                    Reset tx retransmit count 
  234.  
  235.    6       Build ACK_MSG using the current rx sequence number            Send ack message to MP for transmission            Pass message to call managment layer            Increment rx sequence number 
  236.  
  237.    7       Build ACK_MSG using the previous rx sequence number            Send the ack message to MP for transmission 
  238.  
  239.    8       Add the message to the end of the pending transmit queue 
  240.  
  241.    9       Stop retransmit timer            Free buffers 
  242.  
  243. 3.2. Multilink Plus Control Messages 
  244.  
  245.     Message Type                Value     VERSION_EXCHANGE_REQ        1     VERSION_EXCHANGE_RSP        2     ADD_REQ                     3     ADD_RSP                     4     ADD_COMPLETE                5     REMOVE_REQ                  6     REMOVE_RSP                  7     REMOVE_COMPLETE             8     CLOSE_REQ                   9     CLOSE_RSP                   10     REMOTE_MGMT_REQ             11     REMOTE_MGMT_RSP             12     REMOTE_MGMT_RX_REQ          13     REMOTE_MGMT_TX_REQ          14 
  246.  
  247.  
  248.  
  249. Smith                        Informational                      [Page 9] 
  250.  RFC 1934                Multilink Protocol Plus               April 1996 
  251.  
  252.      REMOTE_MGMT_TX_RSP          15     CLEAR_REQ                   16 
  253.  
  254. 3.3. Multilink Plus Message Formats 
  255.  
  256.    The fields of all messages defined here MUST be encoded/decoded in    Network Byte Order (big endian). 
  257.  
  258. 3.3.1. VERSION_EXCHANGE_REQ Message Format 
  259.  
  260.    The version exchange message is sent by the call originator to inform    the answerer the version of the MP+ protocol being used as well as    any other information that may need to be conveyed outside of the    normal PPP parameter negotiation. 
  261.  
  262.    +---------------+---------------+    |         Message type          |    |          0x00000001           |    +---------------+---------------+    |       Protocol Version        |    +---------------+---------------+    |      Protocol Revision        |    +---------------+---------------+    |       Session Identifier      |    +---------------+---------------+    |         Hardware Type         |    +---------------+---------------+    |          Nailed Mode          |    +---------------+---------------+    |   Use Multiple Trunk Groups   |    +---------------+---------------+    |       Descriptor Length       |    +---------------+---------------+    |          Descriptor           |    +---------------+---------------+ 
  263.  
  264.    Figure 4:  Version Exchange Request 
  265.  
  266.    A message sent from call originator to call answerer specifying the    callers protocol version and other state info and requesting the    answerer to respond with its version info. 
  267.  
  268.    Protocol Version:            caller MP+ protocol version number.            2 octets fixed length (initially 1) 
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  Smith                        Informational                     [Page 10] 
  275.  RFC 1934                Multilink Protocol Plus               April 1996 
  276.  
  277.     Protocol Revision:            caller MP+ protocol revision number.            2 octets fixed length (initially 4) 
  278.  
  279.    Session Identifier:            A non-zero identifier unique to the caller.            2 octets fixed length. 
  280.  
  281.    Hardware Type:            caller hardware type (can be vendor defined).            2 octets fixed length. 
  282.  
  283.    Nailed Mode:            caller nailed mode from the session profile.            2 octets fixed length. 
  284.  
  285.    Use Multiple Trunk Groups:            non-zero if the call may use channels from multiple trunk            groups.            2 octets fixed length 
  286.  
  287.    Descriptor Length:            length of the end point descriptor.            2 octets fixed length 
  288.  
  289.    Descriptor:            the end point descriptor. This field allows for vendor            specific identification of the peer.            Variable length as defined above. 
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  Smith                        Informational                     [Page 11] 
  312.  RFC 1934                Multilink Protocol Plus               April 1996 
  313.  
  314.  3.3.2. VERSION_EXCHANGE_RSP Message Format 
  315.  
  316.    The version exchange response message is sent by the call answerer in    response to a version exchange request message.   The answerer uses    the message to inform the caller the version of the MP+ protocol    being used as well as any other information that needs to be conveyed    outside of the normal PPP parameter negotiation. 
  317.  
  318.    +---------------+---------------+    |         Message type          |    |          0x00000002           |    +---------------+---------------+    |      Protocol Version         |    +---------------+---------------+    |     Protocol Revision         |    +---------------+---------------+    |       Session Identifier      |    +---------------+---------------+    |         Hardware Type         |    +---------------+---------------+    |          Nailed Mode          |    +---------------+---------------+    |   Use Multiple Trunk Groups   |    +---------------+---------------+    |       Descriptor Length       |    +---------------+---------------+    |         Descriptor            |    +---------------+---------------+ 
  319.  
  320.    Figure 5: Version Exchange Response 
  321.  
  322.    A message sent from call answerer to the call originator specifying    the answerers protocol version and other state info.  Sent in    response to receiving a version exchange request. 
  323.  
  324.    Protocol Version:            caller MP+ protocol version number.            2 octets fixed length (initially 1) 
  325.  
  326.    Protocol Revision:            caller MP+ protocol revision number.            2 octets fixed length (initially 4) 
  327.  
  328.    Session Identifier:            A non-zero identifier unique to the answerer.            2 octets fixed length. 
  329.  
  330.  
  331.  
  332.  
  333.  
  334. Smith                        Informational                     [Page 12] 
  335.  RFC 1934                Multilink Protocol Plus               April 1996 
  336.  
  337.     Hardware Type:            caller hardware type (can be vendor defined).            2 octets fixed length. 
  338.  
  339.    Nailed Mode:            caller nailed mode from the session profile.            2 octets fixed length. 
  340.  
  341.    Use Multiple Trunk Groups:            non-zero if call may use channels from multiple trunk groups.            2 octets fixed length 
  342.  
  343.    Descriptor Length:            length of the remote descriptor in 4-octet units.            2 octets fixed length 
  344.  
  345.    Descriptor:            the remote unit descriptor. This field allows for vendor            specific identification of the peer.            Variable length Nx4 octets long - total length defined above. 
  346.  
  347. 3.3.3. ADD_REQ Message Format 
  348.  
  349.    A message of this type is sent by either caller or answerer to    initiate an increase of bandwidth.  When sent by the caller the    request is asking for permission to dial a certain number of    channels; the response will contain permission and the phone numbers    of the channels to dial.  When sent by the answerer, this message    contains the phone numbers to dial.  The message looks like: 
  350.  
  351.    +---------------+---------------+    |         Message type          |    |          0x00000003           |    +---------------+---------------+    | Number of channels requested  |    +---------------+---------------+    |    Number of phone numbers    |    +---------------+---------------+    |    A phone number list for    |    |      each phone number        |    |               .               |    |               .               |    |               .               |    +---------------+---------------+ 
  352.  
  353.    Figure 6: Add Request 
  354.  
  355.  
  356.  
  357.  
  358.  
  359. Smith                        Informational                     [Page 13] 
  360.  RFC 1934                Multilink Protocol Plus               April 1996 
  361.  
  362.     A message sent by either caller or answerer to request that additional    bandwidth be added to a session. 
  363.  
  364.    Number of channels requested:            The maximum number of channels to add.            2 octets fixed length. 
  365.  
  366.    Number of phone numbers:            The number of phone numbers provided.  This            value will always be zero when the caller            initiates an add and will be at least            Number of channels requested when the answerer            initiates the add.            2 octets fixed length. 
  367.  
  368.    Phone number list:            A list of up to 32 phone number lists            containing the phone numbers to call.            Each description is of fixed length as described below: 
  369.  
  370.            Each phone number is represented by a phone number list.            The format of a phone number list is: 
  371.  
  372.    +---------------+---------------+    |          in use flag          |    +---------------+---------------+    |        call service type      |    +---------------+---------------+    |         Phone number          |    |          20 octets            |    |     plus null terminator      |    |       (21 octet total)        |    |                               |    |                               |    |                               |    |                               |    |                               |    |                               |    |               +---------------+    |               |  Must be 0    |    +---------------+---------------+    |           must be 0           |    +---------------+---------------+ 
  373.  
  374.    Figure 7: Phone number list 
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  Smith                        Informational                     [Page 14] 
  381.  RFC 1934                Multilink Protocol Plus               April 1996 
  382.  
  383.     A structure containing information about a connection within the    system. 
  384.  
  385.    in use flag:            non-zero if the phone number indicated            in this descriptor is currently in use.            2 octets fixed length 
  386.  
  387.    call service type:            Defines the type of service, switched, nailed,            or other, associated with a phone number.            1       Nailed            2       Switched            >=3     Undefined 
  388.  
  389.    Phone number:            The null terminated phone number of this channel.            Fixed length 21 octets. Each octet contains IA5 character            representation of a digit (or #, *). 
  390.  
  391.    Must be 0:            Filler to force alignment to 32-bit boundary. 
  392.  
  393. 3.3.4 ADD_RSP Message Format 
  394.  
  395.    A message of this type gives permission to dial some number of    channels and, when sent by the answerer of the original call, gives    the phone numbers of channels to dial. 
  396.  
  397.    +---------------+---------------+    |         Message type          |    |          0x00000004           |    +---------------+---------------+    |  Number of channels allowed   |    +---------------+---------------+    |    Number of phone numbers    |    +---------------+---------------+    |   A  phone number list for    |    |      each phone number        |    |               .               |    |               .               |    |               .               |    +---------------+---------------+ 
  398.  
  399.    Figure 8: Add Response 
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  Smith                        Informational                     [Page 15] 
  406.  RFC 1934                Multilink Protocol Plus               April 1996 
  407.  
  408.     A message sent by either caller or answerer to indicate the number of    channels that may be added to a session. 
  409.  
  410.    Number of channels allowed:            The actual number of channels to add.  This            may be less than the number requested.            2 octets fixed length. 
  411.  
  412.    Number of phone numbers:            The number of phone numbers provided.  This            value will always be zero when sent by the            caller and will be at least channelCount            when sent by the answerer.            2 octets fixed length. 
  413.  
  414.    Phone number list:            A list of up to 32 phone number lists            containing the phone numbers to call.            Each description is of fixed length as described above. 
  415.  
  416. 3.3.5. ADD_COMPLETE Message Format 
  417.  
  418.    This message is sent by the caller to the answerer after all calls    have been placed.  The message is used to notify the answerer that    the add transaction is complete and it may return to the idle state. 
  419.  
  420.    +---------------+---------------+    |         Message type          |    |          0x00000005           |    +---------------+---------------+    |       Channels added          |    +---------------+---------------+    |          Must be zero         |    +---------------+---------------+ 
  421.  
  422.    Figure 9: Add Complete 
  423.  
  424.    A message sent by caller to indicate the number of channels that were    added successfully. This message was added in MP+ Version 1.1. 
  425.  
  426.    Channels added:            The actual number of channels added.            2 octets fixed length 
  427.  
  428.    Must be zero:            Padding to 32-bit boundary.            2 octets fixed length 
  429.  
  430.  
  431.  
  432.  Smith                        Informational                     [Page 16] 
  433.  RFC 1934                Multilink Protocol Plus               April 1996 
  434.  
  435.  3.3.6. REMOVE_REQ Message Format 
  436.  
  437.    A message of this type is sent when a peer decides, for any reason,    to remove channels from use.  The purpose of the message is to tell    the remote end of the remove and give it a chance to adjust the    number of channels to remove. 
  438.  
  439.    +---------------+---------------+    |         Message type          |    |          0x00000006           |    +---------------+---------------+    | Number of channels to remove  |    +---------------+---------------+    |          Must be zero         |    +---------------+---------------+ 
  440.  
  441.    Figure 10: Remove Request 
  442.  
  443.    A message sent by either caller or answerer to request that bandwidth    be removed from a session. 
  444.  
  445.    Number of channels to remove:            The maximum number of channels to remove.            2 octets fixed length 
  446.  
  447.    Must be zero:            Padding to 32-bit boundary.            2 octets fixed length 
  448.  
  449. 3.3.7. REMOVE_RSP Message Format 
  450.  
  451.    This message is sent in response to a remove request.  The responder    specifies the number of channels that can be removed.  If the    response specifies 0 channels the remove is cancelled. 
  452.  
  453.    +---------------+---------------+    |         Message type          |    |          0x00000007           |    +---------------+---------------+    | Number of channels to remove  |    +---------------+---------------+    |          Must be zero         |    +---------------+---------------+ 
  454.  
  455.    Figure 11: Remove Response 
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  Smith                        Informational                     [Page 17] 
  462.  RFC 1934                Multilink Protocol Plus               April 1996 
  463.  
  464.     A message sent in response to a remove request specifying the number    of channels that the peer agrees can be removed. 
  465.  
  466.    Number of channels to remove:            The maximum number of channels to remove.            May be zero, in which case the remove is            cancelled.            2 octets fixed length 
  467.  
  468.    Must be zero:            Padding to 32-bit boundary.            2 octets fixed length 
  469.  
  470. 3.3.8. REMOVE_COMPLETE Message Format 
  471.  
  472.    This message is sent by the initiator of a remove transaction when    the agreed upon number of channels have been removed.  The message is    used to notify the peer that the remove transaction is complete and    it may return to the idle state. 
  473.  
  474.    +---------------+---------------+    |         Message type          |    |          0x00000008           |    +---------------+---------------+    | Number of channels removed    |    +---------------+---------------+    |          Must be zero         |    +---------------+---------------+ 
  475.  
  476.    Figure 12: Remove Complete 
  477.  
  478.    A message sent by the caller or answerer to indicate how many channels    were actually removed. This message was added in MP+ CM version 1.1. 
  479.  
  480.    Number of channels removed:            The number of channels that were removed.            2 octets fixed length 
  481.  
  482.    Must be zero:            Padding to 32-bit boundary.            2 octets fixed length 
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  Smith                        Informational                     [Page 18] 
  493.  RFC 1934                Multilink Protocol Plus               April 1996 
  494.  
  495.  3.3.9. CLOSE_REQ Message Format 
  496.  
  497.    This message is sent when the peer requests to close the whole    session.  This is typically due to a configuration option that    indicates when a system should request to close the session (an    example being, a link has been idle for greater than a preconfigured    time period). 
  498.  
  499.    +---------------+---------------+    |         Message type          |    |          0x00000009           |    +---------------+---------------+ 
  500.  
  501.    Figure 13: MP+ close request. 
  502.  
  503.    There are no data fields associated with this message. 
  504.  
  505. 3.3.10. CLOSE_RSP Message Format 
  506.  
  507.    If the peer agrees that closing the session is acceptable based on    it's own configuration (an example reject reason would be that the    peer is configured with a *minimum* number of channels to keep    active). 
  508.  
  509.    +---------------+---------------+    |         Message type          |    |          0x0000000a           |    +---------------+---------------+    |          OK To Close          |    +---------------+---------------+    |          Must be zero         |    +---------------+---------------+ 
  510.  
  511.    Figure 14: MP+ close response 
  512.  
  513.    The response to a close request. May be sent by caller or answerer. 
  514.  
  515.    OK To Close:            If non-zero, peer said I can close all channels.            2 octets fixed length 
  516.  
  517.    Must be zero:            Padding to 32-bit boundary.            2 octets fixed length 
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524.  
  525. Smith                        Informational                     [Page 19] 
  526.  RFC 1934                Multilink Protocol Plus               April 1996 
  527.  
  528.  3.3.11. REMOTE_MGMT_REQ Message Format 
  529.  
  530.    This message is sent from a master station to a slave station when    the master wishes to manage the remote station.  The message is also    used to cancel remote management once it's been started. 
  531.  
  532.    +---------------+---------------+    |         Message type          |    |          0x0000000b           |    +---------------+---------------+    |              Mode             |    +---------------+---------------+    |          Must be zero         |    +---------------+---------------+ 
  533.  
  534.    Figure 15: Remote Management Request 
  535.  
  536.    A message sent from master to slave to initiate or clear a remote    management session. 
  537.  
  538.    Mode:            One to start session. Zero to stop session.            2 octets fixed length 
  539.  
  540.    Must be zero:            Padding to 32-bit boundary.            2 octets fixed length 
  541.  
  542. 3.3.12. REMOTE_MGMT_RSP Message Format 
  543.  
  544.    The slave side of a remote management session has the opportunity to    reject remote management.  The master side is informed of accept/deny    status via the remote management response. 
  545.  
  546.    +---------------+---------------+    |         Message type          |    |          0x0000000c           |    +---------------+---------------+    |              Mode             |    +---------------+---------------+ 
  547.  
  548.    Figure 16: Remote Management Response 
  549.  
  550.    A message sent from slave to master to allow or deny initiation of a    remote management session. 
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  Smith                        Informational                     [Page 20] 
  557.  RFC 1934                Multilink Protocol Plus               April 1996 
  558.  
  559.     Mode:            One to accept session. Zero to deny session.            2 octets fixed length 
  560.  
  561.    Must be zero:            Padding to 32-bit boundary.            2 octets fixed length 
  562.  
  563. 3.3.13. REMOTE_MGMT_RX_REQ Message Format 
  564.  
  565.    This message type is used to convey keyboard input from the    management master to be processed by the management slave.  The    message format consists of an octet count (in network byte order) and    then an array of octets to be processed.  It looks like: 
  566.  
  567.    +---------------+---------------+    |         Message type          |    |          0x0000000d           |    +---------------+---------------+    |         character count       |    +---------------+---------------+    |      array of characters      |    |               .               |    |               .               |    |               .               |    +---------------+---------------+ 
  568.  
  569.    Figure 17: Remote Management Receive Request 
  570.  
  571.    A message sent from master to slave, conveying keystrokes typed on the    masters keyboard that will be processed by the slave. 
  572.  
  573.    character count:            Number of characters to process.            2 octets fixed length 
  574.  
  575.    array of characters:            Array of characters to process. 
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589. Smith                        Informational                     [Page 21] 
  590.  RFC 1934                Multilink Protocol Plus               April 1996 
  591.  
  592.  3.3.14. REMOTE_MGMT_TX_REQ Message Format 
  593.  
  594.    The remote management slave conveys output to be displayed on the    masters terminal with a remote management transmit request message.    Only one message may be outstanding.  The next transmit request may    not be sent until the previous has been acknowledged. 
  595.  
  596.    +---------------+---------------+    |         Message type          |    |          0x0000000e           |    +---------------+---------------+    |         character count       |    +---------------+---------------+    |      array of characters      |    |               .               |    |               .               |    |               .               |    +---------------+---------------+ 
  597.  
  598.    Figure 18: Remote Management Transmit Request 
  599.  
  600.    A message sent from slave to master, conveying output to be output on    the master's display. 
  601.  
  602.    Character count:            Number of characters to process.            2 octets fixed length 
  603.  
  604.    array of characters:            Array of characters to process. 
  605.  
  606. 3.3.15. REMOTE_MGMT_TX_RSP Message Format 
  607.  
  608.    This message is used to acknowledge remote management transmit    requests.  The slave may send the next transmit request once this    message has been received. 
  609.  
  610.    +---------------+---------------+    |         Message type          |    |          0x0000000f           |    +---------------+---------------+ 
  611.  
  612.    Figure 19: Remote Management Transmit Response 
  613.  
  614.    There are no data fields associated with this message. 
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  Smith                        Informational                     [Page 22] 
  621.  RFC 1934                Multilink Protocol Plus               April 1996 
  622.  
  623.  3.3.16. CLEAR_REQ Message Format 
  624.  
  625.    A message sent to initiate a friendly shutdown of an  MP+ link.  The    sender will stop sending data immediately.  The receiver of the    message will also stop sending user data and start a clean shutdown    of all NCPs and the LCP of each member link of the bundle.  When the    last member link terminates, the session is completely closed. 
  626.  
  627.    +---------------+---------------+    |         Message type          |    |          0x00000010           |    +---------------+---------------+ 
  628.  
  629.    Figure 20: Clear Request 
  630.  
  631.    There are no data fields associated with this message. 
  632.  
  633. 3.4. Events 
  634.  
  635.    The MP+ state machine is event driven. Reception of an event triggers    an action and possibly a state change. The events processed by the    MP+ state machine can be roughly classed into two types: 
  636.  
  637.       Events that originate within the unit, e.g. notification that a       call has cleared, an  MP+ session may be started, etc. 
  638.  
  639.       Events that originate with the reception of an  MP+ control       message from the peer unit. 
  640.  
  641.    Both types are processed by the state machine in the sequence they    occurred. The events processed are: 
  642.  
  643.    MP+START_SESSION:    Notification from PPP/MP that an                         MP+ session is starting. 
  644.  
  645.    MP+SESSION_DOWN:     Notification from the error-control                         layer that end-to-end connectivity                         has been lost and control messages can                         not be delivered. 
  646.  
  647.    MP+SESSION_TERM:     Session termination notification from                         PPP/MP.  This event is not sent until                         the last channel of a multi-channel                         session is cleared. 
  648.  
  649.    MP+TIMER_EXPIRED:    Timers are used in various states and                         sub-states.  This event is signaled whenever                         a timer expires. 
  650.  
  651.  
  652.  
  653. Smith                        Informational                     [Page 23] 
  654.  RFC 1934                Multilink Protocol Plus               April 1996 
  655.  
  656.  
  657.  
  658.    MP+CALL_COMPLETE:    A call placed during an add request has                         completed.  The call may have succeeded or                         failed. 
  659.  
  660.    MP+UTILIZATION:      Notification from MP/PPP that link                         utilization has crossed a threshold and that                         channels may need to be added/removed.                         (The number of channels to add/remove will be                          passed with the notification). 
  661.  
  662.    MP+RX_VERSION_REQ:   A Version Exchange request message has                         been received from the peer. 
  663.  
  664.    MP+RX_VERSION_RSP:   A Version Exchange response message has                         been received from the peer. 
  665.  
  666.    MP+ADD_REQ:          An Add request message has been received                         from the peer. 
  667.  
  668.    MP+ADD_RSP:          An Add response message has been received                         from the peer. 
  669.  
  670.    MP+ADD_COMP:         An Add Complete message has been received                         from the peer. 
  671.  
  672.     MP+REMOVE_REQ:       A Remove request message has been received                         from the peer. 
  673.  
  674.    MP+REMOVE_RSP:       A Remove response message has been                         received from the peer. 
  675.  
  676.    MP+REMOVE_COMP:      A Remove Complete message has been received                         from the peer. 
  677.  
  678.    MP+RX_RM_REQ:        A Remote Management request has been received                         from the peer. 
  679.  
  680.    MP+RX_RM_RSP:        A Remote Management response has been received                         from the peer. 
  681.  
  682.    MP+RX_RM_RX_REQ:     A Remote Management Receive Request has been                         received from the far end. 
  683.  
  684.    MP+RX_RM_TX_REQ:     A Remote Management Transmit Request has                         been received from the peer. 
  685.  
  686.  
  687.  
  688.  Smith                        Informational                     [Page 24] 
  689.  RFC 1934                Multilink Protocol Plus               April 1996 
  690.  
  691.     MP+RX_RM_TX_RSP:     A Remote Management Transmit Response has                         been received from the peer. 
  692.  
  693.    MP+RX_CLEAR:         A request to shut down the session has been                         received from the peer. 
  694.  
  695.    MP+CLOSE_REQ:        A Close Request message has been received                         from the peer. 
  696.  
  697.    MP+CLOSE_RSP:        A Close Response message has been received                         from the peer. 
  698.  
  699.    MP+START_RM          Request to start a remote management session                         with this station being the master. 
  700.  
  701.    MP+SEND_RMS:         Request to send data to a remote management                         master from a slave. 
  702.  
  703.    MP+SEND_RMM:         Request to send data to a remote management                         slave from a master. 
  704.  
  705.    MP+RECV_RMM:         Request to send an ack to a remote management                         slave for data received from the slave. 
  706.  
  707.    MP+STOP_RM:          Request to stop a remote management session. 
  708.  
  709. 3.5. State Machine 
  710.  
  711. 3.5.1 States 
  712.  
  713.    To ease readability and understanding the major states are considered    as separate state machines, each having two to four sub-states. The    sub-states are named by the letters, A, B, C, and D. State    information is maintained for every interface. 
  714.  
  715.    The major states are: 
  716.  
  717.    MP+STATE_INITIAL: The state of an unused session. Session table                      entries are intialized to this state at startup                      and return to this state when sessions are                      terminated. 
  718.  
  719.    MP+STATE_IDLE:    The state of an active session that is not                      performing any MP+ function. 
  720.  
  721.    MP+STATE_ADD:     The state of a session when an add transaction is                      in progress. 
  722.  
  723.  
  724.  
  725.  Smith                        Informational                     [Page 25] 
  726.  RFC 1934                Multilink Protocol Plus               April 1996 
  727.  
  728.     MP+STATE_REMOVE:  The state of a session when a remove transaction is                      in progress. 
  729.  
  730.    MP+STATE_CLOSE:   The state of a session that is in the process of                      being closed. 
  731.  
  732.    State transitions are triggered by the reception of an event.  Tables    2 through 6 contain the state tables for the major states.  All state    tables use the following symbols. 
  733.  
  734.         -       No action 
  735.  
  736.         *       Stay in same state 
  737.  
  738.         +       Target state is defined by the action taken 
  739.  
  740.         **      An error has occurred, log an error message but no                 state change. 
  741.  
  742.    States and sub-state transitions are noted as state:sub-state, e.g.,    initial:A.  Alternative transitions are listed on separate lines. 
  743.  
  744. 3.5.2 Common Actions 
  745.  
  746.    Some actions are common to all states, they are defined here. 
  747.  
  748. Error Close Action 
  749.  
  750.         Called to close a session when an error occurs. Actions are: 
  751.  
  752.         [1]  Stop timer if running. 
  753.  
  754.         [2]  Log an error message. 
  755.  
  756.         [3]  Close the MP+EC layer for this session. 
  757.  
  758.         [4]  Close MP for this session 
  759.  
  760.         [5]  Clean up, restore state variables to their initial state. 
  761.  
  762. Term Action 
  763.  
  764.         Processed when a MP+SESSION_TERM event occurs in most states.         Actions are: 
  765.  
  766.         [1]  Stop timer if running. 
  767.  
  768.         [2]  Close the  MP+EC layer for this session. 
  769.  
  770.  
  771.  
  772. Smith                        Informational                     [Page 26] 
  773.  RFC 1934                Multilink Protocol Plus               April 1996 
  774.  
  775.          [3]  Call the passed termination callback function if not null. 
  776.  
  777.         [4]  Clean up, restore state variables to their initial state. 
  778.  
  779. Ignore Action 
  780.  
  781.         We don't care about this event in this state.  Do nothing. 
  782.  
  783. Timer Action 
  784.  
  785.         This action is called when a timer expires in one of the on-line         states. The timer is used to implement add and remove locks.  A         lock is set when an add or remove fails and is not cleared until         a bandwidth change or the timer expires. This keeps us from         retrying add's and subtracts until there is a likelyhood that it         will succeed. 
  786.  
  787.         [1]  Check add lock flag. 
  788.  
  789.                 [1] If set an add lock occured last timeout period so                 triple the timeout value (to a max of 81 minutes). 
  790.  
  791.                 [2] If not set restore the timeout value to its initial                 value of one minute. 
  792.  
  793.         [2]  Clear the add lock flag. 
  794.  
  795.         [3]  Clear the remove lock flag. 
  796.  
  797.         [4]  Restart the retry timer. 
  798.  
  799. Enter Remove [local] Action 
  800.  
  801.         The local unit is initiating a remove transaction. The desired         bandwidth is given. 
  802.  
  803.         [1]  Restart the idle timer. 
  804.  
  805.         [2]  Calculate number of channels to remove (difference between         number in use and number in desired). 
  806.  
  807.         [3]  Build and send a remove request and send to remote. 
  808.  
  809.         [4]  Go to REMOVE:A. 
  810.  
  811.  
  812.  
  813.  
  814.  
  815.  
  816.  
  817. Smith                        Informational                     [Page 27] 
  818.  RFC 1934                Multilink Protocol Plus               April 1996 
  819.  
  820.  Enter Remove [remote] Action 
  821.  
  822.         The remote unit is initiating a remove transaction. The incoming         message contains the number of channels to remove. 
  823.  
  824.         [1]  Restart the idle timer. 
  825.  
  826.         [2]  Request the number of channels required. If greater than the         number available after removing the number of channels indicated         in the incoming message reduce the number of channels to remove         and set a remove lock. 
  827.  
  828.         [3] Build a remove response message indicating the number of         channels we will allow the requester to remove and send to the         remote. 
  829.  
  830.         [4]  Go to  REMOVE:B. 
  831.  
  832. Enter Add [local] Action 
  833.  
  834.         The local unit is initiating an add transaction.  We are given         the number of channels desired.  The steps are: 
  835.  
  836.         [1]  Restart the idle timer. 
  837.  
  838.         [2]  Calculate number of channels to add (difference between         number desired and number in use). 
  839.  
  840.         [3]  Reserve number of channels, retrieving their phone numbers. 
  841.  
  842.         [4]  If number of channels reserved less than the number desired         set an add lock. 
  843.  
  844.         [5]  If number of channels reserved greater than zero. 
  845.  
  846.                 [1] Build an add request. If the answerer the request                 includes the phone numbers for the caller to dial. 
  847.  
  848.                 [2] If caller, go to ADD:A. 
  849.  
  850.                 [3] If answerer, go to ADD:C. 
  851.  
  852.         [6]  Go to  IDLE state. 
  853.  
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  Smith                        Informational                     [Page 28] 
  861.  RFC 1934                Multilink Protocol Plus               April 1996 
  862.  
  863.  Enter Remove [remote] Action 
  864.  
  865.         The remote unit is initiating a remove transaction.  The         incoming  message contains the number of channels to remove. 
  866.  
  867.         [1]  Clear the remove lock. 
  868.  
  869.         [2]  Restart the idle timer. 
  870.  
  871.         [3]  Request the number of channels required.   If  greater         than the number available after removing the number of         channels indicated in the incoming message reduce  the         number of channels to remove. 
  872.  
  873.         [4]  Build  a remove response message indicating the number         of channels we will allow the requester to remove  and         send to the remote. 
  874.  
  875.         [5]  Go to REMOVE, sub-state B. 
  876.  
  877. Enter Add [remote answerer] Action 
  878.  
  879.         We've received a message from  the  remote  requesting  that         bandwidth  be  added.   The  message  contains the number of         channels to add.  Since the remote is the answerer, the mes-         sage  also  contains the phone nubmers to dial.  We may dial         less than the number requested. 
  880.  
  881.         [1]  Restart idle timer. 
  882.  
  883.         [2]  If the number of channels requested will put  us  over         the maximum number of channels allowed for the session         reduce the channel count. 
  884.  
  885.         [3]  For each channel to add, 
  886.  
  887.                 [1] Integrate the phone  number  returned  from  the                 answerer  with the original phone number dialed. 
  888.  
  889.                 [2] Request that a session be  extended  by  dialing                 the  integrated  phone  number.   A  callback is                 passed with the request so call success or fail-                 ure can be reported back to MP+. 
  890.  
  891.         [4]  Go to ADD:B.  Note:  This change must actu-         ally occur before requesting the first outgoing  call.         If  not,  the  callback  could be called (and ignored)         because the session is not in the correct state. 
  892.  
  893.  
  894.  
  895. Smith                        Informational                     [Page 29] 
  896.  RFC 1934                Multilink Protocol Plus               April 1996 
  897.  
  898.  Enter Add [remote caller] Action 
  899.  
  900.         We've  received  a  message  from the remote requesting that         bandwidth be added.  The  message  contains  the  number  of         channels  to  add.  Since the remote is the caller, it needs         us to send the phone numbers to dial.   We  may  send  fewer         phone numbers than requested 
  901.  
  902.         [1]  Restart idle timer. 
  903.  
  904.         [2]  If  the  number of channels requested will put us over         the maximum number of channels allowed for the session         reduce the channel count. 
  905.  
  906.         [3]  Reserve  the  adjusted  number of channels, retrieving         their phone numbers. 
  907.  
  908.         [4]  If the number of channels reserved is  less  than  the         adjusted number requested. 
  909.  
  910.         [5]  Build an add response  message,  including  the  phone         numbers  for  the  channels we will let the caller add         and send it to the far end. 
  911.  
  912.         [6]  Go to ADD:C. 
  913.  
  914. Enter Idle Action 
  915.  
  916.         The IDLE state is entered at the end of normal transactions.         At  entry  the  current  status  of the connection should be         checked and new transactions initiated if necessary.  To  be         safe,  we  can  also  use this state as a catch all place to         release any bandwidth reserved for adds.  The  functions  to         perform are: 
  917.  
  918.         [1]  Restart  the idle timer using the current retry value. 
  919.  
  920.         [2]  Release any reserved bandwidth not actually in use. 
  921.  
  922.         [3]  Check if bandwidth change reqested during last  trans-              action.  If change indicated: 
  923.  
  924.                 [1]  Query channel counts. 
  925.  
  926.                 [2]  If  current  bandwidth less than suggested band-                      width and removes  are  not  locked,  store  the                      requested bandwidth and initiate a remove trans-                      action (Enter Remove Action). 
  927.  
  928.  
  929.  
  930. Smith                        Informational                     [Page 30] 
  931.  RFC 1934                Multilink Protocol Plus               April 1996 
  932.  
  933.  
  934.  
  935.                 [3]  If  current  bandwidth  greater  than  suggested                      bandwidth and adds are not locked: 
  936.  
  937.                        [1]  Store the requested bandwidth. 
  938.  
  939.                        [2]  Intiate  an  add  transaction  (Enter  Add                             [local] Action). 
  940.  
  941.        [4]  Go to the IDLE state. 
  942.  
  943. Remote Management Request Action 
  944.  
  945.         We received a request to start/stop remote management.         If this is a start request                 If we can/allow remote management:                         Build and send a Remote management response Allow                         message.                 Else                         Build and send a Remote management response Deny                         message.         Else (this is a stop)                 Notify the remote management slave process to terminate. 
  946.  
  947. Remote Management Response Action 
  948.  
  949.         We received a response to our remote management start request.         If the response was an Allow response                 Notify the remote management master process, we can                 start sending keystrokes/commands         Else                 The peer denied the request, so notify the remote                 management master process of failure. 
  950.  
  951. Remote Management Receive Data Action 
  952.  
  953.         We (the slave) received data from the remote management master.         Pass the received data to the remote management slave process.         This is typically keystroke data received from the remote user         interface. 
  954.  
  955. Remote Management Transmit Data Action 
  956.  
  957.         We (the master) received data from the remote management slave.         Pass the received data to the remote management master process.         This is typically screen-updates to be passed to the user         interface. 
  958.  
  959.  
  960.  
  961.  Smith                        Informational                     [Page 31] 
  962.  RFC 1934                Multilink Protocol Plus               April 1996 
  963.  
  964.  Remote Management Transmit Data Response Action 
  965.  
  966.         We (the slave) received an ack to data we previously sent to the         master. Notify the remote management slave process so that it         can queue further transmissions. 
  967.  
  968. Remote management (Master) start Action 
  969.  
  970.         Build a REMOTE_MGMT_REQ start message and send to the far end.         Send a proceeding message to the RM master process. 
  971.  
  972. Remote management (Slave) data Action 
  973.  
  974.         Build a REMOTE_MGMT_TX_REQ message with the data passed from         the remote management slave process, send it to the far end. 
  975.  
  976. Remote management (Master) data Action 
  977.  
  978.         Build a REMOTE_MGMT_RX_REQ message with data passed from the         remote management master process, send it to the far end. 
  979.  
  980. Remote management data acknowledgement Action 
  981.  
  982.         Build a REMOTE_MGMT_TX_RSP message and send it so the slave can         send the next block. There is no data associated with this         message. 
  983.  
  984. Remote management (Master) stop Action 
  985.  
  986.         Build a REMOTE_MGMT_REQ stop message and send to the far end. 
  987.  
  988. 3.5.3. MP+STATE_INITIAL state machine 
  989.  
  990.    All sessions start from this state, sub-state A. The state is not    exited until version exchange succeeds. 
  991.  
  992.    The sub-states are: 
  993.  
  994.         A       Initial state         B       Sent version request, waiting for version response.         C       Waiting for version request. 
  995.  
  996.  
  997.  
  998.  
  999.  
  1000.  
  1001.  
  1002.  
  1003.  
  1004.  Smith                        Informational                     [Page 32] 
  1005.  RFC 1934                Multilink Protocol Plus               April 1996 
  1006.  
  1007.  Event                                   Sub-state ______________________________________________________________________                            A                    B               C ====================================================================== MP+START_SESSION           1,+                  **              ** ______________________________________________________________________ MP+SESSION_DOWN            **              2,Initial:A    2,Initial:A ______________________________________________________________________ MP+SESSION_TERM            **              3,Initial:A    3,Initial:A ______________________________________________________________________ MP+TIMER_EXPIRED           **              4,Initial:A    7,Initial:B ______________________________________________________________________ MP+RX_VERSION_REQ          **              8,Initial:A         5,+ ______________________________________________________________________ MP+RX_VERSION_RSP          **                  6,+             ** ______________________________________________________________________ MP+START_RM               9,*                  9,*             9,* ______________________________________________________________________ All other events           **                  **              ** ______________________________________________________________________ 
  1008.  
  1009.                     Table 2:  Initial State Machine 
  1010.  
  1011. Actions: 
  1012.  
  1013. 1       Start timer, 60 seconds if originator, 30 seconds if answerer. 
  1014.  
  1015.         Start MP+ 
  1016.  
  1017.         If originator 
  1018.  
  1019.                 Build and send version exchange request 
  1020.  
  1021.                 Go to INITIAL, sub-state B. 
  1022.  
  1023.         Go to INITIAL, sub-state C. 
  1024.  
  1025. 2       Do  Error Close Action, go to INITIAL, sub-state A. 
  1026.  
  1027. 3       Do  Term Action, go to INITIAL, sub-state A. 
  1028.  
  1029. 4       Do  Error Close Action, go to INITIAL, sub-state A. 
  1030.  
  1031. 5       Stop the idle timer. 
  1032.  
  1033.         Compare protocol versions, if they do not match Do Error Close         Action, go to  INITIAL, sub-state A. 
  1034.  
  1035.  
  1036.  
  1037.  Smith                        Informational                     [Page 33] 
  1038.  RFC 1934                Multilink Protocol Plus               April 1996 
  1039.  
  1040.          Store off info received from remote. 
  1041.  
  1042.         Build a version exchange response and send to remote end. 
  1043.  
  1044.         Do  Enter Idle Action  which causes a state change. 
  1045.  
  1046. 6       Stop the retry timer. 
  1047.  
  1048.         Compare protocol versions, if they do not match Do Error Close         Action, go to INITIAL, sub-state A. 
  1049.  
  1050.         Store off info received from remote. 
  1051.  
  1052.         Check the base channel count in the callers profile. 
  1053.  
  1054.         If greater than 1 
  1055.  
  1056.                 Set the requested bandwidth to the base channel count. 
  1057.  
  1058.                 Do  Enter Add Caller  action which causes a state change. 
  1059.  
  1060.         Do  Enter Idle Action  which causes a state change. 
  1061.  
  1062. 7       Both sides think they are the answerer. This is possible if both         dial each other at the same time and the first channel that         completed PPP negotiation happened to be the channel associated         with the incoming call on both units. We resolve this by trying         to become the originator.         If both sides try to become the originator the one with the         largest endpoint discriminator will fall back to being the         answerer. 
  1063.  
  1064.                 Restart Idle timer at 60 seconds 
  1065.  
  1066.                 Build and send Version Exchange Request message 
  1067.  
  1068.                 Go to Initial:B 
  1069.  
  1070. 8       Both sides think they are the originator. This can happen if         both dial each other at the same time and the first channel         that completed PPP negotiation happened to be the channel         associated with the originating call on both units. MP+         determines which will be the caller and which the answerer by         comparing the endpoind discriminator in the version exchange         request with the local endpoint discriminator. The unit with         the smaller endpoint is arbitrarily called the originator. The         actions are: 
  1071.  
  1072.  
  1073.  
  1074.  Smith                        Informational                     [Page 34] 
  1075.  RFC 1934                Multilink Protocol Plus               April 1996 
  1076.  
  1077.          Compare local endpoint discriminator with endpoint discrimator         in message. 
  1078.  
  1079.         If local endpoint discriminator is less than the remote value         we are the caller, ignore the incoming message. 
  1080.  
  1081.         Otherwise, if local endpoint discriminator is greater than the         remote value we are the answerer: 
  1082.  
  1083.                 Compare protocol versions, if they do not match                 Do  Error Close Action, go to INITIAL, sub-state A. 
  1084.  
  1085.                 Store off info received from remote. 
  1086.  
  1087.                 Build a version exchange response and send to remote end. 
  1088.  
  1089.                 Do  Enter Idle Action  which causes a state change. 
  1090.  
  1091.         If the two values match, there is a problem, Do Error Close         Action,go to INITIAL, sub-state A. 
  1092.  
  1093. 9       Log an error message.         Notify the user interface of remote management failure. 
  1094.  
  1095. 3.5.4. MP+STATE_IDLE state machine 
  1096.  
  1097.    The Idle state is the state of an active session with no call    management activity in progress. 
  1098.  
  1099.    There are no sub-states. 
  1100.  
  1101.    Event                    State    _____________________________________________                                A    =============================================    MP+SESSION_DOWN         1,Initial:A    _____________________________________________    MP+SESSION_TERM         2,Initial:A    _____________________________________________    MP+TIMER_EXPIRED        3,*    _____________________________________________    MP+UTILIZATION          4,+    _____________________________________________    MP+RX_ADD_REQ           5,+    _____________________________________________    MP+RX_REMOVE_REQ        6,Remove:B    _____________________________________________    MP+RX_RM_REQ            7,+ 
  1102.  
  1103.  
  1104.  
  1105. Smith                        Informational                     [Page 35] 
  1106.  RFC 1934                Multilink Protocol Plus               April 1996 
  1107.  
  1108.     _____________________________________________    MP+RX_RM_RSP            8,+    _____________________________________________    MP+RX_RM_RX_REQ         9,+    _____________________________________________    MP+RX_RM_TX_REQ         10,+    _____________________________________________    MP+RX_RM_TX_RSP         11,+    _____________________________________________    MP+RX_CLOSE_REQ         12,+    _____________________________________________    MP+START_RM             13,*    _____________________________________________    MP+SEND_RMS             14,*    _____________________________________________    MP+SEND_RMM             15,*    _____________________________________________    MP+RECV_RMM             16,*    _____________________________________________    MP+STOP_RM              17,*    _____________________________________________    All other events        **    _____________________________________________ 
  1109.  
  1110.    Table 3:  Idle State Machine 
  1111.  
  1112.    Actions: 
  1113.  
  1114.    1       Do Error Close Action, go to INITIAL, sub-state A. 
  1115.  
  1116.    2       Do Term Action, go to INITIAL, sub-state A. 
  1117.  
  1118.    3       Do Timer Action. 
  1119.  
  1120.    4       Note that a bandwidth change has been reqested. 
  1121.  
  1122.            Do Enter Idle Action which may cause a state change. 
  1123.  
  1124.    5       If we are the caller:                    Do Enter Add [remote answerer] Action.            Else                    Do Enter Add [remote caller] Action. 
  1125.  
  1126.    6       Do Enter Remove [remote] Action 
  1127.  
  1128.    7       Do Remote Management Request Action 
  1129.  
  1130.    8       Do Remote Management Response Action 
  1131.  
  1132.  
  1133.  
  1134. Smith                        Informational                     [Page 36] 
  1135.  RFC 1934                Multilink Protocol Plus               April 1996 
  1136.  
  1137.     9       Do Remote Management Receive Data Action 
  1138.  
  1139.    10      Do Remote Management Transmit Data Action 
  1140.  
  1141.    11      Do Remote Management Transmit Data Response Action 
  1142.  
  1143.    12      Clear remove lock.            If local recommended channels == 0, then:                    send a Close Response message with OK To Close                    set to TRUE.            Else                    send a Close Response message with OK To Close                    set to FALSE.            Do Enter Idle Action. 
  1144.  
  1145.    13      Do Remote management (Master) start Action 
  1146.  
  1147.    14      Do Remote management (Slave) data Action 
  1148.  
  1149.    15      Do Remote management (Master) data Action 
  1150.  
  1151.    16      Do Remote management data acknowledgement Action 
  1152.  
  1153.    17      Do Remote management (Master) stop Action 
  1154.  
  1155. 3.5.5. MP+STATE_ADD state machine 
  1156.  
  1157.    The add state is used by both caller and answerer when an add    transaction is in progress. 
  1158.  
  1159.    The sub-states are: 
  1160.  
  1161.         A       Add request sent to answerer, waiting for add response                 from the answerer.         B       Caller waiting for call complete notification for calls                 placed.         C       Answerer waiting for add complete message from caller. 
  1162.  
  1163.  
  1164.  
  1165.  
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  Smith                        Informational                     [Page 37] 
  1176.  RFC 1934                Multilink Protocol Plus               April 1996 
  1177.  
  1178.  Event                                           Sub-state ______________________________________________________________________                                 A               B               C ====================================================================== MP+SESSION_DOWN         1,Initial:A      7,Closing:A    1,Initial:A ______________________________________________________________________ MP+SESSION_TERM         2,Initial:A      7,Closing:B    2,Initial:A ______________________________________________________________________ MP+TIMER_EXPIRED           3,+              3,+            3,+ ______________________________________________________________________ MP+UTILIZATION             4,*              4,*            4,* ______________________________________________________________________ MP+CALL_COMPLETE            **            8,Idle:A         ** ______________________________________________________________________ MP+RX_VERSION_REQ          -,*              **             ** ______________________________________________________________________ MP+ADD_REQ                5,Add:B           **             ** ______________________________________________________________________ MP+ADD_RSP                 6,+              **             ** ______________________________________________________________________ MP+ADD_COMP                 **              **           9,Idle:A ______________________________________________________________________ MP+RX_RM_REQ              10,+             10,+           10,+ ______________________________________________________________________ MP+RX_RM_RSP              11,+             11,+           11,+ ______________________________________________________________________ MP+RX_RM_RX_REQ           12,+             12,+           12,+ ______________________________________________________________________ MP+RX_RM_TX_REQ           13,+             13,+           13,+ ______________________________________________________________________ MP+RX_RM_TX_RSP           14,+             14,+           14,+ ______________________________________________________________________ MP+RX_REMOVE_REQ           -,*              **             ** ______________________________________________________________________ MP+START_RM               15,*             15,*           15,* ______________________________________________________________________ MP+SEND_RMS               16,*             16,*           16,* ______________________________________________________________________ MP+SEND_RMM               17,*             17,*           17,* ______________________________________________________________________ MP+RECV_RMM               18,*             18,*           18,* ______________________________________________________________________ MP+STOP_RM                19,*             19,*           19,* ______________________________________________________________________ All other events            **              **             ** ______________________________________________________________________ 
  1179.  
  1180. Table 4:  Add State Machine 
  1181.  
  1182.  
  1183.  
  1184. Smith                        Informational                     [Page 38] 
  1185.  RFC 1934                Multilink Protocol Plus               April 1996 
  1186.  
  1187.  Actions: 
  1188.  
  1189. 1       Phone numbers (may) have been reserved, they must be released         before the normal error processing occurs. 
  1190.  
  1191.                 Release all reserved phone numbers 
  1192.  
  1193.                 Do  Error Close Action. 
  1194.  
  1195. 2       Phone nubmers (may) have been reserved, they must be released         before the normal close processing occurs. 
  1196.  
  1197.                 Release all reserved phone numbers 
  1198.  
  1199.                 Do  Term Action. 
  1200.  
  1201. 3       Do  Timer Action 
  1202.  
  1203. 4       Note that a bandwidth change has been reqested. This will be         processed the next time IDLE state is entered. 
  1204.  
  1205. 5       An add collision has occured.  Since the answerer has sent phone         numbers we will try to use what he as sent, within the limits of         the local system. 
  1206.  
  1207.                 Compare local channels to add with current channels to                 add. 
  1208.  
  1209.                 If the local channels to add is less than the remote                 channels to add 
  1210.  
  1211.                         If the remote number of channels requested will                         put us over the maximum number of channels                         allowed for the session reduce the channel count                         and set an add lock. 
  1212.  
  1213.                         Re-reserve the channels.  If the number reserved                         are less than the number of phone numbers                         provided by the far end, set an add lock and                         reduce the number of channels to add to what we                         could reserve. 
  1214.  
  1215.                 Now treat the remote add request as if it were an add                 response and process by: 
  1216.  
  1217.                         Integrate the phone number returned from the                         answerer with the original phone number dialed. 
  1218.  
  1219.  
  1220.  
  1221.  Smith                        Informational                     [Page 39] 
  1222.  RFC 1934                Multilink Protocol Plus               April 1996 
  1223.  
  1224.                          Request that a session be extended by dialing                         the integrated phone number.  A callback is                         passed with the request so call success or                         failure can be reported back to MP+. 
  1225.  
  1226.                         Go to ADD:B.  Note:  This change must actually                         occur before requesting the first outgoing call.                         If not, the callback could be called (and                         ignored) because the session is not in the                         correct state. 
  1227.  
  1228. 6       If the answerer provided fewer phone numbers than requested set         an add lock. 
  1229.  
  1230.         If the number of channels is zero send an add complete message         (there's nothing to do) and go to the IDLE state. 
  1231.  
  1232.         For each phone number returned 
  1233.  
  1234.                 Integrate the phone number returned from the answerer                 with the original phone number dialed. 
  1235.  
  1236.                 Request that a session be extended by dialing the                 integrated phone number.  A callback is passed with the                 request so call success or failure can be reported back                 to MP+. 
  1237.  
  1238.         Go to ADD:B.  Note:  This change must actually occur before         requesting the first outgoing call.  If not, the callback could         be called (and ignored) because the session is not in the correct         state. 
  1239.  
  1240. 7       Restart idle timer for abort. 
  1241.  
  1242. 8       Increment the count of calls completed. 
  1243.  
  1244.         If the call succeeded, increment the count of calls that         succeeded. 
  1245.  
  1246.         If the count of calls completed equals the number of calls placed 
  1247.  
  1248.                 If number of calls completed is not the same as the                 nubmer that succeeded set an add lock. 
  1249.  
  1250.                 Build an add complete message and send it to the far end. 
  1251.  
  1252.                 If at least one channel was added clear any remove lock. 
  1253.  
  1254.  
  1255.  
  1256.  Smith                        Informational                     [Page 40] 
  1257.  RFC 1934                Multilink Protocol Plus               April 1996 
  1258.  
  1259.                  Go to the IDLE state. 
  1260.  
  1261. 9       If number of channels requested not equal to number connected         set add lock. 
  1262.  
  1263.         If at least one channel was added clear any remove lock. 
  1264.  
  1265.         Go to the IDLE state. 
  1266.  
  1267. 10      Do Remote Management Request Action 
  1268.  
  1269. 11      Do Remote Management Response Action 
  1270.  
  1271. 12      Do Remote Management Receive Data Action 
  1272.  
  1273. 13      Do Remote Management Transmit Data Action 
  1274.  
  1275. 14      Do Remote Management Transmit Data Response Action 
  1276.  
  1277. 15      Do Remote management (Master) start Action 
  1278.  
  1279. 16      Do Remote management (Slave) data Action 
  1280.  
  1281. 17      Do Remote management (Master) data Action 
  1282.  
  1283. 18      Do Remote management data acknowledgement Action 
  1284.  
  1285. 19      Do Remote management (Master) stop Action 
  1286.  
  1287. 3.5.6. MP+STATE_REMOVE state machine 
  1288.  
  1289.    The state of a session while processing a remove transaction. 
  1290.  
  1291.    The sub-states are: 
  1292.  
  1293.         A       Remove request sent, waiting for remove response         B       Remove response sent, waiting for remove complete 
  1294.  
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  Smith                        Informational                     [Page 41] 
  1308.  RFC 1934                Multilink Protocol Plus               April 1996 
  1309.  
  1310.  Event                                   Sub-state _________________________________________________________                                 A               B ========================================================= MP+SESSION_DOWN             1,Initial:A    1,Initial:A _________________________________________________________ MP+SESSION_TERM             2,Initial:A    2,Initial:A _________________________________________________________ MP+TIMER_EXPIRED               3,+            3,+ _________________________________________________________ MP+UTILIZATION                 4,*            4,* _________________________________________________________ MP+RX_ADD_REQ                  5,+             ** _________________________________________________________ MP+RX_REMOVE_REQ               6,+             ** _________________________________________________________ MP+RX_REMOVE_RSP            7,Idle:A           ** _________________________________________________________ MP+RX_REMOVE_COMP              **           8,Idle:A _________________________________________________________ MP+RX_CLOSE_REQ               -,*              ** _________________________________________________________ MP+RX_RM_REQ                  9,*             9,* _________________________________________________________ MP+RX_RM_RSP                 10,*            10,* _________________________________________________________ MP+RX_RM_RX_REQ              11,*            11,* _________________________________________________________ MP+RX_RM_TX_REQ              12,*            12,* _________________________________________________________ MP+RX_RM_TX_RSP              13,*            13,* _________________________________________________________ MP+START_RM                  14,*            14,* _________________________________________________________ MP+SEND_RMS                  15,*            15,* _________________________________________________________ MP+SEND_RMM                  16,*            16,* _________________________________________________________ MP+RECV_RMM                  17,*            17,* _________________________________________________________ MP+STOP_RM                   18,*            18,* _________________________________________________________ All other events              **               ** _________________________________________________________ 
  1311.  
  1312. Table 5: Remove State Machine 
  1313.  
  1314.  
  1315.  
  1316.  
  1317.  
  1318. Smith                        Informational                     [Page 42] 
  1319.  RFC 1934                Multilink Protocol Plus               April 1996 
  1320.  
  1321.  Actions: 
  1322.  
  1323. 1       Do  Error Close Action 
  1324.  
  1325. 2       Do  Term Action 
  1326.  
  1327. 3       Do  Timer Action 
  1328.  
  1329. 4       Note that a bandwidth change has been reqested. This will be         processed the next time IDLE state is entered. 
  1330.  
  1331. 5       Our remove conflicted with the remote end Add.  The add takes         preference. 
  1332.  
  1333.         Set a remove lock. 
  1334.  
  1335.         If we are the caller Do  Enter Add [remote answerer] Action  . 
  1336.  
  1337.         Otherwise Do  Enter Add [remote caller] Action  . 
  1338.  
  1339. 6       Two remove requests collided.  We give preference to the caller         (an arbitrary decision). 
  1340.  
  1341.         If caller, ignore message. 
  1342.  
  1343.         Else                 Check maximum number of channels needed by the local end.                 Reduce the requested remove count and set a remove lock if                 necessary. 
  1344.  
  1345.                 Build and send a remove response to the remote. 
  1346.  
  1347.                 Go to Remove:B. 
  1348.  
  1349. 7       Compare the number of channels requested with the number allowed         in the response.  If fewer allowed set a remove lock. 
  1350.  
  1351.         Look at the current bandwidth.  If the number to remove would         bring the current bendwidth below requirements reduce the number         of channels to remove. 
  1352.  
  1353.         If still channels to remove:                 Remove the channels.                 Clear any add lock.         Send a remove complete indicating the number of channels removed. 
  1354.  
  1355. 8       If at least one channel was removed clear any add lock. 
  1356.  
  1357.  
  1358.  
  1359.  Smith                        Informational                     [Page 43] 
  1360.  RFC 1934                Multilink Protocol Plus               April 1996 
  1361.  
  1362.  9       Do Remote Management Request Action 
  1363.  
  1364. 10      Do Remote Management Response Action 
  1365.  
  1366. 11      Do Remote Management Receive Data Action 
  1367.  
  1368. 12      Do Remote Management Transmit Data Action 
  1369.  
  1370. 13      Do Remote Management Transmit Data Response Action 
  1371.  
  1372. 14      Do Remote management (Master) start Action 
  1373.  
  1374. 15      Do Remote management (Slave) data Action 
  1375.  
  1376. 16      Do Remote management (Master) data Action 
  1377.  
  1378. 17      Do Remote management data acknowledgement Action 
  1379.  
  1380. 18      Do Remote management (Master) stop Action 
  1381.  
  1382. 3.5.7. MP+STATE_CLOSE state machine 
  1383.  
  1384.    The close state is used when we are gracefully closing a session or    when we were notified that a session terminated mid-transaction. 
  1385.  
  1386.    The sub-states are: 
  1387.  
  1388.         A       Waiting for call complete after session down notification         B       Waiting for call complete after session terminate                 notification.         C       Waiting for close response after session close request                 sent. 
  1389.  
  1390. Event                                     Sub-state ______________________________________________________________________                                 A               B               C ====================================================================== MP+SESSION_DOWN                **            -,*        7,Initial:A ______________________________________________________________________ MP+SESSION_TERM           1,Close:B           **        8,Initial:A ______________________________________________________________________ MP+TIMER_EXPIRED          2,Initial:A     5,Initial:A       6,* ______________________________________________________________________ MP+UTILIZATION                -,*            -,*            9,* ______________________________________________________________________ MP+CALL_COMPLETE              3,+         6,Initial:A        ** ______________________________________________________________________ MP+ADD_REQ                    **             -,*           10,+ 
  1391.  
  1392.  
  1393.  
  1394. Smith                        Informational                     [Page 44] 
  1395.  RFC 1934                Multilink Protocol Plus               April 1996 
  1396.  
  1397.  ______________________________________________________________________ MP+REMOVE_REQ                 **              **        11,Remove:B ______________________________________________________________________ MP+CLOSE_REQ                  -,*            -,*           12,* ______________________________________________________________________ MP+CLOSE_RSP                  -,*            -,*           13,+ ______________________________________________________________________ MP+START_RM                   4,*            4,*           4,* ______________________________________________________________________ All other events              **              **            ** ______________________________________________________________________ 
  1398.  
  1399. Table 6:  Close State Machine 
  1400.  
  1401. Actions: 
  1402.  
  1403. 1       The session was closed while waiting for call completes.         Just go to Close:B. 
  1404.  
  1405. 2       We timed out waiting for completes.  Just process the link down,         now.         Do Error Close Action. 
  1406.  
  1407. 3       Increment the number of calls complete. 
  1408.  
  1409.         If equal to the number of calls placed then:                 Do Error Close Action, go to Initial:A.         Else                 No state change. 
  1410.  
  1411. 4       Log an error message.         Notify the user interface of remote management failure. 
  1412.  
  1413. 5       We didn't get all the notifications that we expect.  Give up and         close the session anyway.  Do Term Action . 
  1414.  
  1415. 6       Increment the number of calls complete. 
  1416.  
  1417.         If equal to the number of calls placed then:                 Do  Term Action, go to Initial:A.         Else                 No state change 
  1418.  
  1419. 7       Do Error Close Action 
  1420.  
  1421. 8       Do Term Action 
  1422.  
  1423. 9       Note that a bandwidth change has been reqested. This will be 
  1424.  
  1425.  
  1426.  
  1427. Smith                        Informational                     [Page 45] 
  1428.  RFC 1934                Multilink Protocol Plus               April 1996 
  1429.  
  1430.          processed the next time IDLE state is entered. 
  1431.  
  1432. 10      This is an Add & Close collision. Add wins. Perform current         remote add action.         If we are originator                 Do Add [Remote Answerer] Action         else                 Do Add [Remote Caller] Action 
  1433.  
  1434. 11      This is a Remove & Close collision, the Remove will win:                 Set remove lock to FALSE                 Do Remove [Remote] Action. 
  1435.  
  1436. 12      This is a Close collision. But since we both agree:         If we are originator                 Send a Close Response with okToClose set to TRUE.         Else                 Send a Close Response with okToClose set to FALSE. 
  1437.  
  1438. 13      If Close Response is received with okToClear is TRUE then:                 Do Term Action         Else                 set remove lock to TRUE and do Enter Idle Action. 
  1439.  
  1440. 4. PPP LCP Extensions 
  1441.  
  1442. MP+ Configuration Option 
  1443.  
  1444.    The Multilink Protocol Plus introduces the use of an additional LCP    Configuration Option: 
  1445.  
  1446.     0                   1                   2                   3     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+    |  type = 22    |  length = 4   |    Currently unused           |    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 
  1447.  
  1448.    Figure 21: MP+ Option 
  1449.  
  1450.    Type - 22. 
  1451.  
  1452.    NOTE: The current implementation uses option 0. This is not an    assigned number, so an IANA assigned official identifier has been    obtained (22). 
  1453.  
  1454.    The option, when sent to a peer, advises the peer that: 
  1455.  
  1456.         the unit is capable of running the MP+ protocol; 
  1457.  
  1458.  
  1459.  
  1460. Smith                        Informational                     [Page 46] 
  1461.  RFC 1934                Multilink Protocol Plus               April 1996 
  1462.  
  1463.     The peer can accept or reject the option. 
  1464.  
  1465.    NOTE:  The MP+ option MUST NOT be included unless MP is also    negotiated. 
  1466.  
  1467. 5. Security Considerations 
  1468.  
  1469.    Security issues are not discussed in this memo. 
  1470.  
  1471. 6. References 
  1472.  
  1473.    [1] K. Sklower, B. Lloyd, G. McGregor, D. Carr, "The PPP Multilink        Protocol (MP)". 
  1474.  
  1475.    [2] Simpson, W., Editor, "The Point-to-Point Protocol (PPP)", STD        51, RFC 1661, Daydreamer, July 1994. 
  1476.  
  1477. 7. Author's Address 
  1478.  
  1479.    Kevin Smith    Ascend Communications    1275 Harbor Bay Parkway    Alameda, CA 94502 
  1480.  
  1481.    Phone:  (510) 769-6001    FAX:    (510) 814-2300    EMail:  ksmith@ascend.com 
  1482.  
  1483.  
  1484.  
  1485.  
  1486.  
  1487.  
  1488.  
  1489.  
  1490.  
  1491.  
  1492.  
  1493.  
  1494.  
  1495.  
  1496.  
  1497.  
  1498.  
  1499.  
  1500.  
  1501.  
  1502.  
  1503.  
  1504.  
  1505.  Smith                        Informational                     [Page 47] 
  1506.  
  1507.