home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / rfc / rfc1934 < prev    next >
Text File  |  1996-04-08  |  87KB  |  2,636 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                           K. Smith
  8. Request For Comments: 1934                         Ascend Communications
  9. Category: Informational                                       April 1996
  10.  
  11.  
  12.                  Ascend's Multilink Protocol Plus (MP+)
  13.  
  14. Status of This Memo
  15.  
  16.    This memo provides information for the Internet community.  This memo
  17.    does not specify an Internet standard of any kind.  Distribution of
  18.    this memo is unlimited.
  19.  
  20. Abstract
  21.  
  22.    This document proposes an extension to the PPP Multilink Protocol
  23.    (MP) [1]. Multilink Protocol Plus (MP+) is a new control protocol for
  24.    managing multiple data links that are bundled by MP.
  25.  
  26. Table Of Contents
  27.  
  28. 1.      Introduction.................................................2
  29.         1.1     Functional Description...............................2
  30.         1.2     Conventions..........................................3
  31. 2.      General Overview.............................................3
  32.         2.1     Operation............................................4
  33. 3.      MP+ Frame Formats............................................4
  34.         3.1     Error Control (EC) Layer.............................6
  35.                 3.1.1   Error Control State Machine..................7
  36.         3.2     Multilink Plus Control Messages......................9
  37.         3.3     Multilink Plus Message Formats......................10
  38.                 3.3.1   VERSION_EXCHANGE_REQ Message Format.........10
  39.                 3.3.2   VERSION_EXCHANGE_RSP Message Format.........12
  40.                 3.3.3   ADD_REQ Message Format......................13
  41.                 3.3.4   ADD_RSP Message Format......................15
  42.                 3.3.5   ADD_COMPLETE Message Format.................16
  43.                 3.3.6   REMOVE_REQ Message Format...................17
  44.                 3.3.7   REMOVE_RSP Message Format...................17
  45.                 3.3.8   REMOVE_COMPLETE Message Format..............18
  46.                 3.3.9   CLOSE_REQ Message Format....................19
  47.                 3.3.10  CLOSE_RSP Message Format....................19
  48.                 3.3.11  REMOTE_MGMT_REQ Message Format..............20
  49.                 3.3.12  REMOTE_MGMT_RSP Message Format..............20
  50.                 3.3.13  REMOTE_MGMT_RX_REQ Message Format...........21
  51.                 3.3.14  REMOTE_MGMT_TX_REQ Message Format...........22
  52.                 3.3.15  REMOTE_MGMT_TX_RSP Message Format...........22
  53.                 3.3.16  CLEAR_REQ Message Format....................23
  54.         3.4     Events..............................................23
  55.  
  56.  
  57.  
  58. Smith                        Informational                      [Page 1]
  59.  
  60. RFC 1934                Multilink Protocol Plus               April 1996
  61.  
  62.  
  63.         3.5     State Machine.......................................25
  64.                 3.5.1   States......................................25
  65.                 3.5.2   Common Actions..............................26
  66.                 3.5.3   MP+STATE_INITIAL state machine..............32
  67.                 3.5.4   MP+STATE_IDLE state machine.................35
  68.                 3.5.5   MP+STATE_ADD state machine..................37
  69.                 3.5.6   MP+STATE_REMOVE state machine...............41
  70.                 3.5.7   MP+STATE_CLOSE state machine................44
  71. 4.      PPP LCP Extensions..........................................46
  72. 5.      Security Considerations.....................................47
  73. 6.      References..................................................47
  74. 7.      Author's Address............................................47
  75.  
  76. 1. Introduction
  77.  
  78.    The PPP Multilink Protocol (MP), is a set of features that provide
  79.    inverse multiplexing at the packet/fragment level by bundling
  80.    multiple independent links between a fixed pair of systems, providing
  81.    a virtual link with greater bandwidth than any of the constituent
  82.    members.
  83.  
  84.    Once multiple channels have been established  MP is responsible for
  85.    managing channel use to insure in-sequence delivery of user packets.
  86.  
  87.    MP+ is an extension to MP that adds an inband control channel to
  88.    provide a new level of session management and control.
  89.  
  90.    MP+ also allows remote device management of (unconfigured) systems.
  91.    This feature allows a network operations center to dial into an
  92.    unconfigured system and remotely manage it, before ethernet
  93.    interface, IP address, and other LCP and system configuration
  94.    information is entered.  (This does require local configuration of
  95.    the WAN interfaces to the extent required to answer an incoming
  96.    call).
  97.  
  98. 1.1 Functional Description
  99.  
  100.    The features of MP+ include:
  101.  
  102.    * Ability to negotiate to add and subtract channels when bandwidth
  103.      needs change.
  104.  
  105.    * Phone number management so calling stations need not know every
  106.      possible number; answering stations can manage their own resources.
  107.  
  108.    * A simple remote management interface.
  109.  
  110.  
  111.  
  112.  
  113.  
  114. Smith                        Informational                      [Page 2]
  115.  
  116. RFC 1934                Multilink Protocol Plus               April 1996
  117.  
  118.  
  119.    To perform the above functions  MP+ is split into a call management
  120.    layer and a reliable delivery layer.  The call management layer is
  121.    the source and sink of  MP+ control messages.  The reliable delivery
  122.    layer adds a simple acknowledge and retry mechanism.
  123.  
  124.    MP+ only takes network bandwidth when in the process of performing a
  125.    user request, e.g. adding and subtracting bandwidth.
  126.  
  127.    NOTE: Neither MP, or MP+ define the process that makes the bandwidth
  128.    requirement determination. That is outside the scope of either of
  129.    these protocols and will likely be implementation dependent.
  130.  
  131. 1.2  Conventions
  132.  
  133.    The following language conventions are used in the items of
  134.    specification in this document:
  135.  
  136.       MUST,  SHALL or  MANDATORY -- the item is an absolute requirement
  137.       of the specification.
  138.  
  139.       SHOULD or RECOMMENDED --   the item should generally be followed
  140.       for all but exceptional circumstances.
  141.  
  142.       MAY or OPTIONAL --  the item is truly optional and may be followed
  143.       or ignored according to the needs of the implementor.
  144.  
  145. 2.  General Overview
  146.  
  147.    PPP
  148.       In order to establish communications over a point-to-point link,
  149.       each end of the PPP [2] link must first send LCP packets to
  150.       configure the data link during  link establishment  phase.  After
  151.       the link has been established, PPP provides for an  authentication
  152.       phase.
  153.  
  154.    MP The goal of multilink operation is to  bundle  multiple
  155.       independent links between a fixed pair of systems, providing a
  156.       virtual link with greater bandwidth than any of the constituent
  157.       members.
  158.  
  159.    MP+ MP+ is also negotiated during initial LCP option negotiation.  A
  160.       system indicates to its peer that it is willing to do MP+ by
  161.       sending the  MP+ option as part of the initial LCP option
  162.       negotiation.  The  MP+  option MUST NOT be negotiated unless MP is
  163.       also negotiated. When used, MP+ adds a virtual unit-to-unit
  164.       control channel.
  165.  
  166.    A peer may elect to:
  167.  
  168.  
  169.  
  170. Smith                        Informational                      [Page 3]
  171.  
  172. RFC 1934                Multilink Protocol Plus               April 1996
  173.  
  174.  
  175.    Acknowledge both the MP and MP+ options, indicating that both MP and
  176.    MP+ will be used.
  177.  
  178.    Acknowledge the MP option and reject the MP+ option. Operation will
  179.    fall back to MP.
  180.  
  181.    Reject both options.  Standard PPP will be used for this connection.
  182.  
  183. 2.1. Operation
  184.  
  185.    Standard PPP
  186.       In standard PPP the LCP negotiation phase is followed by an
  187.       optional authentication phase, and then one or more NCPs are
  188.       initiated.
  189.  
  190.    PPP with MP The LCP negotiation phase and authentication phase are
  191.       identical to standard PPP.  The ability to initiate an MP
  192.       aggregate data link is indicated by sending an MP option - as
  193.       described in [1].
  194.  
  195.    PPP with MP and MP+ When MP+ is negotiated at LCP startup, the same
  196.       procedures are followed as when MP is negotiated alone.  The MP+
  197.       LCP option is negotiated to indicate the ability to use the MP+
  198.       feature.The first connection between endpoints causes the MP+
  199.       process to be started for the connection.
  200.  
  201. 3.  MP+ Frame Formats
  202.  
  203.                     +---------------+---------------+
  204.        PPP Header:  | Address 0xff  | Control 0x03  |
  205.                     +---------------+---------------+
  206.                     | PID(H)  0x00  | PID(L)  0x73  |
  207.                     +-+-+-+-+-------+---------------+
  208.        MP Header:   |1|1|0|0|0|0|0|1| seq # high    |
  209.                     +-+-+-+-+-------+---------------+
  210.                     |   sequence number low bits    |
  211.                     +---------------+---------------+
  212.                     |         control data          |
  213.                     |               .               |
  214.                     |               .               |
  215.                     |               .               |
  216.                     +---------------+---------------+
  217.        PPP FCS:     |              FCS              |
  218.                     +---------------+---------------+
  219.  
  220.    Figure 1: Multilink Plus Frame Format (long sequence number format)
  221.  
  222.  
  223.  
  224.  
  225.  
  226. Smith                        Informational                      [Page 4]
  227.  
  228. RFC 1934                Multilink Protocol Plus               April 1996
  229.  
  230.  
  231.                     +---------------+---------------+
  232.        PPP Header:  | Address 0xff  | Control 0x03  |
  233.                     +---------------+---------------+
  234.                     | PID(H)  0x00  | PID(L)  0x73  |
  235.                     +-+-+-+-+-------+---------------+
  236.        MP Header:   |1|1|0|1|  sequence number      |
  237.                     +-+-+-+-+-------+---------------+
  238.                     |         control data          |
  239.                     |               .               |
  240.                     |               .               |
  241.                     |               .               |
  242.                     +---------------+---------------+
  243.        PPP FCS:     |              FCS              |
  244.                     +---------------+---------------+
  245.  
  246.    Figure 2: Multilink Plus Frame Format (short sequence number format)
  247.  
  248.    MP+ frames use a similar structure to MP fragments.
  249.  
  250.    The MP+ assigned PID is designated 00 73.
  251.  
  252.    MP+ control uses the following two rules:
  253.  
  254.   - MP+ control frames have their own sequence number space,
  255.     controlled by MP+.
  256.  
  257.   - MP+ control frames MUST NOT be fragmented.
  258.  
  259. NOTE: Implementations of this protocol prior to the date of submission
  260.       of this specification to the IETF use the same PID as MP, but
  261.       sets the LSB of the reserved bits in the MP header to 1 - this
  262.       is how the MP+ packets are discriminated from MP fragments.
  263.       So the header of the MP+ packet looks like:
  264.  
  265.                 00 3d c1 ......
  266.  
  267.       As compared to an MP packet that looks like:
  268.  
  269.                 00 3d c0 ......  or
  270.                 00 3d 80 ......  or
  271.                 00 3d 40 ......
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282. Smith                        Informational                      [Page 5]
  283.  
  284. RFC 1934                Multilink Protocol Plus               April 1996
  285.  
  286.  
  287. 3.1. Error Control (EC) Layer (MP+ control only)
  288.  
  289.    The error control layer that runs over the virtual inband channel is
  290.    as simple as it can get, while handling the possibility of errors on
  291.    the line.
  292.  
  293.    An assumption is made that errors are infrequent, and that at the
  294.    same time messages are rarely, if ever, dropped on the floor. The
  295.    implication of this is that "timing out" on retransmission of
  296.    messages does no harm.  If a message cannot get through, then it
  297.    simply is retried some number of times.  After giving up, the only
  298.    recourse is to notify the call management layer (of MP) that the
  299.    session has died.
  300.  
  301.                     +---------------+---------------+
  302.        PPP Header:  | Address 0xff  | Control 0x03  |
  303.                     +---------------+---------------+
  304.                     | PID(H)  0x00  | PID(L)  0x73  |
  305.                     +-+-+-+-+-------+---------------+
  306.        MP+ Header:  |1|1|0|0|0|0|0|1| seq # high    |
  307.                     +-+-+-+-+-------+---------------+
  308.                     |   sequence number low bits    |
  309.                     +---------------+---------------+
  310.         EC Header:  | Error Control Message Type    |
  311.                     |   32 bits reserved            |
  312.                     +---------------+---------------+
  313.          MP+ Data:  |    MP+ Message                |  May not be
  314.                     |                               |  present.
  315.  
  316.    Figure 3: MP+ control message format (shown long sequence number
  317.              format)
  318.  
  319.   Error Control Message Type:
  320.  
  321.    1      DATA_MSG:         This message contains MP+ data transferred
  322.                             between the peers.
  323.  
  324.    2      ACK_MSG:          An acknowledgement of a previous data message.
  325.  
  326.    When set to DATA_MSG, the remainder of the frame contains an MP+
  327.    Control message.
  328.  
  329.    When set to ACK_MSG, the remainder of the frame consists only of the
  330.    PPP Frame Check Sum (FCS).
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338. Smith                        Informational                      [Page 6]
  339.  
  340. RFC 1934                Multilink Protocol Plus               April 1996
  341.  
  342.  
  343. 3.1.1. Error Control State Machine
  344.  
  345.    This layer is controlled by a simple state machine.  There are three
  346.    states:
  347.  
  348.    Stopped        There is no connection between peers.
  349.  
  350.    Idle           There is a connection between peers;
  351.                   no unacknowledged messages pending.
  352.  
  353.    Pending        There is a connection between peers;
  354.                   awaiting an acknowledgement to the
  355.                   last message sent.
  356.  
  357.    Messages from the call management layer are queued for transmission
  358.    whenever the link is in the  pending  state.  For simplicity, only
  359.    one outstanding message may be in the link at any given time.  The
  360.    entire procedure is defined in table 1.
  361.  
  362. Event                           State
  363. ______________________________________________________________________
  364.                                 Stopped    Idle         Pending
  365. ======================================================================
  366. Start                           1,Idle     -,*          -,*
  367. ______________________________________________________________________
  368. Received ACK_MSG                **         2,Start      5,Idle|Pending
  369. current tx sequence number
  370. ______________________________________________________________________
  371. Received ACK_MSG                **         -,*          -,*
  372. last tx sequence number
  373. ______________________________________________________________________
  374. Received ACK_MSG                **         2,Start      2,Start
  375. other tx sequence number
  376. ______________________________________________________________________
  377. Received DATA_MSG               **         6,*          6,*
  378. current rx sequence number
  379. ______________________________________________________________________
  380. Received DATA_MSG               **         7,*          7,*
  381. previous rx sequence number
  382. ______________________________________________________________________
  383. Received DATA_MSG               **         2,Start      2,Start
  384. other rx sequence number
  385. ______________________________________________________________________
  386. Receive Invalid Frame           **         2,Start      2,Start
  387. ______________________________________________________________________
  388. Retransmit Timer Expire         **         **           4,Start|*
  389. ______________________________________________________________________
  390.  
  391.  
  392.  
  393.  
  394. Smith                        Informational                      [Page 7]
  395.  
  396. RFC 1934                Multilink Protocol Plus               April 1996
  397.  
  398.  
  399. ______________________________________________________________________
  400. Transmit Request from call      -,*        3,Pending    8,*
  401. management layer
  402. ______________________________________________________________________
  403. Stop                            9,Start    9,Start      9,Start
  404. ______________________________________________________________________
  405.  
  406.                   Table 1: Error Control State Machine
  407.  
  408. Legend:
  409.  
  410.         -       No action
  411.  
  412.         *       Stay in same state
  413.  
  414.         **      Invalid or meaningless event for state, ignored.
  415.  
  416. Notes:
  417.  
  418.    [1] Data from the call management layer will always be copied before
  419.        being queued for transmission.  The call management layer is
  420.        responsible for its own buffers.
  421.  
  422.    [2] MP always copies data for transmission and returns immediately.
  423.        Any buffers allocated to build control messages MUST be released
  424.        immediately upon return from MP transmission requests.
  425.  
  426. Actions:
  427.  
  428.    1       Reset rx sequence number
  429.            Reset tx sequence number
  430.            Reset tx retransmit count
  431.            Stop retransmit timer
  432.  
  433.    2       Report error to user
  434.            Stop retransmit timer
  435.            Stop frame transmit timer
  436.            Free buffers
  437.  
  438.    3       Save call management message in pending transmit queue
  439.            Build DATA_MSG from first message in pending transmit
  440.            queue using current tx sequence number.
  441.            Send message to MP for transmission.
  442.            Reset tx retransmit count
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450. Smith                        Informational                      [Page 8]
  451.  
  452. RFC 1934                Multilink Protocol Plus               April 1996
  453.  
  454.  
  455.    4       Increment tx retransmit count
  456.            If tx retransmit count >= RETRANSMIT_COUNT
  457.                    Action 2 (followed by state change to the Start state)
  458.            else
  459.                    Build DATA_MSG from first message in pending
  460.                    transmit queue using current tx sequence number.
  461.                    Send message to MP for transmission.
  462.  
  463.    5       Dequeue first element on pending transmit queue and release
  464.            its buffer
  465.            Increment the tx sequence number
  466.            Stop the retransmit timer
  467.            if pending transmit queue not empty
  468.                    Build DATA_MSG from first message in pending
  469.                    transmit queue using current tx sequence number.
  470.                    Send message to MP for transmission.
  471.                    Reset tx retransmit count
  472.  
  473.    6       Build ACK_MSG using the current rx sequence number
  474.            Send ack message to MP for transmission
  475.            Pass message to call managment layer
  476.            Increment rx sequence number
  477.  
  478.    7       Build ACK_MSG using the previous rx sequence number
  479.            Send the ack message to MP for transmission
  480.  
  481.    8       Add the message to the end of the pending transmit queue
  482.  
  483.    9       Stop retransmit timer
  484.            Free buffers
  485.  
  486. 3.2. Multilink Plus Control Messages
  487.  
  488.     Message Type                Value
  489.     VERSION_EXCHANGE_REQ        1
  490.     VERSION_EXCHANGE_RSP        2
  491.     ADD_REQ                     3
  492.     ADD_RSP                     4
  493.     ADD_COMPLETE                5
  494.     REMOVE_REQ                  6
  495.     REMOVE_RSP                  7
  496.     REMOVE_COMPLETE             8
  497.     CLOSE_REQ                   9
  498.     CLOSE_RSP                   10
  499.     REMOTE_MGMT_REQ             11
  500.     REMOTE_MGMT_RSP             12
  501.     REMOTE_MGMT_RX_REQ          13
  502.     REMOTE_MGMT_TX_REQ          14
  503.  
  504.  
  505.  
  506. Smith                        Informational                      [Page 9]
  507.  
  508. RFC 1934                Multilink Protocol Plus               April 1996
  509.  
  510.  
  511.     REMOTE_MGMT_TX_RSP          15
  512.     CLEAR_REQ                   16
  513.  
  514. 3.3. Multilink Plus Message Formats
  515.  
  516.    The fields of all messages defined here MUST be encoded/decoded in
  517.    Network Byte Order (big endian).
  518.  
  519. 3.3.1. VERSION_EXCHANGE_REQ Message Format
  520.  
  521.    The version exchange message is sent by the call originator to inform
  522.    the answerer the version of the MP+ protocol being used as well as
  523.    any other information that may need to be conveyed outside of the
  524.    normal PPP parameter negotiation.
  525.  
  526.    +---------------+---------------+
  527.    |         Message type          |
  528.    |          0x00000001           |
  529.    +---------------+---------------+
  530.    |       Protocol Version        |
  531.    +---------------+---------------+
  532.    |      Protocol Revision        |
  533.    +---------------+---------------+
  534.    |       Session Identifier      |
  535.    +---------------+---------------+
  536.    |         Hardware Type         |
  537.    +---------------+---------------+
  538.    |          Nailed Mode          |
  539.    +---------------+---------------+
  540.    |   Use Multiple Trunk Groups   |
  541.    +---------------+---------------+
  542.    |       Descriptor Length       |
  543.    +---------------+---------------+
  544.    |          Descriptor           |
  545.    +---------------+---------------+
  546.  
  547.    Figure 4:  Version Exchange Request
  548.  
  549.    A message sent from call originator to call answerer specifying the
  550.    callers protocol version and other state info and requesting the
  551.    answerer to respond with its version info.
  552.  
  553.    Protocol Version:
  554.            caller MP+ protocol version number.
  555.            2 octets fixed length (initially 1)
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562. Smith                        Informational                     [Page 10]
  563.  
  564. RFC 1934                Multilink Protocol Plus               April 1996
  565.  
  566.  
  567.    Protocol Revision:
  568.            caller MP+ protocol revision number.
  569.            2 octets fixed length (initially 4)
  570.  
  571.    Session Identifier:
  572.            A non-zero identifier unique to the caller.
  573.            2 octets fixed length.
  574.  
  575.    Hardware Type:
  576.            caller hardware type (can be vendor defined).
  577.            2 octets fixed length.
  578.  
  579.    Nailed Mode:
  580.            caller nailed mode from the session profile.
  581.            2 octets fixed length.
  582.  
  583.    Use Multiple Trunk Groups:
  584.            non-zero if the call may use channels from multiple trunk
  585.            groups.
  586.            2 octets fixed length
  587.  
  588.    Descriptor Length:
  589.            length of the end point descriptor.
  590.            2 octets fixed length
  591.  
  592.    Descriptor:
  593.            the end point descriptor. This field allows for vendor
  594.            specific identification of the peer.
  595.            Variable length as defined above.
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618. Smith                        Informational                     [Page 11]
  619.  
  620. RFC 1934                Multilink Protocol Plus               April 1996
  621.  
  622.  
  623. 3.3.2. VERSION_EXCHANGE_RSP Message Format
  624.  
  625.    The version exchange response message is sent by the call answerer in
  626.    response to a version exchange request message.   The answerer uses
  627.    the message to inform the caller the version of the MP+ protocol
  628.    being used as well as any other information that needs to be conveyed
  629.    outside of the normal PPP parameter negotiation.
  630.  
  631.    +---------------+---------------+
  632.    |         Message type          |
  633.    |          0x00000002           |
  634.    +---------------+---------------+
  635.    |      Protocol Version         |
  636.    +---------------+---------------+
  637.    |     Protocol Revision         |
  638.    +---------------+---------------+
  639.    |       Session Identifier      |
  640.    +---------------+---------------+
  641.    |         Hardware Type         |
  642.    +---------------+---------------+
  643.    |          Nailed Mode          |
  644.    +---------------+---------------+
  645.    |   Use Multiple Trunk Groups   |
  646.    +---------------+---------------+
  647.    |       Descriptor Length       |
  648.    +---------------+---------------+
  649.    |         Descriptor            |
  650.    +---------------+---------------+
  651.  
  652.    Figure 5: Version Exchange Response
  653.  
  654.    A message sent from call answerer to the call originator specifying
  655.    the answerers protocol version and other state info.  Sent in
  656.    response to receiving a version exchange request.
  657.  
  658.    Protocol Version:
  659.            caller MP+ protocol version number.
  660.            2 octets fixed length (initially 1)
  661.  
  662.    Protocol Revision:
  663.            caller MP+ protocol revision number.
  664.            2 octets fixed length (initially 4)
  665.  
  666.    Session Identifier:
  667.            A non-zero identifier unique to the answerer.
  668.            2 octets fixed length.
  669.  
  670.  
  671.  
  672.  
  673.  
  674. Smith                        Informational                     [Page 12]
  675.  
  676. RFC 1934                Multilink Protocol Plus               April 1996
  677.  
  678.  
  679.    Hardware Type:
  680.            caller hardware type (can be vendor defined).
  681.            2 octets fixed length.
  682.  
  683.    Nailed Mode:
  684.            caller nailed mode from the session profile.
  685.            2 octets fixed length.
  686.  
  687.    Use Multiple Trunk Groups:
  688.            non-zero if call may use channels from multiple trunk groups.
  689.            2 octets fixed length
  690.  
  691.    Descriptor Length:
  692.            length of the remote descriptor in 4-octet units.
  693.            2 octets fixed length
  694.  
  695.    Descriptor:
  696.            the remote unit descriptor. This field allows for vendor
  697.            specific identification of the peer.
  698.            Variable length Nx4 octets long - total length defined above.
  699.  
  700. 3.3.3. ADD_REQ Message Format
  701.  
  702.    A message of this type is sent by either caller or answerer to
  703.    initiate an increase of bandwidth.  When sent by the caller the
  704.    request is asking for permission to dial a certain number of
  705.    channels; the response will contain permission and the phone numbers
  706.    of the channels to dial.  When sent by the answerer, this message
  707.    contains the phone numbers to dial.  The message looks like:
  708.  
  709.    +---------------+---------------+
  710.    |         Message type          |
  711.    |          0x00000003           |
  712.    +---------------+---------------+
  713.    | Number of channels requested  |
  714.    +---------------+---------------+
  715.    |    Number of phone numbers    |
  716.    +---------------+---------------+
  717.    |    A phone number list for    |
  718.    |      each phone number        |
  719.    |               .               |
  720.    |               .               |
  721.    |               .               |
  722.    +---------------+---------------+
  723.  
  724.    Figure 6: Add Request
  725.  
  726.  
  727.  
  728.  
  729.  
  730. Smith                        Informational                     [Page 13]
  731.  
  732. RFC 1934                Multilink Protocol Plus               April 1996
  733.  
  734.  
  735.    A message sent by either caller or answerer to request that additional
  736.    bandwidth be added to a session.
  737.  
  738.    Number of channels requested:
  739.            The maximum number of channels to add.
  740.            2 octets fixed length.
  741.  
  742.    Number of phone numbers:
  743.            The number of phone numbers provided.  This
  744.            value will always be zero when the caller
  745.            initiates an add and will be at least
  746.            Number of channels requested when the answerer
  747.            initiates the add.
  748.            2 octets fixed length.
  749.  
  750.    Phone number list:
  751.            A list of up to 32 phone number lists
  752.            containing the phone numbers to call.
  753.            Each description is of fixed length as described below:
  754.  
  755.            Each phone number is represented by a phone number list.
  756.            The format of a phone number list is:
  757.  
  758.    +---------------+---------------+
  759.    |          in use flag          |
  760.    +---------------+---------------+
  761.    |        call service type      |
  762.    +---------------+---------------+
  763.    |         Phone number          |
  764.    |          20 octets            |
  765.    |     plus null terminator      |
  766.    |       (21 octet total)        |
  767.    |                               |
  768.    |                               |
  769.    |                               |
  770.    |                               |
  771.    |                               |
  772.    |                               |
  773.    |               +---------------+
  774.    |               |  Must be 0    |
  775.    +---------------+---------------+
  776.    |           must be 0           |
  777.    +---------------+---------------+
  778.  
  779.    Figure 7: Phone number list
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786. Smith                        Informational                     [Page 14]
  787.  
  788. RFC 1934                Multilink Protocol Plus               April 1996
  789.  
  790.  
  791.    A structure containing information about a connection within the
  792.    system.
  793.  
  794.    in use flag:
  795.            non-zero if the phone number indicated
  796.            in this descriptor is currently in use.
  797.            2 octets fixed length
  798.  
  799.    call service type:
  800.            Defines the type of service, switched, nailed,
  801.            or other, associated with a phone number.
  802.            1       Nailed
  803.            2       Switched
  804.            >=3     Undefined
  805.  
  806.    Phone number:
  807.            The null terminated phone number of this channel.
  808.            Fixed length 21 octets. Each octet contains IA5 character
  809.            representation of a digit (or #, *).
  810.  
  811.    Must be 0:
  812.            Filler to force alignment to 32-bit boundary.
  813.  
  814. 3.3.4 ADD_RSP Message Format
  815.  
  816.    A message of this type gives permission to dial some number of
  817.    channels and, when sent by the answerer of the original call, gives
  818.    the phone numbers of channels to dial.
  819.  
  820.    +---------------+---------------+
  821.    |         Message type          |
  822.    |          0x00000004           |
  823.    +---------------+---------------+
  824.    |  Number of channels allowed   |
  825.    +---------------+---------------+
  826.    |    Number of phone numbers    |
  827.    +---------------+---------------+
  828.    |   A  phone number list for    |
  829.    |      each phone number        |
  830.    |               .               |
  831.    |               .               |
  832.    |               .               |
  833.    +---------------+---------------+
  834.  
  835.    Figure 8: Add Response
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842. Smith                        Informational                     [Page 15]
  843.  
  844. RFC 1934                Multilink Protocol Plus               April 1996
  845.  
  846.  
  847.    A message sent by either caller or answerer to indicate the number of
  848.    channels that may be added to a session.
  849.  
  850.    Number of channels allowed:
  851.            The actual number of channels to add.  This
  852.            may be less than the number requested.
  853.            2 octets fixed length.
  854.  
  855.    Number of phone numbers:
  856.            The number of phone numbers provided.  This
  857.            value will always be zero when sent by the
  858.            caller and will be at least channelCount
  859.            when sent by the answerer.
  860.            2 octets fixed length.
  861.  
  862.    Phone number list:
  863.            A list of up to 32 phone number lists
  864.            containing the phone numbers to call.
  865.            Each description is of fixed length as described above.
  866.  
  867. 3.3.5. ADD_COMPLETE Message Format
  868.  
  869.    This message is sent by the caller to the answerer after all calls
  870.    have been placed.  The message is used to notify the answerer that
  871.    the add transaction is complete and it may return to the idle state.
  872.  
  873.    +---------------+---------------+
  874.    |         Message type          |
  875.    |          0x00000005           |
  876.    +---------------+---------------+
  877.    |       Channels added          |
  878.    +---------------+---------------+
  879.    |          Must be zero         |
  880.    +---------------+---------------+
  881.  
  882.    Figure 9: Add Complete
  883.  
  884.    A message sent by caller to indicate the number of channels that were
  885.    added successfully. This message was added in MP+ Version 1.1.
  886.  
  887.    Channels added:
  888.            The actual number of channels added.
  889.            2 octets fixed length
  890.  
  891.    Must be zero:
  892.            Padding to 32-bit boundary.
  893.            2 octets fixed length
  894.  
  895.  
  896.  
  897.  
  898. Smith                        Informational                     [Page 16]
  899.  
  900. RFC 1934                Multilink Protocol Plus               April 1996
  901.  
  902.  
  903. 3.3.6. REMOVE_REQ Message Format
  904.  
  905.    A message of this type is sent when a peer decides, for any reason,
  906.    to remove channels from use.  The purpose of the message is to tell
  907.    the remote end of the remove and give it a chance to adjust the
  908.    number of channels to remove.
  909.  
  910.    +---------------+---------------+
  911.    |         Message type          |
  912.    |          0x00000006           |
  913.    +---------------+---------------+
  914.    | Number of channels to remove  |
  915.    +---------------+---------------+
  916.    |          Must be zero         |
  917.    +---------------+---------------+
  918.  
  919.    Figure 10: Remove Request
  920.  
  921.    A message sent by either caller or answerer to request that bandwidth
  922.    be removed from a session.
  923.  
  924.    Number of channels to remove:
  925.            The maximum number of channels to remove.
  926.            2 octets fixed length
  927.  
  928.    Must be zero:
  929.            Padding to 32-bit boundary.
  930.            2 octets fixed length
  931.  
  932. 3.3.7. REMOVE_RSP Message Format
  933.  
  934.    This message is sent in response to a remove request.  The responder
  935.    specifies the number of channels that can be removed.  If the
  936.    response specifies 0 channels the remove is cancelled.
  937.  
  938.    +---------------+---------------+
  939.    |         Message type          |
  940.    |          0x00000007           |
  941.    +---------------+---------------+
  942.    | Number of channels to remove  |
  943.    +---------------+---------------+
  944.    |          Must be zero         |
  945.    +---------------+---------------+
  946.  
  947.    Figure 11: Remove Response
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954. Smith                        Informational                     [Page 17]
  955.  
  956. RFC 1934                Multilink Protocol Plus               April 1996
  957.  
  958.  
  959.    A message sent in response to a remove request specifying the number
  960.    of channels that the peer agrees can be removed.
  961.  
  962.    Number of channels to remove:
  963.            The maximum number of channels to remove.
  964.            May be zero, in which case the remove is
  965.            cancelled.
  966.            2 octets fixed length
  967.  
  968.    Must be zero:
  969.            Padding to 32-bit boundary.
  970.            2 octets fixed length
  971.  
  972. 3.3.8. REMOVE_COMPLETE Message Format
  973.  
  974.    This message is sent by the initiator of a remove transaction when
  975.    the agreed upon number of channels have been removed.  The message is
  976.    used to notify the peer that the remove transaction is complete and
  977.    it may return to the idle state.
  978.  
  979.    +---------------+---------------+
  980.    |         Message type          |
  981.    |          0x00000008           |
  982.    +---------------+---------------+
  983.    | Number of channels removed    |
  984.    +---------------+---------------+
  985.    |          Must be zero         |
  986.    +---------------+---------------+
  987.  
  988.    Figure 12: Remove Complete
  989.  
  990.    A message sent by the caller or answerer to indicate how many channels
  991.    were actually removed. This message was added in MP+ CM version 1.1.
  992.  
  993.    Number of channels removed:
  994.            The number of channels that were removed.
  995.            2 octets fixed length
  996.  
  997.    Must be zero:
  998.            Padding to 32-bit boundary.
  999.            2 octets fixed length
  1000.  
  1001.  
  1002.  
  1003.  
  1004.  
  1005.  
  1006.  
  1007.  
  1008.  
  1009.  
  1010. Smith                        Informational                     [Page 18]
  1011.  
  1012. RFC 1934                Multilink Protocol Plus               April 1996
  1013.  
  1014.  
  1015. 3.3.9. CLOSE_REQ Message Format
  1016.  
  1017.    This message is sent when the peer requests to close the whole
  1018.    session.  This is typically due to a configuration option that
  1019.    indicates when a system should request to close the session (an
  1020.    example being, a link has been idle for greater than a preconfigured
  1021.    time period).
  1022.  
  1023.    +---------------+---------------+
  1024.    |         Message type          |
  1025.    |          0x00000009           |
  1026.    +---------------+---------------+
  1027.  
  1028.    Figure 13: MP+ close request.
  1029.  
  1030.    There are no data fields associated with this message.
  1031.  
  1032. 3.3.10. CLOSE_RSP Message Format
  1033.  
  1034.    If the peer agrees that closing the session is acceptable based on
  1035.    it's own configuration (an example reject reason would be that the
  1036.    peer is configured with a *minimum* number of channels to keep
  1037.    active).
  1038.  
  1039.    +---------------+---------------+
  1040.    |         Message type          |
  1041.    |          0x0000000a           |
  1042.    +---------------+---------------+
  1043.    |          OK To Close          |
  1044.    +---------------+---------------+
  1045.    |          Must be zero         |
  1046.    +---------------+---------------+
  1047.  
  1048.    Figure 14: MP+ close response
  1049.  
  1050.    The response to a close request. May be sent by caller or answerer.
  1051.  
  1052.    OK To Close:
  1053.            If non-zero, peer said I can close all channels.
  1054.            2 octets fixed length
  1055.  
  1056.    Must be zero:
  1057.            Padding to 32-bit boundary.
  1058.            2 octets fixed length
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066. Smith                        Informational                     [Page 19]
  1067.  
  1068. RFC 1934                Multilink Protocol Plus               April 1996
  1069.  
  1070.  
  1071. 3.3.11. REMOTE_MGMT_REQ Message Format
  1072.  
  1073.    This message is sent from a master station to a slave station when
  1074.    the master wishes to manage the remote station.  The message is also
  1075.    used to cancel remote management once it's been started.
  1076.  
  1077.    +---------------+---------------+
  1078.    |         Message type          |
  1079.    |          0x0000000b           |
  1080.    +---------------+---------------+
  1081.    |              Mode             |
  1082.    +---------------+---------------+
  1083.    |          Must be zero         |
  1084.    +---------------+---------------+
  1085.  
  1086.    Figure 15: Remote Management Request
  1087.  
  1088.    A message sent from master to slave to initiate or clear a remote
  1089.    management session.
  1090.  
  1091.    Mode:
  1092.            One to start session. Zero to stop session.
  1093.            2 octets fixed length
  1094.  
  1095.    Must be zero:
  1096.            Padding to 32-bit boundary.
  1097.            2 octets fixed length
  1098.  
  1099. 3.3.12. REMOTE_MGMT_RSP Message Format
  1100.  
  1101.    The slave side of a remote management session has the opportunity to
  1102.    reject remote management.  The master side is informed of accept/deny
  1103.    status via the remote management response.
  1104.  
  1105.    +---------------+---------------+
  1106.    |         Message type          |
  1107.    |          0x0000000c           |
  1108.    +---------------+---------------+
  1109.    |              Mode             |
  1110.    +---------------+---------------+
  1111.  
  1112.    Figure 16: Remote Management Response
  1113.  
  1114.    A message sent from slave to master to allow or deny initiation of a
  1115.    remote management session.
  1116.  
  1117.  
  1118.  
  1119.  
  1120.  
  1121.  
  1122. Smith                        Informational                     [Page 20]
  1123.  
  1124. RFC 1934                Multilink Protocol Plus               April 1996
  1125.  
  1126.  
  1127.    Mode:
  1128.            One to accept session. Zero to deny session.
  1129.            2 octets fixed length
  1130.  
  1131.    Must be zero:
  1132.            Padding to 32-bit boundary.
  1133.            2 octets fixed length
  1134.  
  1135. 3.3.13. REMOTE_MGMT_RX_REQ Message Format
  1136.  
  1137.    This message type is used to convey keyboard input from the
  1138.    management master to be processed by the management slave.  The
  1139.    message format consists of an octet count (in network byte order) and
  1140.    then an array of octets to be processed.  It looks like:
  1141.  
  1142.    +---------------+---------------+
  1143.    |         Message type          |
  1144.    |          0x0000000d           |
  1145.    +---------------+---------------+
  1146.    |         character count       |
  1147.    +---------------+---------------+
  1148.    |      array of characters      |
  1149.    |               .               |
  1150.    |               .               |
  1151.    |               .               |
  1152.    +---------------+---------------+
  1153.  
  1154.    Figure 17: Remote Management Receive Request
  1155.  
  1156.    A message sent from master to slave, conveying keystrokes typed on the
  1157.    masters keyboard that will be processed by the slave.
  1158.  
  1159.    character count:
  1160.            Number of characters to process.
  1161.            2 octets fixed length
  1162.  
  1163.    array of characters:
  1164.            Array of characters to process.
  1165.  
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178. Smith                        Informational                     [Page 21]
  1179.  
  1180. RFC 1934                Multilink Protocol Plus               April 1996
  1181.  
  1182.  
  1183. 3.3.14. REMOTE_MGMT_TX_REQ Message Format
  1184.  
  1185.    The remote management slave conveys output to be displayed on the
  1186.    masters terminal with a remote management transmit request message.
  1187.    Only one message may be outstanding.  The next transmit request may
  1188.    not be sent until the previous has been acknowledged.
  1189.  
  1190.    +---------------+---------------+
  1191.    |         Message type          |
  1192.    |          0x0000000e           |
  1193.    +---------------+---------------+
  1194.    |         character count       |
  1195.    +---------------+---------------+
  1196.    |      array of characters      |
  1197.    |               .               |
  1198.    |               .               |
  1199.    |               .               |
  1200.    +---------------+---------------+
  1201.  
  1202.    Figure 18: Remote Management Transmit Request
  1203.  
  1204.    A message sent from slave to master, conveying output to be output on
  1205.    the master's display.
  1206.  
  1207.    Character count:
  1208.            Number of characters to process.
  1209.            2 octets fixed length
  1210.  
  1211.    array of characters:
  1212.            Array of characters to process.
  1213.  
  1214. 3.3.15. REMOTE_MGMT_TX_RSP Message Format
  1215.  
  1216.    This message is used to acknowledge remote management transmit
  1217.    requests.  The slave may send the next transmit request once this
  1218.    message has been received.
  1219.  
  1220.    +---------------+---------------+
  1221.    |         Message type          |
  1222.    |          0x0000000f           |
  1223.    +---------------+---------------+
  1224.  
  1225.    Figure 19: Remote Management Transmit Response
  1226.  
  1227.    There are no data fields associated with this message.
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234. Smith                        Informational                     [Page 22]
  1235.  
  1236. RFC 1934                Multilink Protocol Plus               April 1996
  1237.  
  1238.  
  1239. 3.3.16. CLEAR_REQ Message Format
  1240.  
  1241.    A message sent to initiate a friendly shutdown of an  MP+ link.  The
  1242.    sender will stop sending data immediately.  The receiver of the
  1243.    message will also stop sending user data and start a clean shutdown
  1244.    of all NCPs and the LCP of each member link of the bundle.  When the
  1245.    last member link terminates, the session is completely closed.
  1246.  
  1247.    +---------------+---------------+
  1248.    |         Message type          |
  1249.    |          0x00000010           |
  1250.    +---------------+---------------+
  1251.  
  1252.    Figure 20: Clear Request
  1253.  
  1254.    There are no data fields associated with this message.
  1255.  
  1256. 3.4. Events
  1257.  
  1258.    The MP+ state machine is event driven. Reception of an event triggers
  1259.    an action and possibly a state change. The events processed by the
  1260.    MP+ state machine can be roughly classed into two types:
  1261.  
  1262.       Events that originate within the unit, e.g. notification that a
  1263.       call has cleared, an  MP+ session may be started, etc.
  1264.  
  1265.       Events that originate with the reception of an  MP+ control
  1266.       message from the peer unit.
  1267.  
  1268.    Both types are processed by the state machine in the sequence they
  1269.    occurred. The events processed are:
  1270.  
  1271.    MP+START_SESSION:    Notification from PPP/MP that an
  1272.                         MP+ session is starting.
  1273.  
  1274.    MP+SESSION_DOWN:     Notification from the error-control
  1275.                         layer that end-to-end connectivity
  1276.                         has been lost and control messages can
  1277.                         not be delivered.
  1278.  
  1279.    MP+SESSION_TERM:     Session termination notification from
  1280.                         PPP/MP.  This event is not sent until
  1281.                         the last channel of a multi-channel
  1282.                         session is cleared.
  1283.  
  1284.    MP+TIMER_EXPIRED:    Timers are used in various states and
  1285.                         sub-states.  This event is signaled whenever
  1286.                         a timer expires.
  1287.  
  1288.  
  1289.  
  1290. Smith                        Informational                     [Page 23]
  1291.  
  1292. RFC 1934                Multilink Protocol Plus               April 1996
  1293.  
  1294.  
  1295.  
  1296.    MP+CALL_COMPLETE:    A call placed during an add request has
  1297.                         completed.  The call may have succeeded or
  1298.                         failed.
  1299.  
  1300.    MP+UTILIZATION:      Notification from MP/PPP that link
  1301.                         utilization has crossed a threshold and that
  1302.                         channels may need to be added/removed.
  1303.                         (The number of channels to add/remove will be
  1304.                          passed with the notification).
  1305.  
  1306.    MP+RX_VERSION_REQ:   A Version Exchange request message has
  1307.                         been received from the peer.
  1308.  
  1309.    MP+RX_VERSION_RSP:   A Version Exchange response message has
  1310.                         been received from the peer.
  1311.  
  1312.    MP+ADD_REQ:          An Add request message has been received
  1313.                         from the peer.
  1314.  
  1315.    MP+ADD_RSP:          An Add response message has been received
  1316.                         from the peer.
  1317.  
  1318.    MP+ADD_COMP:         An Add Complete message has been received
  1319.                         from the peer.
  1320.  
  1321.  
  1322.    MP+REMOVE_REQ:       A Remove request message has been received
  1323.                         from the peer.
  1324.  
  1325.    MP+REMOVE_RSP:       A Remove response message has been
  1326.                         received from the peer.
  1327.  
  1328.    MP+REMOVE_COMP:      A Remove Complete message has been received
  1329.                         from the peer.
  1330.  
  1331.    MP+RX_RM_REQ:        A Remote Management request has been received
  1332.                         from the peer.
  1333.  
  1334.    MP+RX_RM_RSP:        A Remote Management response has been received
  1335.                         from the peer.
  1336.  
  1337.    MP+RX_RM_RX_REQ:     A Remote Management Receive Request has been
  1338.                         received from the far end.
  1339.  
  1340.    MP+RX_RM_TX_REQ:     A Remote Management Transmit Request has
  1341.                         been received from the peer.
  1342.  
  1343.  
  1344.  
  1345.  
  1346. Smith                        Informational                     [Page 24]
  1347.  
  1348. RFC 1934                Multilink Protocol Plus               April 1996
  1349.  
  1350.  
  1351.    MP+RX_RM_TX_RSP:     A Remote Management Transmit Response has
  1352.                         been received from the peer.
  1353.  
  1354.    MP+RX_CLEAR:         A request to shut down the session has been
  1355.                         received from the peer.
  1356.  
  1357.    MP+CLOSE_REQ:        A Close Request message has been received
  1358.                         from the peer.
  1359.  
  1360.    MP+CLOSE_RSP:        A Close Response message has been received
  1361.                         from the peer.
  1362.  
  1363.    MP+START_RM          Request to start a remote management session
  1364.                         with this station being the master.
  1365.  
  1366.    MP+SEND_RMS:         Request to send data to a remote management
  1367.                         master from a slave.
  1368.  
  1369.    MP+SEND_RMM:         Request to send data to a remote management
  1370.                         slave from a master.
  1371.  
  1372.    MP+RECV_RMM:         Request to send an ack to a remote management
  1373.                         slave for data received from the slave.
  1374.  
  1375.    MP+STOP_RM:          Request to stop a remote management session.
  1376.  
  1377. 3.5. State Machine
  1378.  
  1379. 3.5.1 States
  1380.  
  1381.    To ease readability and understanding the major states are considered
  1382.    as separate state machines, each having two to four sub-states. The
  1383.    sub-states are named by the letters, A, B, C, and D. State
  1384.    information is maintained for every interface.
  1385.  
  1386.    The major states are:
  1387.  
  1388.    MP+STATE_INITIAL: The state of an unused session. Session table
  1389.                      entries are intialized to this state at startup
  1390.                      and return to this state when sessions are
  1391.                      terminated.
  1392.  
  1393.    MP+STATE_IDLE:    The state of an active session that is not
  1394.                      performing any MP+ function.
  1395.  
  1396.    MP+STATE_ADD:     The state of a session when an add transaction is
  1397.                      in progress.
  1398.  
  1399.  
  1400.  
  1401.  
  1402. Smith                        Informational                     [Page 25]
  1403.  
  1404. RFC 1934                Multilink Protocol Plus               April 1996
  1405.  
  1406.  
  1407.    MP+STATE_REMOVE:  The state of a session when a remove transaction is
  1408.                      in progress.
  1409.  
  1410.    MP+STATE_CLOSE:   The state of a session that is in the process of
  1411.                      being closed.
  1412.  
  1413.    State transitions are triggered by the reception of an event.  Tables
  1414.    2 through 6 contain the state tables for the major states.  All state
  1415.    tables use the following symbols.
  1416.  
  1417.         -       No action
  1418.  
  1419.         *       Stay in same state
  1420.  
  1421.         +       Target state is defined by the action taken
  1422.  
  1423.         **      An error has occurred, log an error message but no
  1424.                 state change.
  1425.  
  1426.    States and sub-state transitions are noted as state:sub-state, e.g.,
  1427.    initial:A.  Alternative transitions are listed on separate lines.
  1428.  
  1429. 3.5.2 Common Actions
  1430.  
  1431.    Some actions are common to all states, they are defined here.
  1432.  
  1433. Error Close Action
  1434.  
  1435.         Called to close a session when an error occurs. Actions are:
  1436.  
  1437.         [1]  Stop timer if running.
  1438.  
  1439.         [2]  Log an error message.
  1440.  
  1441.         [3]  Close the MP+EC layer for this session.
  1442.  
  1443.         [4]  Close MP for this session
  1444.  
  1445.         [5]  Clean up, restore state variables to their initial state.
  1446.  
  1447. Term Action
  1448.  
  1449.         Processed when a MP+SESSION_TERM event occurs in most states.
  1450.         Actions are:
  1451.  
  1452.         [1]  Stop timer if running.
  1453.  
  1454.         [2]  Close the  MP+EC layer for this session.
  1455.  
  1456.  
  1457.  
  1458. Smith                        Informational                     [Page 26]
  1459.  
  1460. RFC 1934                Multilink Protocol Plus               April 1996
  1461.  
  1462.  
  1463.         [3]  Call the passed termination callback function if not null.
  1464.  
  1465.         [4]  Clean up, restore state variables to their initial state.
  1466.  
  1467. Ignore Action
  1468.  
  1469.         We don't care about this event in this state.  Do nothing.
  1470.  
  1471. Timer Action
  1472.  
  1473.         This action is called when a timer expires in one of the on-line
  1474.         states. The timer is used to implement add and remove locks.  A
  1475.         lock is set when an add or remove fails and is not cleared until
  1476.         a bandwidth change or the timer expires. This keeps us from
  1477.         retrying add's and subtracts until there is a likelyhood that it
  1478.         will succeed.
  1479.  
  1480.         [1]  Check add lock flag.
  1481.  
  1482.                 [1] If set an add lock occured last timeout period so
  1483.                 triple the timeout value (to a max of 81 minutes).
  1484.  
  1485.                 [2] If not set restore the timeout value to its initial
  1486.                 value of one minute.
  1487.  
  1488.         [2]  Clear the add lock flag.
  1489.  
  1490.         [3]  Clear the remove lock flag.
  1491.  
  1492.         [4]  Restart the retry timer.
  1493.  
  1494. Enter Remove [local] Action
  1495.  
  1496.         The local unit is initiating a remove transaction. The desired
  1497.         bandwidth is given.
  1498.  
  1499.         [1]  Restart the idle timer.
  1500.  
  1501.         [2]  Calculate number of channels to remove (difference between
  1502.         number in use and number in desired).
  1503.  
  1504.         [3]  Build and send a remove request and send to remote.
  1505.  
  1506.         [4]  Go to REMOVE:A.
  1507.  
  1508.  
  1509.  
  1510.  
  1511.  
  1512.  
  1513.  
  1514. Smith                        Informational                     [Page 27]
  1515.  
  1516. RFC 1934                Multilink Protocol Plus               April 1996
  1517.  
  1518.  
  1519. Enter Remove [remote] Action
  1520.  
  1521.         The remote unit is initiating a remove transaction. The incoming
  1522.         message contains the number of channels to remove.
  1523.  
  1524.         [1]  Restart the idle timer.
  1525.  
  1526.         [2]  Request the number of channels required. If greater than the
  1527.         number available after removing the number of channels indicated
  1528.         in the incoming message reduce the number of channels to remove
  1529.         and set a remove lock.
  1530.  
  1531.         [3] Build a remove response message indicating the number of
  1532.         channels we will allow the requester to remove and send to the
  1533.         remote.
  1534.  
  1535.         [4]  Go to  REMOVE:B.
  1536.  
  1537. Enter Add [local] Action
  1538.  
  1539.         The local unit is initiating an add transaction.  We are given
  1540.         the number of channels desired.  The steps are:
  1541.  
  1542.         [1]  Restart the idle timer.
  1543.  
  1544.         [2]  Calculate number of channels to add (difference between
  1545.         number desired and number in use).
  1546.  
  1547.         [3]  Reserve number of channels, retrieving their phone numbers.
  1548.  
  1549.         [4]  If number of channels reserved less than the number desired
  1550.         set an add lock.
  1551.  
  1552.         [5]  If number of channels reserved greater than zero.
  1553.  
  1554.                 [1] Build an add request. If the answerer the request
  1555.                 includes the phone numbers for the caller to dial.
  1556.  
  1557.                 [2] If caller, go to ADD:A.
  1558.  
  1559.                 [3] If answerer, go to ADD:C.
  1560.  
  1561.         [6]  Go to  IDLE state.
  1562.  
  1563.  
  1564.  
  1565.  
  1566.  
  1567.  
  1568.  
  1569.  
  1570. Smith                        Informational                     [Page 28]
  1571.  
  1572. RFC 1934                Multilink Protocol Plus               April 1996
  1573.  
  1574.  
  1575. Enter Remove [remote] Action
  1576.  
  1577.         The remote unit is initiating a remove transaction.  The
  1578.         incoming  message contains the number of channels to remove.
  1579.  
  1580.         [1]  Clear the remove lock.
  1581.  
  1582.         [2]  Restart the idle timer.
  1583.  
  1584.         [3]  Request the number of channels required.   If  greater
  1585.         than the number available after removing the number of
  1586.         channels indicated in the incoming message reduce  the
  1587.         number of channels to remove.
  1588.  
  1589.         [4]  Build  a remove response message indicating the number
  1590.         of channels we will allow the requester to remove  and
  1591.         send to the remote.
  1592.  
  1593.         [5]  Go to REMOVE, sub-state B.
  1594.  
  1595. Enter Add [remote answerer] Action
  1596.  
  1597.         We've received a message from  the  remote  requesting  that
  1598.         bandwidth  be  added.   The  message  contains the number of
  1599.         channels to add.  Since the remote is the answerer, the mes-
  1600.         sage  also  contains the phone nubmers to dial.  We may dial
  1601.         less than the number requested.
  1602.  
  1603.         [1]  Restart idle timer.
  1604.  
  1605.         [2]  If the number of channels requested will put  us  over
  1606.         the maximum number of channels allowed for the session
  1607.         reduce the channel count.
  1608.  
  1609.         [3]  For each channel to add,
  1610.  
  1611.                 [1] Integrate the phone  number  returned  from  the
  1612.                 answerer  with the original phone number dialed.
  1613.  
  1614.                 [2] Request that a session be  extended  by  dialing
  1615.                 the  integrated  phone  number.   A  callback is
  1616.                 passed with the request so call success or fail-
  1617.                 ure can be reported back to MP+.
  1618.  
  1619.         [4]  Go to ADD:B.  Note:  This change must actu-
  1620.         ally occur before requesting the first outgoing  call.
  1621.         If  not,  the  callback  could be called (and ignored)
  1622.         because the session is not in the correct state.
  1623.  
  1624.  
  1625.  
  1626. Smith                        Informational                     [Page 29]
  1627.  
  1628. RFC 1934                Multilink Protocol Plus               April 1996
  1629.  
  1630.  
  1631. Enter Add [remote caller] Action
  1632.  
  1633.         We've  received  a  message  from the remote requesting that
  1634.         bandwidth be added.  The  message  contains  the  number  of
  1635.         channels  to  add.  Since the remote is the caller, it needs
  1636.         us to send the phone numbers to dial.   We  may  send  fewer
  1637.         phone numbers than requested
  1638.  
  1639.         [1]  Restart idle timer.
  1640.  
  1641.         [2]  If  the  number of channels requested will put us over
  1642.         the maximum number of channels allowed for the session
  1643.         reduce the channel count.
  1644.  
  1645.         [3]  Reserve  the  adjusted  number of channels, retrieving
  1646.         their phone numbers.
  1647.  
  1648.         [4]  If the number of channels reserved is  less  than  the
  1649.         adjusted number requested.
  1650.  
  1651.         [5]  Build an add response  message,  including  the  phone
  1652.         numbers  for  the  channels we will let the caller add
  1653.         and send it to the far end.
  1654.  
  1655.         [6]  Go to ADD:C.
  1656.  
  1657. Enter Idle Action
  1658.  
  1659.         The IDLE state is entered at the end of normal transactions.
  1660.         At  entry  the  current  status  of the connection should be
  1661.         checked and new transactions initiated if necessary.  To  be
  1662.         safe,  we  can  also  use this state as a catch all place to
  1663.         release any bandwidth reserved for adds.  The  functions  to
  1664.         perform are:
  1665.  
  1666.         [1]  Restart  the idle timer using the current retry value.
  1667.  
  1668.         [2]  Release any reserved bandwidth not actually in use.
  1669.  
  1670.         [3]  Check if bandwidth change reqested during last  trans-
  1671.              action.  If change indicated:
  1672.  
  1673.                 [1]  Query channel counts.
  1674.  
  1675.                 [2]  If  current  bandwidth less than suggested band-
  1676.                      width and removes  are  not  locked,  store  the
  1677.                      requested bandwidth and initiate a remove trans-
  1678.                      action (Enter Remove Action).
  1679.  
  1680.  
  1681.  
  1682. Smith                        Informational                     [Page 30]
  1683.  
  1684. RFC 1934                Multilink Protocol Plus               April 1996
  1685.  
  1686.  
  1687.  
  1688.                 [3]  If  current  bandwidth  greater  than  suggested
  1689.                      bandwidth and adds are not locked:
  1690.  
  1691.                        [1]  Store the requested bandwidth.
  1692.  
  1693.                        [2]  Intiate  an  add  transaction  (Enter  Add
  1694.                             [local] Action).
  1695.  
  1696.        [4]  Go to the IDLE state.
  1697.  
  1698. Remote Management Request Action
  1699.  
  1700.         We received a request to start/stop remote management.
  1701.         If this is a start request
  1702.                 If we can/allow remote management:
  1703.                         Build and send a Remote management response Allow
  1704.                         message.
  1705.                 Else
  1706.                         Build and send a Remote management response Deny
  1707.                         message.
  1708.         Else (this is a stop)
  1709.                 Notify the remote management slave process to terminate.
  1710.  
  1711. Remote Management Response Action
  1712.  
  1713.         We received a response to our remote management start request.
  1714.         If the response was an Allow response
  1715.                 Notify the remote management master process, we can
  1716.                 start sending keystrokes/commands
  1717.         Else
  1718.                 The peer denied the request, so notify the remote
  1719.                 management master process of failure.
  1720.  
  1721. Remote Management Receive Data Action
  1722.  
  1723.         We (the slave) received data from the remote management master.
  1724.         Pass the received data to the remote management slave process.
  1725.         This is typically keystroke data received from the remote user
  1726.         interface.
  1727.  
  1728. Remote Management Transmit Data Action
  1729.  
  1730.         We (the master) received data from the remote management slave.
  1731.         Pass the received data to the remote management master process.
  1732.         This is typically screen-updates to be passed to the user
  1733.         interface.
  1734.  
  1735.  
  1736.  
  1737.  
  1738. Smith                        Informational                     [Page 31]
  1739.  
  1740. RFC 1934                Multilink Protocol Plus               April 1996
  1741.  
  1742.  
  1743. Remote Management Transmit Data Response Action
  1744.  
  1745.         We (the slave) received an ack to data we previously sent to the
  1746.         master. Notify the remote management slave process so that it
  1747.         can queue further transmissions.
  1748.  
  1749. Remote management (Master) start Action
  1750.  
  1751.         Build a REMOTE_MGMT_REQ start message and send to the far end.
  1752.         Send a proceeding message to the RM master process.
  1753.  
  1754. Remote management (Slave) data Action
  1755.  
  1756.         Build a REMOTE_MGMT_TX_REQ message with the data passed from
  1757.         the remote management slave process, send it to the far end.
  1758.  
  1759. Remote management (Master) data Action
  1760.  
  1761.         Build a REMOTE_MGMT_RX_REQ message with data passed from the
  1762.         remote management master process, send it to the far end.
  1763.  
  1764. Remote management data acknowledgement Action
  1765.  
  1766.         Build a REMOTE_MGMT_TX_RSP message and send it so the slave can
  1767.         send the next block. There is no data associated with this
  1768.         message.
  1769.  
  1770. Remote management (Master) stop Action
  1771.  
  1772.         Build a REMOTE_MGMT_REQ stop message and send to the far end.
  1773.  
  1774. 3.5.3. MP+STATE_INITIAL state machine
  1775.  
  1776.    All sessions start from this state, sub-state A. The state is not
  1777.    exited until version exchange succeeds.
  1778.  
  1779.    The sub-states are:
  1780.  
  1781.         A       Initial state
  1782.         B       Sent version request, waiting for version response.
  1783.         C       Waiting for version request.
  1784.  
  1785.  
  1786.  
  1787.  
  1788.  
  1789.  
  1790.  
  1791.  
  1792.  
  1793.  
  1794. Smith                        Informational                     [Page 32]
  1795.  
  1796. RFC 1934                Multilink Protocol Plus               April 1996
  1797.  
  1798.  
  1799. Event                                   Sub-state
  1800. ______________________________________________________________________
  1801.                            A                    B               C
  1802. ======================================================================
  1803. MP+START_SESSION           1,+                  **              **
  1804. ______________________________________________________________________
  1805. MP+SESSION_DOWN            **              2,Initial:A    2,Initial:A
  1806. ______________________________________________________________________
  1807. MP+SESSION_TERM            **              3,Initial:A    3,Initial:A
  1808. ______________________________________________________________________
  1809. MP+TIMER_EXPIRED           **              4,Initial:A    7,Initial:B
  1810. ______________________________________________________________________
  1811. MP+RX_VERSION_REQ          **              8,Initial:A         5,+
  1812. ______________________________________________________________________
  1813. MP+RX_VERSION_RSP          **                  6,+             **
  1814. ______________________________________________________________________
  1815. MP+START_RM               9,*                  9,*             9,*
  1816. ______________________________________________________________________
  1817. All other events           **                  **              **
  1818. ______________________________________________________________________
  1819.  
  1820.                     Table 2:  Initial State Machine
  1821.  
  1822. Actions:
  1823.  
  1824. 1       Start timer, 60 seconds if originator, 30 seconds if answerer.
  1825.  
  1826.         Start MP+
  1827.  
  1828.         If originator
  1829.  
  1830.                 Build and send version exchange request
  1831.  
  1832.                 Go to INITIAL, sub-state B.
  1833.  
  1834.         Go to INITIAL, sub-state C.
  1835.  
  1836. 2       Do  Error Close Action, go to INITIAL, sub-state A.
  1837.  
  1838. 3       Do  Term Action, go to INITIAL, sub-state A.
  1839.  
  1840. 4       Do  Error Close Action, go to INITIAL, sub-state A.
  1841.  
  1842. 5       Stop the idle timer.
  1843.  
  1844.         Compare protocol versions, if they do not match Do Error Close
  1845.         Action, go to  INITIAL, sub-state A.
  1846.  
  1847.  
  1848.  
  1849.  
  1850. Smith                        Informational                     [Page 33]
  1851.  
  1852. RFC 1934                Multilink Protocol Plus               April 1996
  1853.  
  1854.  
  1855.         Store off info received from remote.
  1856.  
  1857.         Build a version exchange response and send to remote end.
  1858.  
  1859.         Do  Enter Idle Action  which causes a state change.
  1860.  
  1861. 6       Stop the retry timer.
  1862.  
  1863.         Compare protocol versions, if they do not match Do Error Close
  1864.         Action, go to INITIAL, sub-state A.
  1865.  
  1866.         Store off info received from remote.
  1867.  
  1868.         Check the base channel count in the callers profile.
  1869.  
  1870.         If greater than 1
  1871.  
  1872.                 Set the requested bandwidth to the base channel count.
  1873.  
  1874.                 Do  Enter Add Caller  action which causes a state change.
  1875.  
  1876.         Do  Enter Idle Action  which causes a state change.
  1877.  
  1878. 7       Both sides think they are the answerer. This is possible if both
  1879.         dial each other at the same time and the first channel that
  1880.         completed PPP negotiation happened to be the channel associated
  1881.         with the incoming call on both units. We resolve this by trying
  1882.         to become the originator.
  1883.         If both sides try to become the originator the one with the
  1884.         largest endpoint discriminator will fall back to being the
  1885.         answerer.
  1886.  
  1887.                 Restart Idle timer at 60 seconds
  1888.  
  1889.                 Build and send Version Exchange Request message
  1890.  
  1891.                 Go to Initial:B
  1892.  
  1893. 8       Both sides think they are the originator. This can happen if
  1894.         both dial each other at the same time and the first channel
  1895.         that completed PPP negotiation happened to be the channel
  1896.         associated with the originating call on both units. MP+
  1897.         determines which will be the caller and which the answerer by
  1898.         comparing the endpoind discriminator in the version exchange
  1899.         request with the local endpoint discriminator. The unit with
  1900.         the smaller endpoint is arbitrarily called the originator. The
  1901.         actions are:
  1902.  
  1903.  
  1904.  
  1905.  
  1906. Smith                        Informational                     [Page 34]
  1907.  
  1908. RFC 1934                Multilink Protocol Plus               April 1996
  1909.  
  1910.  
  1911.         Compare local endpoint discriminator with endpoint discrimator
  1912.         in message.
  1913.  
  1914.         If local endpoint discriminator is less than the remote value
  1915.         we are the caller, ignore the incoming message.
  1916.  
  1917.         Otherwise, if local endpoint discriminator is greater than the
  1918.         remote value we are the answerer:
  1919.  
  1920.                 Compare protocol versions, if they do not match
  1921.                 Do  Error Close Action, go to INITIAL, sub-state A.
  1922.  
  1923.                 Store off info received from remote.
  1924.  
  1925.                 Build a version exchange response and send to remote end.
  1926.  
  1927.                 Do  Enter Idle Action  which causes a state change.
  1928.  
  1929.         If the two values match, there is a problem, Do Error Close
  1930.         Action,go to INITIAL, sub-state A.
  1931.  
  1932. 9       Log an error message.
  1933.         Notify the user interface of remote management failure.
  1934.  
  1935. 3.5.4. MP+STATE_IDLE state machine
  1936.  
  1937.    The Idle state is the state of an active session with no call
  1938.    management activity in progress.
  1939.  
  1940.    There are no sub-states.
  1941.  
  1942.    Event                    State
  1943.    _____________________________________________
  1944.                                A
  1945.    =============================================
  1946.    MP+SESSION_DOWN         1,Initial:A
  1947.    _____________________________________________
  1948.    MP+SESSION_TERM         2,Initial:A
  1949.    _____________________________________________
  1950.    MP+TIMER_EXPIRED        3,*
  1951.    _____________________________________________
  1952.    MP+UTILIZATION          4,+
  1953.    _____________________________________________
  1954.    MP+RX_ADD_REQ           5,+
  1955.    _____________________________________________
  1956.    MP+RX_REMOVE_REQ        6,Remove:B
  1957.    _____________________________________________
  1958.    MP+RX_RM_REQ            7,+
  1959.  
  1960.  
  1961.  
  1962. Smith                        Informational                     [Page 35]
  1963.  
  1964. RFC 1934                Multilink Protocol Plus               April 1996
  1965.  
  1966.  
  1967.    _____________________________________________
  1968.    MP+RX_RM_RSP            8,+
  1969.    _____________________________________________
  1970.    MP+RX_RM_RX_REQ         9,+
  1971.    _____________________________________________
  1972.    MP+RX_RM_TX_REQ         10,+
  1973.    _____________________________________________
  1974.    MP+RX_RM_TX_RSP         11,+
  1975.    _____________________________________________
  1976.    MP+RX_CLOSE_REQ         12,+
  1977.    _____________________________________________
  1978.    MP+START_RM             13,*
  1979.    _____________________________________________
  1980.    MP+SEND_RMS             14,*
  1981.    _____________________________________________
  1982.    MP+SEND_RMM             15,*
  1983.    _____________________________________________
  1984.    MP+RECV_RMM             16,*
  1985.    _____________________________________________
  1986.    MP+STOP_RM              17,*
  1987.    _____________________________________________
  1988.    All other events        **
  1989.    _____________________________________________
  1990.  
  1991.    Table 3:  Idle State Machine
  1992.  
  1993.    Actions:
  1994.  
  1995.    1       Do Error Close Action, go to INITIAL, sub-state A.
  1996.  
  1997.    2       Do Term Action, go to INITIAL, sub-state A.
  1998.  
  1999.    3       Do Timer Action.
  2000.  
  2001.    4       Note that a bandwidth change has been reqested.
  2002.  
  2003.            Do Enter Idle Action which may cause a state change.
  2004.  
  2005.    5       If we are the caller:
  2006.                    Do Enter Add [remote answerer] Action.
  2007.            Else
  2008.                    Do Enter Add [remote caller] Action.
  2009.  
  2010.    6       Do Enter Remove [remote] Action
  2011.  
  2012.    7       Do Remote Management Request Action
  2013.  
  2014.    8       Do Remote Management Response Action
  2015.  
  2016.  
  2017.  
  2018. Smith                        Informational                     [Page 36]
  2019.  
  2020. RFC 1934                Multilink Protocol Plus               April 1996
  2021.  
  2022.  
  2023.    9       Do Remote Management Receive Data Action
  2024.  
  2025.    10      Do Remote Management Transmit Data Action
  2026.  
  2027.    11      Do Remote Management Transmit Data Response Action
  2028.  
  2029.    12      Clear remove lock.
  2030.            If local recommended channels == 0, then:
  2031.                    send a Close Response message with OK To Close
  2032.                    set to TRUE.
  2033.            Else
  2034.                    send a Close Response message with OK To Close
  2035.                    set to FALSE.
  2036.            Do Enter Idle Action.
  2037.  
  2038.    13      Do Remote management (Master) start Action
  2039.  
  2040.    14      Do Remote management (Slave) data Action
  2041.  
  2042.    15      Do Remote management (Master) data Action
  2043.  
  2044.    16      Do Remote management data acknowledgement Action
  2045.  
  2046.    17      Do Remote management (Master) stop Action
  2047.  
  2048. 3.5.5. MP+STATE_ADD state machine
  2049.  
  2050.    The add state is used by both caller and answerer when an add
  2051.    transaction is in progress.
  2052.  
  2053.    The sub-states are:
  2054.  
  2055.         A       Add request sent to answerer, waiting for add response
  2056.                 from the answerer.
  2057.         B       Caller waiting for call complete notification for calls
  2058.                 placed.
  2059.         C       Answerer waiting for add complete message from caller.
  2060.  
  2061.  
  2062.  
  2063.  
  2064.  
  2065.  
  2066.  
  2067.  
  2068.  
  2069.  
  2070.  
  2071.  
  2072.  
  2073.  
  2074. Smith                        Informational                     [Page 37]
  2075.  
  2076. RFC 1934                Multilink Protocol Plus               April 1996
  2077.  
  2078.  
  2079. Event                                           Sub-state
  2080. ______________________________________________________________________
  2081.                                 A               B               C
  2082. ======================================================================
  2083. MP+SESSION_DOWN         1,Initial:A      7,Closing:A    1,Initial:A
  2084. ______________________________________________________________________
  2085. MP+SESSION_TERM         2,Initial:A      7,Closing:B    2,Initial:A
  2086. ______________________________________________________________________
  2087. MP+TIMER_EXPIRED           3,+              3,+            3,+
  2088. ______________________________________________________________________
  2089. MP+UTILIZATION             4,*              4,*            4,*
  2090. ______________________________________________________________________
  2091. MP+CALL_COMPLETE            **            8,Idle:A         **
  2092. ______________________________________________________________________
  2093. MP+RX_VERSION_REQ          -,*              **             **
  2094. ______________________________________________________________________
  2095. MP+ADD_REQ                5,Add:B           **             **
  2096. ______________________________________________________________________
  2097. MP+ADD_RSP                 6,+              **             **
  2098. ______________________________________________________________________
  2099. MP+ADD_COMP                 **              **           9,Idle:A
  2100. ______________________________________________________________________
  2101. MP+RX_RM_REQ              10,+             10,+           10,+
  2102. ______________________________________________________________________
  2103. MP+RX_RM_RSP              11,+             11,+           11,+
  2104. ______________________________________________________________________
  2105. MP+RX_RM_RX_REQ           12,+             12,+           12,+
  2106. ______________________________________________________________________
  2107. MP+RX_RM_TX_REQ           13,+             13,+           13,+
  2108. ______________________________________________________________________
  2109. MP+RX_RM_TX_RSP           14,+             14,+           14,+
  2110. ______________________________________________________________________
  2111. MP+RX_REMOVE_REQ           -,*              **             **
  2112. ______________________________________________________________________
  2113. MP+START_RM               15,*             15,*           15,*
  2114. ______________________________________________________________________
  2115. MP+SEND_RMS               16,*             16,*           16,*
  2116. ______________________________________________________________________
  2117. MP+SEND_RMM               17,*             17,*           17,*
  2118. ______________________________________________________________________
  2119. MP+RECV_RMM               18,*             18,*           18,*
  2120. ______________________________________________________________________
  2121. MP+STOP_RM                19,*             19,*           19,*
  2122. ______________________________________________________________________
  2123. All other events            **              **             **
  2124. ______________________________________________________________________
  2125.  
  2126. Table 4:  Add State Machine
  2127.  
  2128.  
  2129.  
  2130. Smith                        Informational                     [Page 38]
  2131.  
  2132. RFC 1934                Multilink Protocol Plus               April 1996
  2133.  
  2134.  
  2135. Actions:
  2136.  
  2137. 1       Phone numbers (may) have been reserved, they must be released
  2138.         before the normal error processing occurs.
  2139.  
  2140.                 Release all reserved phone numbers
  2141.  
  2142.                 Do  Error Close Action.
  2143.  
  2144. 2       Phone nubmers (may) have been reserved, they must be released
  2145.         before the normal close processing occurs.
  2146.  
  2147.                 Release all reserved phone numbers
  2148.  
  2149.                 Do  Term Action.
  2150.  
  2151. 3       Do  Timer Action
  2152.  
  2153. 4       Note that a bandwidth change has been reqested. This will be
  2154.         processed the next time IDLE state is entered.
  2155.  
  2156. 5       An add collision has occured.  Since the answerer has sent phone
  2157.         numbers we will try to use what he as sent, within the limits of
  2158.         the local system.
  2159.  
  2160.                 Compare local channels to add with current channels to
  2161.                 add.
  2162.  
  2163.                 If the local channels to add is less than the remote
  2164.                 channels to add
  2165.  
  2166.                         If the remote number of channels requested will
  2167.                         put us over the maximum number of channels
  2168.                         allowed for the session reduce the channel count
  2169.                         and set an add lock.
  2170.  
  2171.                         Re-reserve the channels.  If the number reserved
  2172.                         are less than the number of phone numbers
  2173.                         provided by the far end, set an add lock and
  2174.                         reduce the number of channels to add to what we
  2175.                         could reserve.
  2176.  
  2177.                 Now treat the remote add request as if it were an add
  2178.                 response and process by:
  2179.  
  2180.                         Integrate the phone number returned from the
  2181.                         answerer with the original phone number dialed.
  2182.  
  2183.  
  2184.  
  2185.  
  2186. Smith                        Informational                     [Page 39]
  2187.  
  2188. RFC 1934                Multilink Protocol Plus               April 1996
  2189.  
  2190.  
  2191.                         Request that a session be extended by dialing
  2192.                         the integrated phone number.  A callback is
  2193.                         passed with the request so call success or
  2194.                         failure can be reported back to MP+.
  2195.  
  2196.                         Go to ADD:B.  Note:  This change must actually
  2197.                         occur before requesting the first outgoing call.
  2198.                         If not, the callback could be called (and
  2199.                         ignored) because the session is not in the
  2200.                         correct state.
  2201.  
  2202. 6       If the answerer provided fewer phone numbers than requested set
  2203.         an add lock.
  2204.  
  2205.         If the number of channels is zero send an add complete message
  2206.         (there's nothing to do) and go to the IDLE state.
  2207.  
  2208.         For each phone number returned
  2209.  
  2210.                 Integrate the phone number returned from the answerer
  2211.                 with the original phone number dialed.
  2212.  
  2213.                 Request that a session be extended by dialing the
  2214.                 integrated phone number.  A callback is passed with the
  2215.                 request so call success or failure can be reported back
  2216.                 to MP+.
  2217.  
  2218.         Go to ADD:B.  Note:  This change must actually occur before
  2219.         requesting the first outgoing call.  If not, the callback could
  2220.         be called (and ignored) because the session is not in the correct
  2221.         state.
  2222.  
  2223. 7       Restart idle timer for abort.
  2224.  
  2225. 8       Increment the count of calls completed.
  2226.  
  2227.         If the call succeeded, increment the count of calls that
  2228.         succeeded.
  2229.  
  2230.         If the count of calls completed equals the number of calls placed
  2231.  
  2232.                 If number of calls completed is not the same as the
  2233.                 nubmer that succeeded set an add lock.
  2234.  
  2235.                 Build an add complete message and send it to the far end.
  2236.  
  2237.                 If at least one channel was added clear any remove lock.
  2238.  
  2239.  
  2240.  
  2241.  
  2242. Smith                        Informational                     [Page 40]
  2243.  
  2244. RFC 1934                Multilink Protocol Plus               April 1996
  2245.  
  2246.  
  2247.                 Go to the IDLE state.
  2248.  
  2249. 9       If number of channels requested not equal to number connected
  2250.         set add lock.
  2251.  
  2252.         If at least one channel was added clear any remove lock.
  2253.  
  2254.         Go to the IDLE state.
  2255.  
  2256. 10      Do Remote Management Request Action
  2257.  
  2258. 11      Do Remote Management Response Action
  2259.  
  2260. 12      Do Remote Management Receive Data Action
  2261.  
  2262. 13      Do Remote Management Transmit Data Action
  2263.  
  2264. 14      Do Remote Management Transmit Data Response Action
  2265.  
  2266. 15      Do Remote management (Master) start Action
  2267.  
  2268. 16      Do Remote management (Slave) data Action
  2269.  
  2270. 17      Do Remote management (Master) data Action
  2271.  
  2272. 18      Do Remote management data acknowledgement Action
  2273.  
  2274. 19      Do Remote management (Master) stop Action
  2275.  
  2276. 3.5.6. MP+STATE_REMOVE state machine
  2277.  
  2278.    The state of a session while processing a remove transaction.
  2279.  
  2280.    The sub-states are:
  2281.  
  2282.         A       Remove request sent, waiting for remove response
  2283.         B       Remove response sent, waiting for remove complete
  2284.  
  2285.  
  2286.  
  2287.  
  2288.  
  2289.  
  2290.  
  2291.  
  2292.  
  2293.  
  2294.  
  2295.  
  2296.  
  2297.  
  2298. Smith                        Informational                     [Page 41]
  2299.  
  2300. RFC 1934                Multilink Protocol Plus               April 1996
  2301.  
  2302.  
  2303. Event                                   Sub-state
  2304. _________________________________________________________
  2305.                                 A               B
  2306. =========================================================
  2307. MP+SESSION_DOWN             1,Initial:A    1,Initial:A
  2308. _________________________________________________________
  2309. MP+SESSION_TERM             2,Initial:A    2,Initial:A
  2310. _________________________________________________________
  2311. MP+TIMER_EXPIRED               3,+            3,+
  2312. _________________________________________________________
  2313. MP+UTILIZATION                 4,*            4,*
  2314. _________________________________________________________
  2315. MP+RX_ADD_REQ                  5,+             **
  2316. _________________________________________________________
  2317. MP+RX_REMOVE_REQ               6,+             **
  2318. _________________________________________________________
  2319. MP+RX_REMOVE_RSP            7,Idle:A           **
  2320. _________________________________________________________
  2321. MP+RX_REMOVE_COMP              **           8,Idle:A
  2322. _________________________________________________________
  2323. MP+RX_CLOSE_REQ               -,*              **
  2324. _________________________________________________________
  2325. MP+RX_RM_REQ                  9,*             9,*
  2326. _________________________________________________________
  2327. MP+RX_RM_RSP                 10,*            10,*
  2328. _________________________________________________________
  2329. MP+RX_RM_RX_REQ              11,*            11,*
  2330. _________________________________________________________
  2331. MP+RX_RM_TX_REQ              12,*            12,*
  2332. _________________________________________________________
  2333. MP+RX_RM_TX_RSP              13,*            13,*
  2334. _________________________________________________________
  2335. MP+START_RM                  14,*            14,*
  2336. _________________________________________________________
  2337. MP+SEND_RMS                  15,*            15,*
  2338. _________________________________________________________
  2339. MP+SEND_RMM                  16,*            16,*
  2340. _________________________________________________________
  2341. MP+RECV_RMM                  17,*            17,*
  2342. _________________________________________________________
  2343. MP+STOP_RM                   18,*            18,*
  2344. _________________________________________________________
  2345. All other events              **               **
  2346. _________________________________________________________
  2347.  
  2348. Table 5: Remove State Machine
  2349.  
  2350.  
  2351.  
  2352.  
  2353.  
  2354. Smith                        Informational                     [Page 42]
  2355.  
  2356. RFC 1934                Multilink Protocol Plus               April 1996
  2357.  
  2358.  
  2359. Actions:
  2360.  
  2361. 1       Do  Error Close Action
  2362.  
  2363. 2       Do  Term Action
  2364.  
  2365. 3       Do  Timer Action
  2366.  
  2367. 4       Note that a bandwidth change has been reqested. This will be
  2368.         processed the next time IDLE state is entered.
  2369.  
  2370. 5       Our remove conflicted with the remote end Add.  The add takes
  2371.         preference.
  2372.  
  2373.         Set a remove lock.
  2374.  
  2375.         If we are the caller Do  Enter Add [remote answerer] Action  .
  2376.  
  2377.         Otherwise Do  Enter Add [remote caller] Action  .
  2378.  
  2379. 6       Two remove requests collided.  We give preference to the caller
  2380.         (an arbitrary decision).
  2381.  
  2382.         If caller, ignore message.
  2383.  
  2384.         Else
  2385.                 Check maximum number of channels needed by the local end.
  2386.                 Reduce the requested remove count and set a remove lock if
  2387.                 necessary.
  2388.  
  2389.                 Build and send a remove response to the remote.
  2390.  
  2391.                 Go to Remove:B.
  2392.  
  2393. 7       Compare the number of channels requested with the number allowed
  2394.         in the response.  If fewer allowed set a remove lock.
  2395.  
  2396.         Look at the current bandwidth.  If the number to remove would
  2397.         bring the current bendwidth below requirements reduce the number
  2398.         of channels to remove.
  2399.  
  2400.         If still channels to remove:
  2401.                 Remove the channels.
  2402.                 Clear any add lock.
  2403.         Send a remove complete indicating the number of channels removed.
  2404.  
  2405. 8       If at least one channel was removed clear any add lock.
  2406.  
  2407.  
  2408.  
  2409.  
  2410. Smith                        Informational                     [Page 43]
  2411.  
  2412. RFC 1934                Multilink Protocol Plus               April 1996
  2413.  
  2414.  
  2415. 9       Do Remote Management Request Action
  2416.  
  2417. 10      Do Remote Management Response Action
  2418.  
  2419. 11      Do Remote Management Receive Data Action
  2420.  
  2421. 12      Do Remote Management Transmit Data Action
  2422.  
  2423. 13      Do Remote Management Transmit Data Response Action
  2424.  
  2425. 14      Do Remote management (Master) start Action
  2426.  
  2427. 15      Do Remote management (Slave) data Action
  2428.  
  2429. 16      Do Remote management (Master) data Action
  2430.  
  2431. 17      Do Remote management data acknowledgement Action
  2432.  
  2433. 18      Do Remote management (Master) stop Action
  2434.  
  2435. 3.5.7. MP+STATE_CLOSE state machine
  2436.  
  2437.    The close state is used when we are gracefully closing a session or
  2438.    when we were notified that a session terminated mid-transaction.
  2439.  
  2440.    The sub-states are:
  2441.  
  2442.         A       Waiting for call complete after session down notification
  2443.         B       Waiting for call complete after session terminate
  2444.                 notification.
  2445.         C       Waiting for close response after session close request
  2446.                 sent.
  2447.  
  2448. Event                                     Sub-state
  2449. ______________________________________________________________________
  2450.                                 A               B               C
  2451. ======================================================================
  2452. MP+SESSION_DOWN                **            -,*        7,Initial:A
  2453. ______________________________________________________________________
  2454. MP+SESSION_TERM           1,Close:B           **        8,Initial:A
  2455. ______________________________________________________________________
  2456. MP+TIMER_EXPIRED          2,Initial:A     5,Initial:A       6,*
  2457. ______________________________________________________________________
  2458. MP+UTILIZATION                -,*            -,*            9,*
  2459. ______________________________________________________________________
  2460. MP+CALL_COMPLETE              3,+         6,Initial:A        **
  2461. ______________________________________________________________________
  2462. MP+ADD_REQ                    **             -,*           10,+
  2463.  
  2464.  
  2465.  
  2466. Smith                        Informational                     [Page 44]
  2467.  
  2468. RFC 1934                Multilink Protocol Plus               April 1996
  2469.  
  2470.  
  2471. ______________________________________________________________________
  2472. MP+REMOVE_REQ                 **              **        11,Remove:B
  2473. ______________________________________________________________________
  2474. MP+CLOSE_REQ                  -,*            -,*           12,*
  2475. ______________________________________________________________________
  2476. MP+CLOSE_RSP                  -,*            -,*           13,+
  2477. ______________________________________________________________________
  2478. MP+START_RM                   4,*            4,*           4,*
  2479. ______________________________________________________________________
  2480. All other events              **              **            **
  2481. ______________________________________________________________________
  2482.  
  2483. Table 6:  Close State Machine
  2484.  
  2485. Actions:
  2486.  
  2487. 1       The session was closed while waiting for call completes.
  2488.         Just go to Close:B.
  2489.  
  2490. 2       We timed out waiting for completes.  Just process the link down,
  2491.         now.
  2492.         Do Error Close Action.
  2493.  
  2494. 3       Increment the number of calls complete.
  2495.  
  2496.         If equal to the number of calls placed then:
  2497.                 Do Error Close Action, go to Initial:A.
  2498.         Else
  2499.                 No state change.
  2500.  
  2501. 4       Log an error message.
  2502.         Notify the user interface of remote management failure.
  2503.  
  2504. 5       We didn't get all the notifications that we expect.  Give up and
  2505.         close the session anyway.  Do Term Action .
  2506.  
  2507. 6       Increment the number of calls complete.
  2508.  
  2509.         If equal to the number of calls placed then:
  2510.                 Do  Term Action, go to Initial:A.
  2511.         Else
  2512.                 No state change
  2513.  
  2514. 7       Do Error Close Action
  2515.  
  2516. 8       Do Term Action
  2517.  
  2518. 9       Note that a bandwidth change has been reqested. This will be
  2519.  
  2520.  
  2521.  
  2522. Smith                        Informational                     [Page 45]
  2523.  
  2524. RFC 1934                Multilink Protocol Plus               April 1996
  2525.  
  2526.  
  2527.         processed the next time IDLE state is entered.
  2528.  
  2529. 10      This is an Add & Close collision. Add wins. Perform current
  2530.         remote add action.
  2531.         If we are originator
  2532.                 Do Add [Remote Answerer] Action
  2533.         else
  2534.                 Do Add [Remote Caller] Action
  2535.  
  2536. 11      This is a Remove & Close collision, the Remove will win:
  2537.                 Set remove lock to FALSE
  2538.                 Do Remove [Remote] Action.
  2539.  
  2540. 12      This is a Close collision. But since we both agree:
  2541.         If we are originator
  2542.                 Send a Close Response with okToClose set to TRUE.
  2543.         Else
  2544.                 Send a Close Response with okToClose set to FALSE.
  2545.  
  2546. 13      If Close Response is received with okToClear is TRUE then:
  2547.                 Do Term Action
  2548.         Else
  2549.                 set remove lock to TRUE and do Enter Idle Action.
  2550.  
  2551. 4. PPP LCP Extensions
  2552.  
  2553. MP+ Configuration Option
  2554.  
  2555.    The Multilink Protocol Plus introduces the use of an additional LCP
  2556.    Configuration Option:
  2557.  
  2558.     0                   1                   2                   3
  2559.     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
  2560.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2561.    |  type = 22    |  length = 4   |    Currently unused           |
  2562.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  2563.  
  2564.    Figure 21: MP+ Option
  2565.  
  2566.    Type - 22.
  2567.  
  2568.    NOTE: The current implementation uses option 0. This is not an
  2569.    assigned number, so an IANA assigned official identifier has been
  2570.    obtained (22).
  2571.  
  2572.    The option, when sent to a peer, advises the peer that:
  2573.  
  2574.         the unit is capable of running the MP+ protocol;
  2575.  
  2576.  
  2577.  
  2578. Smith                        Informational                     [Page 46]
  2579.  
  2580. RFC 1934                Multilink Protocol Plus               April 1996
  2581.  
  2582.  
  2583.    The peer can accept or reject the option.
  2584.  
  2585.    NOTE:  The MP+ option MUST NOT be included unless MP is also
  2586.    negotiated.
  2587.  
  2588. 5. Security Considerations
  2589.  
  2590.    Security issues are not discussed in this memo.
  2591.  
  2592. 6. References
  2593.  
  2594.    [1] K. Sklower, B. Lloyd, G. McGregor, D. Carr, "The PPP Multilink
  2595.        Protocol (MP)".
  2596.  
  2597.    [2] Simpson, W., Editor, "The Point-to-Point Protocol (PPP)", STD
  2598.        51, RFC 1661, Daydreamer, July 1994.
  2599.  
  2600. 7. Author's Address
  2601.  
  2602.    Kevin Smith
  2603.    Ascend Communications
  2604.    1275 Harbor Bay Parkway
  2605.    Alameda, CA 94502
  2606.  
  2607.    Phone:  (510) 769-6001
  2608.    FAX:    (510) 814-2300
  2609.    EMail:  ksmith@ascend.com
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615.  
  2616.  
  2617.  
  2618.  
  2619.  
  2620.  
  2621.  
  2622.  
  2623.  
  2624.  
  2625.  
  2626.  
  2627.  
  2628.  
  2629.  
  2630.  
  2631.  
  2632.  
  2633.  
  2634. Smith                        Informational                     [Page 47]
  2635.  
  2636.