home *** CD-ROM | disk | FTP | other *** search
/ Thomson (Residential) / TGSTPv7203.iso / mac / SNMP_MIBs / extended / ATM-TC-MIB.mib < prev    next >
Text File  |  2008-02-08  |  28KB  |  793 lines

  1.      ATM-TC-MIB DEFINITIONS ::= BEGIN
  2.  
  3.      IMPORTS
  4.         MODULE-IDENTITY, OBJECT-IDENTITY,
  5.         TimeTicks, mib-2
  6.             FROM SNMPv2-SMI
  7.         TEXTUAL-CONVENTION
  8.             FROM SNMPv2-TC;
  9.  
  10.  
  11.      atmTCMIB MODULE-IDENTITY
  12.           LAST-UPDATED "9810190200Z"
  13.           ORGANIZATION "IETF AToMMIB Working Group"
  14.           CONTACT-INFO
  15.             "          Michael Noto
  16.               Postal:  3Com Corporation
  17.                        5400 Bayfront Plaza, M/S 3109
  18.                        Santa Clara, CA 95052
  19.                        USA
  20.               Tel:     +1 408 326 2218
  21.               E-mail:  mike_noto@3com.com
  22.  
  23.                        Ethan Mickey Spiegel
  24.  
  25.  
  26.  
  27.  
  28.  
  29.               Postal:  Cisco Systems
  30.                        170 W. Tasman Dr.
  31.                        San Jose, CA 95134
  32.                        USA
  33.               Tel:     +1 408 526 6408
  34.               E-mail:  mspiegel@cisco.com
  35.  
  36.                        Kaj Tesink
  37.               Postal:  Bellcore
  38.                        331 Newman Springs Road
  39.                        Red Bank, NJ 07701
  40.                        USA
  41.               Tel:     +1 732 758 5254
  42.               Fax:     +1 732 758 4177
  43.               E-mail:  kaj@bellcore.com"
  44.           DESCRIPTION
  45.            "This MIB Module provides Textual Conventions
  46.            and OBJECT-IDENTITY Objects to be used by
  47.            ATM systems."
  48. --        ::= { mib-2 37 3 } -- atmMIB 3 (see [3])
  49.           ::= { mib-2 atmMib(37) 3 } -- atmMIB 3 (see [3])  
  50.  
  51.      -- The Textual Conventions defined below are organized
  52.      -- alphabetically
  53.  
  54.  
  55.      AtmAddr ::= TEXTUAL-CONVENTION
  56.              DISPLAY-HINT "1x"
  57.              STATUS  current
  58.              DESCRIPTION
  59.                  "An ATM address. The semantics are implied by
  60.                  the length. The address types are: - no
  61.                  address (0 octets) - E.164 (8 octets) - NSAP
  62.                  (20 octets) In addition, when subaddresses
  63.                  are used the AtmAddr may represent the
  64.                  concatenation of address and subaddress. The
  65.                  associated address types are: - E.164, E.164
  66.                  (16 octets) - E.164, NSAP (28 octets) - NSAP,
  67.                  NSAP (40 octets) Address lengths other than
  68.                  defined in this definition imply address
  69.                  types defined elsewhere.  Note: The E.164
  70.                  address is encoded in BCD format."
  71.             SYNTAX   OCTET STRING (SIZE(0..40))
  72.  
  73.  
  74.     AtmConnCastType ::= TEXTUAL-CONVENTION
  75.             STATUS  current
  76.             DESCRIPTION
  77.               "The type of topology of a connection (point-
  78.  
  79.  
  80.  
  81.  
  82.  
  83.               to-point, point-to-multipoint). In the case
  84.               of point-to-multipoint, the orientation of
  85.               this VPL or VCL in the connection.
  86.               On a host:
  87.               - p2mpRoot indicates that the host
  88.                 is the root of the p2mp connection.
  89.               - p2mpLeaf indicates that the host
  90.                 is a leaf of the p2mp connection.
  91.               On a switch interface:
  92.               - p2mpRoot indicates that cells received
  93.                 by the switching fabric from the interface
  94.                 are from the root of the p2mp connection.
  95.               - p2mpLeaf indicates that cells transmitted
  96.                 to the interface from the switching fabric
  97.                 are to the leaf of the p2mp connection."
  98.             SYNTAX   INTEGER {
  99.                p2p(1),
  100.                p2mpRoot(2),
  101.                p2mpLeaf(3)
  102.                }
  103.  
  104.     AtmConnKind ::= TEXTUAL-CONVENTION
  105.             STATUS  current
  106.             DESCRIPTION
  107.                 "The type of call control used for an ATM
  108.                 connection at a particular interface. The use
  109.                 is as follows:
  110.                    pvc(1)
  111.                       Virtual link of a PVC. Should not be
  112.                       used for an PVC/SVC (i.e., Soft PVC)
  113.                       crossconnect.
  114.                    svcIncoming(2)
  115.                       Virtual link established after a
  116.                       received signaling request to setup
  117.                       an SVC.
  118.                    svcOutgoing(3)
  119.                       Virtual link established after a
  120.                       transmitted or forwarded signaling
  121.                       request to setup an SVC.
  122.                    spvcInitiator(4)
  123.                       Virtual link at the PVC side of an
  124.                       SVC/PVC crossconnect, where the
  125.                       switch is the initiator of the Soft PVC
  126.                       setup.
  127.                    spvcTarget(5)
  128.                       Virtual link at the PVC side of an
  129.                       SVC/PVC crossconnect, where the
  130.                       switch is the target of the Soft PVC
  131.  
  132.  
  133.  
  134.  
  135.  
  136.                       setup.
  137.  
  138.                 For PVCs, a pvc virtual link is always cross-
  139.                 connected to a pvc virtual link.
  140.  
  141.                 For SVCs, an svcIncoming virtual link is always cross-
  142.                 connected to an svcOutgoing virtual link.
  143.  
  144. For Soft PVCs, an spvcInitiator is either cross-connected to
  145. an svcOutgoing or an spvcTarget, and an spvcTarget is either
  146. cross-connected to an svcIncoming or an spvcInitiator."
  147.         SYNTAX   INTEGER {
  148.            pvc(1),
  149.            svcIncoming(2),
  150.            svcOutgoing(3),
  151.            spvcInitiator(4),
  152.            spvcTarget(5)
  153.            }
  154.  
  155.     AtmIlmiNetworkPrefix ::= TEXTUAL-CONVENTION
  156.         STATUS   current
  157.         DESCRIPTION
  158.             "A network prefix used for ILMI address
  159.             registration.  In the case of ATM endsystem
  160.             addresses (AESAs), the network prefix is the first
  161.             13 octets of the address which includes the AFI,
  162.             IDI, and HO-DSP fields.  In the case of native
  163.             E.164 addresses, the network prefix is the entire
  164.             E.164 address encoded in 8 octets, as if it were
  165.             an E.164 IDP in an ATM endsystem address
  166.             structure."
  167.         REFERENCE
  168.             "ATM Forum, Integrated Local Management Interface
  169.                (ILMI) Specification, Version 4.0,
  170.                af-ilmi-0065.000, September 1996, Section 9
  171.              ATM Forum, ATM User-Network Interface Signalling
  172.                Specification, Version 4.0 (UNI 4.0),
  173.                af-sig-0061.000, June 1996, Section 3"
  174.         SYNTAX   OCTET STRING (SIZE(8|13))
  175.  
  176. AtmInterfaceType ::= TEXTUAL-CONVENTION
  177.         STATUS       current
  178.         DESCRIPTION
  179.             "The connection setup procedures used for the
  180.             identified interface.
  181.  
  182.             Other: Connection setup procedures other than
  183.                those listed below.
  184.  
  185.  
  186.  
  187.  
  188.  
  189.             Auto-configuration:
  190.                Indicates that the connection setup
  191.                procedures are to be determined dynamically,
  192.                or that determination has not yet been
  193.                completed. One such mechanism is via ATM
  194.                Forum ILMI auto-configuration procedures.
  195.  
  196.             ITU-T DSS2:
  197.             -  ITU-T Recommendation Q.2931, Broadband
  198.                Integrated Service Digital Network (B-ISDN)
  199.                Digital Subscriber Signalling System No.2
  200.                (DSS2) User-Network Interface (UNI) Layer 3
  201.                Specification for Basic Call/Connection
  202.                Control (September 1994)
  203.             -  ITU-T Draft Recommendation Q.2961,
  204.                B-ISDN DSS 2 Support of Additional Traffic
  205.                Parameters (May 1995)
  206.  
  207.             -  ITU-T Draft Recommendation Q.2971,
  208.                B-ISDN DSS 2 User Network Interface Layer 3
  209.                Specification for Point-to-multipoint
  210.                Call/connection Control (May 1995)
  211.  
  212.             ATM Forum UNI 3.0:
  213.                ATM Forum, ATM User-Network Interface,
  214.                Version 3.0 (UNI 3.0) Specification,
  215.                (1994).
  216.  
  217.             ATM Forum UNI 3.1:
  218.                ATM Forum, ATM User-Network Interface,
  219.                Version 3.1 (UNI 3.1) Specification,
  220.                (November 1994).
  221.  
  222.             ATM Forum UNI Signalling 4.0:
  223.                ATM Forum, ATM User-Network Interface (UNI)
  224.                Signalling Specification Version 4.0,
  225.                af-sig-0061.000 (June 1996).
  226.  
  227.             ATM Forum IISP (based on UNI 3.0 or UNI 3.1) :
  228.                Interim Inter-switch Signaling Protocol
  229.                (IISP) Specification, Version 1.0,
  230.                af-pnni-0026.000, (December 1994).
  231.  
  232.             ATM Forum PNNI 1.0 :
  233.                ATM Forum, Private Network-Network Interface
  234.                Specification, Version 1.0, af-pnni-0055.000,
  235.                (March 1996).
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.             ATM Forum B-ICI:
  243.                ATM Forum, B-ICI Specification, Version 2.0,
  244.                af-bici-0013.002, (November 1995).
  245.  
  246.             ATM Forum UNI PVC Only:
  247.                An ATM Forum compliant UNI with the
  248.                signalling disabled.
  249.             ATM Forum NNI PVC Only:
  250.                An ATM Forum compliant NNI with the
  251.                signalling disabled."
  252.         SYNTAX  INTEGER  {
  253.                   other(1),
  254.                   autoConfig(2),
  255.                   ituDss2(3),
  256.                   atmfUni3Dot0(4),
  257.                   atmfUni3Dot1(5),
  258.                   atmfUni4Dot0(6),
  259.                   atmfIispUni3Dot0(7),
  260.                   atmfIispUni3Dot1(8),
  261.                   atmfIispUni4Dot0(9),
  262.         atmfPnni1Dot0(10),
  263.         atmfBici2Dot0(11),
  264.         atmfUniPvcOnly(12),
  265.         atmfNniPvcOnly(13)  }
  266.  
  267. AtmServiceCategory ::= TEXTUAL-CONVENTION
  268.         STATUS  current
  269.         DESCRIPTION
  270.             "The service category for a connection."
  271.         REFERENCE
  272.             "ATM Forum Traffic Management Specification,
  273.             Version 4.0, af-tm-0056.000, June 1996."
  274.         SYNTAX   INTEGER {
  275.            other(1),   -- none of the following
  276.            cbr(2),     -- constant bit rate
  277.            rtVbr(3),   -- real-time variable bit rate
  278.            nrtVbr(4),  -- non real-time variable bit rate
  279.            abr(5),     -- available bit rate
  280.            ubr(6)      -- unspecified bit rate
  281.            }
  282.  
  283. AtmSigDescrParamIndex ::= TEXTUAL-CONVENTION
  284.         STATUS  current
  285.         DESCRIPTION
  286.             "The value of this object identifies a row in the
  287.             atmSigDescrParamTable. The value 0 signifies that
  288.             none of the signalling parameters defined in the
  289.             atmSigDescrParamTable are applicable."
  290.  
  291.  
  292.  
  293.  
  294.  
  295.         SYNTAX  INTEGER (0..2147483647)
  296.  
  297. AtmTrafficDescrParamIndex ::= TEXTUAL-CONVENTION
  298.         STATUS  current
  299.         DESCRIPTION
  300.             "The value of this object identifies a row in the
  301.             atmTrafficDescrParamTable.  The value 0 signifies
  302.             that no row has been identified."
  303.         SYNTAX  INTEGER (0..2147483647)
  304.  
  305. AtmVcIdentifier ::= TEXTUAL-CONVENTION
  306.         STATUS  current
  307.         DESCRIPTION
  308.             "The VCI value for a VCL. The maximum VCI value
  309.             cannot exceed the value allowable by
  310.             atmInterfaceMaxVciBits defined in ATM-MIB."
  311.         SYNTAX   INTEGER (0..65535)
  312.  
  313. AtmVpIdentifier ::= TEXTUAL-CONVENTION
  314.         STATUS  current
  315.         DESCRIPTION
  316.             "The VPI value for a VPL or VCL. The value VPI=0
  317.             is only allowed for a VCL. For ATM UNIs supporting
  318.             VPCs the VPI value ranges from 0 to 255.  The VPI
  319.             value 0 is supported for ATM UNIs conforming to
  320.             the ATM Forum UNI 4.0 Annex 8 (Virtual UNIs)
  321.             specification. For ATM UNIs supporting VCCs the
  322.             VPI value ranges from 0 to 255.  For ATM NNIs the
  323.             VPI value ranges from 0 to 4095.  The maximum VPI
  324.             value cannot exceed the value allowable by
  325.             atmInterfaceMaxVpiBits defined in ATM-MIB."
  326.         SYNTAX    INTEGER (0..4095)
  327.  
  328. AtmVorXAdminStatus ::= TEXTUAL-CONVENTION
  329.         STATUS  current
  330.         DESCRIPTION
  331.             "The value determines the desired administrative
  332.             status of a virtual link or cross-connect. The up
  333.             and down states indicate that the traffic flow is
  334.             enabled or disabled respectively on the virtual
  335.             link or cross-connect."
  336.         SYNTAX   INTEGER {
  337.            up(1),
  338.            down(2)
  339.             }
  340.  
  341. AtmVorXLastChange ::= TEXTUAL-CONVENTION
  342.         STATUS  current
  343.  
  344.  
  345.  
  346.  
  347.  
  348.         DESCRIPTION
  349.             "The value of MIB II's sysUpTime at the time a
  350.             virtual link or cross-connect entered its current
  351.             operational state. If the current state was
  352.             entered prior to the last re-initialization of the
  353.             agent then this object contains a zero value."
  354.         SYNTAX   TimeTicks
  355.  
  356. AtmVorXOperStatus ::= TEXTUAL-CONVENTION
  357.         STATUS  current
  358.         DESCRIPTION
  359.             "The value determines the operational status of a
  360.             virtual link or cross-connect. The up and down
  361.             states indicate that the traffic flow is enabled
  362.             or disabled respectively on the virtual link or
  363.             cross-connect. The unknown state indicates that
  364.             the state of it cannot be determined. The state
  365.             will be down or unknown if the supporting ATM
  366.             interface(s) is down or unknown respectively."
  367.         SYNTAX   INTEGER {
  368.            up(1),
  369.            down(2),
  370.            unknown(3)
  371.            }
  372.  
  373.  
  374.  
  375.  
  376. -- OBJECT-IDENTITIES:
  377.  
  378. -- The following atmTrafficDescriptorTypes has been moved
  379. -- from RFC1695 and no longer appear in the revision of
  380. -- RFC1695[3].
  381.  
  382. --atmTrafficDescriptorTypes OBJECT IDENTIFIER ::= {mib-2 37 1 1}
  383. --                                            -- atmMIBObjects
  384. --                                            -- See [3].
  385.  
  386. atmMIBObjects OBJECT IDENTIFIER ::= {mib-2  atmMIB(37) 1}
  387. atmTrafficDescriptorTypes OBJECT IDENTIFIER ::= {atmMIBObjects 1}
  388.  
  389.  
  390. -- All other and new OBJECT IDENTITIES
  391. -- are defined under the following subtree:
  392.  
  393.     atmObjectIdentities OBJECT IDENTIFIER ::= {atmTCMIB 1}
  394.  
  395. -- The following values are defined for use as
  396. -- possible values of the ATM traffic descriptor type.
  397.  
  398. atmNoTrafficDescriptor  OBJECT-IDENTITY
  399.     STATUS  deprecated
  400.  
  401.  
  402.  
  403.  
  404.  
  405.     DESCRIPTION
  406.         "This identifies the no ATM traffic
  407.         descriptor type.  Parameters 1, 2, 3, 4,
  408.         and 5 are not used.  This traffic descriptor
  409.         type can be used for best effort traffic."
  410.     ::= {atmTrafficDescriptorTypes 1}
  411.  
  412. atmNoClpNoScr  OBJECT-IDENTITY
  413.     STATUS  current
  414.     DESCRIPTION
  415.         "This traffic descriptor type is for no CLP
  416.         and no Sustained Cell Rate.  The use of the
  417.         parameter vector for this type:
  418.         Parameter 1: peak cell rate in cells/second
  419.                      for CLP=0+1 traffic
  420.         Parameter 2: not used
  421.         Parameter 3: not used
  422.         Parameter 4: not used
  423.         Parameter 5: not used."
  424.     REFERENCE
  425.         "ATM Forum,ATM User-Network Interface,
  426.            Version 3.0 (UNI 3.0) Specification, 1994.
  427.          ATM Forum, ATM User-Network Interface,
  428.            Version 3.1 (UNI 3.1) Specification,
  429.            November 1994."
  430.     ::= {atmTrafficDescriptorTypes 2}
  431.  
  432. atmClpNoTaggingNoScr  OBJECT-IDENTITY
  433.     STATUS  deprecated
  434.     DESCRIPTION
  435.         "This traffic descriptor is for CLP without
  436.         tagging and no Sustained Cell Rate.  The use
  437.         of the parameter vector for this type:
  438.         Parameter 1: peak cell rate in cells/second
  439.                      for CLP=0+1 traffic
  440.         Parameter 2: peak cell rate in cells/second
  441.                      for CLP=0 traffic
  442.         Parameter 3: not used
  443.         Parameter 4: not used
  444.         Parameter 5: not used."
  445.     ::= {atmTrafficDescriptorTypes 3}
  446.  
  447. atmClpTaggingNoScr  OBJECT-IDENTITY
  448.     STATUS  deprecated
  449.     DESCRIPTION
  450.         "This traffic descriptor is for CLP with
  451.         tagging and no Sustained Cell Rate.  The use
  452.         of the parameter vector for this type:
  453.  
  454.  
  455.  
  456.  
  457.  
  458.         Parameter 1: peak cell rate in cells/second
  459.                      for CLP=0+1 traffic
  460.         Parameter 2: peak cell rate in cells/second
  461.                      for CLP=0 traffic, excess
  462.                      tagged as CLP=1
  463.         Parameter 3: not used
  464.         Parameter 4: not used
  465.         Parameter 5: not used."
  466.     ::= {atmTrafficDescriptorTypes 4}
  467.  
  468. atmNoClpScr  OBJECT-IDENTITY
  469.     STATUS  current
  470.     DESCRIPTION
  471.         "This traffic descriptor type is for no CLP
  472.         with Sustained Cell Rate.  The use of the
  473.         parameter vector for this type:
  474.         Parameter 1: peak cell rate in cells/second
  475.                      for CLP=0+1 traffic
  476.         Parameter 2: sustainable cell rate in cells/second
  477.                      for CLP=0+1 traffic
  478.         Parameter 3: maximum burst size in cells
  479.         Parameter 4: not used
  480.         Parameter 5: not used."
  481.     REFERENCE
  482.         "ATM Forum,ATM User-Network Interface,
  483.            Version 3.0 (UNI 3.0) Specification, 1994.
  484.          ATM Forum, ATM User-Network Interface,
  485.            Version 3.1 (UNI 3.1) Specification,
  486.            November 1994."
  487.     ::= {atmTrafficDescriptorTypes 5}
  488.  
  489. atmClpNoTaggingScr  OBJECT-IDENTITY
  490.     STATUS  current
  491.     DESCRIPTION
  492.         "This traffic descriptor type is for CLP with
  493.         Sustained Cell Rate and no tagging.  The use
  494.         of the parameter vector for this type:
  495.         Parameter 1: peak cell rate in cells/second
  496.                      for CLP=0+1 traffic
  497.         Parameter 2: sustainable cell rate in cells/second
  498.                      for CLP=0 traffic
  499.         Parameter 3: maximum burst size in cells
  500.         Parameter 4: not used
  501.         Parameter 5: not used."
  502.     REFERENCE
  503.         "ATM Forum,ATM User-Network Interface,
  504.            Version 3.0 (UNI 3.0) Specification, 1994.
  505.          ATM Forum, ATM User-Network Interface,
  506.  
  507.  
  508.  
  509.  
  510.  
  511.            Version 3.1 (UNI 3.1) Specification,
  512.            November 1994."
  513.     ::= {atmTrafficDescriptorTypes 6}
  514.  
  515. atmClpTaggingScr  OBJECT-IDENTITY
  516.     STATUS  current
  517.     DESCRIPTION
  518.         "This traffic descriptor type is for CLP with
  519.         tagging and Sustained Cell Rate.  The use of
  520.         the parameter vector for this type:
  521.         Parameter 1: peak cell rate in cells/second
  522.                      for CLP=0+1 traffic
  523.         Parameter 2: sustainable cell rate in cells/second
  524.                      for CLP=0 traffic, excess tagged as
  525.                      CLP=1
  526.         Parameter 3: maximum burst size in cells
  527.         Parameter 4: not used
  528.         Parameter 5: not used."
  529.     REFERENCE
  530.         "ATM Forum,ATM User-Network Interface,
  531.            Version 3.0 (UNI 3.0) Specification, 1994.
  532.          ATM Forum, ATM User-Network Interface,
  533.            Version 3.1 (UNI 3.1) Specification,
  534.            November 1994."
  535.     ::= {atmTrafficDescriptorTypes 7}
  536.  
  537. atmClpNoTaggingMcr  OBJECT-IDENTITY
  538.     STATUS  current
  539.     DESCRIPTION
  540.         "This traffic descriptor type is for CLP with
  541.         Minimum Cell Rate and no tagging.  The use of
  542.         the parameter vector for this type:
  543.         Parameter 1: peak cell rate in cells/second
  544.                      for CLP=0+1 traffic
  545.         Parameter 2: CDVT in tenths of microseconds
  546.         Parameter 3: minimum cell rate in cells/second
  547.         Parameter 4: unused
  548.         Parameter 5: unused."
  549.     REFERENCE
  550.         "ATM Forum,ATM User-Network Interface,
  551.            Version 3.0 (UNI 3.0) Specification, 1994.
  552.          ATM Forum, ATM User-Network Interface,
  553.            Version 3.1 (UNI 3.1) Specification,
  554.            November 1994."
  555.     ::= {atmTrafficDescriptorTypes 8}
  556.  
  557. atmClpTransparentNoScr  OBJECT-IDENTITY
  558.     STATUS  current
  559.  
  560.  
  561.  
  562.  
  563.  
  564.     DESCRIPTION
  565.         "This traffic descriptor type is for the CLP-
  566.         transparent model and no Sustained Cell Rate.
  567.         The use of the parameter vector for this type:
  568.         Parameter 1: peak cell rate in cells/second
  569.                      for CLP=0+1 traffic
  570.         Parameter 2: CDVT in tenths of microseconds
  571.         Parameter 3: not used
  572.         Parameter 4: not used
  573.         Parameter 5: not used.
  574.  
  575.         This traffic descriptor type is applicable to
  576.         connections following the CBR.1 conformance
  577.         definition.
  578.  
  579.         Connections specifying this traffic descriptor
  580.         type will be rejected at UNI 3.0 or UNI 3.1
  581.         interfaces.  For a similar traffic descriptor
  582.         type that can be accepted at UNI 3.0 and
  583.         UNI 3.1 interfaces, see atmNoClpNoScr."
  584.     REFERENCE
  585.         "ATM Forum,ATM User-Network Interface,
  586.            Version 3.0 (UNI 3.0) Specification, 1994.
  587.          ATM Forum, ATM User-Network Interface,
  588.            Version 3.1 (UNI 3.1) Specification,
  589.            November 1994.
  590.          ATM Forum, Traffic Management Specification,
  591.            Version 4.0, af-tm-0056.000, June 1996."
  592.     ::= {atmTrafficDescriptorTypes 9}
  593.  
  594. atmClpTransparentScr  OBJECT-IDENTITY
  595.     STATUS  current
  596.     DESCRIPTION
  597.         "This traffic descriptor type is for the CLP-
  598.         transparent model with Sustained Cell Rate.
  599.         The use of the parameter vector for this type:
  600.         Parameter 1: peak cell rate in cells/second
  601.                      for CLP=0+1 traffic
  602.         Parameter 2: sustainable cell rate in cells/second
  603.                      for CLP=0+1 traffic
  604.         Parameter 3: maximum burst size in cells
  605.         Parameter 4: CDVT in tenths of microseconds
  606.         Parameter 5: not used.
  607.  
  608.         This traffic descriptor type is applicable to
  609.         connections following the VBR.1 conformance
  610.         definition.
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.         Connections specifying this traffic descriptor
  618.         type will be rejected at UNI 3.0 or UNI 3.1
  619.         interfaces.  For a similar traffic descriptor
  620.         type that can be accepted at UNI 3.0 and
  621.         UNI 3.1 interfaces, see atmNoClpScr."
  622.     REFERENCE
  623.         "ATM Forum,ATM User-Network Interface,
  624.            Version 3.0 (UNI 3.0) Specification, 1994.
  625.          ATM Forum, ATM User-Network Interface,
  626.            Version 3.1 (UNI 3.1) Specification,
  627.            November 1994.
  628.          ATM Forum, Traffic Management Specification,
  629.            Version 4.0, af-tm-0056.000, June 1996."
  630.     ::= {atmTrafficDescriptorTypes 10}
  631.  
  632. atmNoClpTaggingNoScr  OBJECT-IDENTITY
  633.     STATUS  current
  634.     DESCRIPTION
  635.         "This traffic descriptor type is for no CLP
  636.         with tagging and no Sustained Cell Rate.  The
  637.         use of the parameter vector for this type:
  638.         Parameter 1: peak cell rate in cells/second
  639.                      for CLP=0+1 traffic
  640.         Parameter 2: CDVT in tenths of microseconds
  641.         Parameter 3: not used
  642.         Parameter 4: not used
  643.         Parameter 5: not used.
  644.  
  645.         This traffic descriptor type is applicable to
  646.         connections following the UBR.2 conformance
  647.         definition ."
  648.     REFERENCE
  649.         "ATM Forum,ATM User-Network Interface,
  650.            Version 3.0 (UNI 3.0) Specification, 1994.
  651.          ATM Forum, ATM User-Network Interface,
  652.            Version 3.1 (UNI 3.1) Specification,
  653.            November 1994.
  654.          ATM Forum, Traffic Management Specification,
  655.            Version 4.0, af-tm-0056.000, June 1996."
  656.     ::= {atmTrafficDescriptorTypes 11}
  657.  
  658. atmNoClpNoScrCdvt  OBJECT-IDENTITY
  659.     STATUS  current
  660.     DESCRIPTION
  661.         "This traffic descriptor type is for no CLP
  662.         and no Sustained Cell Rate.  The use of the
  663.         parameter vector for this type:
  664.         Parameter 1: peak cell rate in cells/second
  665.  
  666.  
  667.  
  668.  
  669.  
  670.                      for CLP=0+1 traffic
  671.         Parameter 2: CDVT in tenths of microseconds
  672.         Parameter 3: not used
  673.         Parameter 4: not used
  674.         Parameter 5: not used.
  675.  
  676.         This traffic descriptor type is applicable to
  677.         CBR connections following the UNI 3.0/3.1
  678.         conformance definition for PCR CLP=0+1.
  679.         These CBR connections differ from CBR.1
  680.         connections in that the CLR objective
  681.         applies only to the CLP=0 cell flow.
  682.  
  683.         This traffic descriptor type is also
  684.         applicable to connections following the UBR.1
  685.         conformance definition."
  686.     REFERENCE
  687.         "ATM Forum,ATM User-Network Interface,
  688.            Version 3.0 (UNI 3.0) Specification, 1994.
  689.          ATM Forum, ATM User-Network Interface,
  690.            Version 3.1 (UNI 3.1) Specification,
  691.            November 1994.
  692.          ATM Forum, Traffic Management Specification,
  693.            Version 4.0, af-tm-0056.000, June 1996."
  694.     ::= {atmTrafficDescriptorTypes 12}
  695.  
  696. atmNoClpScrCdvt  OBJECT-IDENTITY
  697.     STATUS  current
  698.     DESCRIPTION
  699.         "This traffic descriptor type is for no CLP
  700.         with Sustained Cell Rate.  The use of the
  701.         parameter vector for this type:
  702.         Parameter 1: peak cell rate in cells/second
  703.                      for CLP=0+1 traffic
  704.         Parameter 2: sustainable cell rate in cells/second
  705.                      for CLP=0+1 traffic
  706.         Parameter 3: maximum burst size in cells
  707.         Parameter 4: CDVT in tenths of microseconds
  708.         Parameter 5: not used.
  709.  
  710.         This traffic descriptor type is applicable
  711.         to VBR connections following the UNI 3.0/3.1
  712.         conformance definition for PCR CLP=0+1 and
  713.         SCR CLP=0+1.  These VBR connections
  714.         differ from VBR.1 connections in that
  715.         the CLR objective applies only to the CLP=0
  716.         cell flow."
  717.     REFERENCE
  718.  
  719.  
  720.  
  721.  
  722.  
  723.         "ATM Forum,ATM User-Network Interface,
  724.            Version 3.0 (UNI 3.0) Specification, 1994.
  725.          ATM Forum, ATM User-Network Interface,
  726.            Version 3.1 (UNI 3.1) Specification,
  727.            November 1994.
  728.          ATM Forum, Traffic Management Specification,
  729.            Version 4.0, af-tm-0056.000, June 1996."
  730.     ::= {atmTrafficDescriptorTypes 13}
  731.  
  732. atmClpNoTaggingScrCdvt  OBJECT-IDENTITY
  733.     STATUS  current
  734.     DESCRIPTION
  735.         "This traffic descriptor type is for CLP with
  736.         Sustained Cell Rate and no tagging.  The use
  737.         of the parameter vector for this type:
  738.         Parameter 1: peak cell rate in cells/second
  739.                      for CLP=0+1 traffic
  740.         Parameter 2: sustainable cell rate in cells/second
  741.                      for CLP=0 traffic
  742.         Parameter 3: maximum burst size in cells
  743.         Parameter 4: CDVT in tenths of microseconds
  744.         Parameter 5: not used.
  745.  
  746.         This traffic descriptor type is applicable to
  747.         connections following the VBR.2 conformance
  748.         definition."
  749.     REFERENCE
  750.         "ATM Forum,ATM User-Network Interface,
  751.            Version 3.0 (UNI 3.0) Specification, 1994.
  752.          ATM Forum, ATM User-Network Interface,
  753.            Version 3.1 (UNI 3.1) Specification,
  754.            November 1994.
  755.          ATM Forum, Traffic Management Specification,
  756.            Version 4.0, af-tm-0056.000, June 1996."
  757.     ::= {atmTrafficDescriptorTypes 14}
  758.  
  759. atmClpTaggingScrCdvt  OBJECT-IDENTITY
  760.     STATUS  current
  761.     DESCRIPTION
  762.         "This traffic descriptor type is for CLP with
  763.         tagging and Sustained Cell Rate.  The use of
  764.         the parameter vector for this type:
  765.         Parameter 1: peak cell rate in cells/second
  766.                      for CLP=0+1 traffic
  767.         Parameter 2: sustainable cell rate in cells/second
  768.                      for CLP=0 traffic, excess tagged as
  769.                      CLP=1
  770.         Parameter 3: maximum burst size in cells
  771.  
  772.  
  773.  
  774.  
  775.  
  776.         Parameter 4: CDVT in tenths of microseconds
  777.         Parameter 5: not used.
  778.  
  779.         This traffic descriptor type is applicable to
  780.         connections following the VBR.3 conformance
  781.         definition."
  782.     REFERENCE
  783.         "ATM Forum,ATM User-Network Interface,
  784.            Version 3.0 (UNI 3.0) Specification, 1994.
  785.          ATM Forum, ATM User-Network Interface,
  786.            Version 3.1 (UNI 3.1) Specification,
  787.            November 1994.
  788.          ATM Forum, Traffic Management Specification,
  789.            Version 4.0, af-tm-0056.000, June 1996."
  790.     ::= {atmTrafficDescriptorTypes 15}
  791.  
  792. END
  793.