home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / mibs / EtherLike-MIB.txt < prev    next >
Text File  |  1999-12-15  |  51KB  |  1,174 lines

  1. EtherLike-MIB DEFINITIONS ::= BEGIN
  2.  
  3.     IMPORTS
  4.         MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY,
  5.         Counter32, mib-2, transmission
  6.             FROM SNMPv2-SMI
  7.         MODULE-COMPLIANCE, OBJECT-GROUP
  8.             FROM SNMPv2-CONF
  9.         ifIndex, InterfaceIndex
  10.             FROM IF-MIB;
  11.  
  12.     etherMIB MODULE-IDENTITY
  13.         LAST-UPDATED "9908240400Z"  -- August 24, 1999
  14.         ORGANIZATION "IETF Ethernet Interfaces and Hub MIB
  15.                      Working Group"
  16.         CONTACT-INFO
  17.             "WG E-mail: hubmib@hprnd.rose.hp.com
  18.           To subscribe: hubmib-request@hprnd.rose.hp.com
  19.  
  20.                  Chair: Dan Romascanu
  21.                 Postal: Lucent Technologies
  22.                         Atidum Technology Park, Bldg. 3
  23.                         Tel Aviv 61131
  24.                         Israel
  25.                    Tel: +972 3 645 8414
  26.                 E-mail: dromasca@lucent.com
  27.  
  28.                Editor: John Flick
  29.                Postal: Hewlett-Packard Company
  30.                        8000 Foothills Blvd. M/S 5557
  31.                        Roseville, CA 95747-5557
  32.                        USA
  33.                   Tel: +1 916 785 4018
  34.                   Fax: +1 916 785 1199
  35.                E-mail: johnf@rose.hp.com
  36.  
  37.                Editor: Jeffrey Johnson
  38.                Postal: RedBack Networks
  39.                        2570 North First Street, Suite 410
  40.                        San Jose, CA, 95131
  41.                        USA
  42.                   Tel: +1 408 571 2699
  43.                   Fax: +1 408 571 2698
  44.                E-Mail: jeff@redbacknetworks.com"
  45.  
  46.         DESCRIPTION "The MIB module to describe generic objects for
  47.  
  48.  
  49.                     Ethernet-like network interfaces.
  50.  
  51.                     The following reference is used throughout this
  52.                     MIB module:
  53.  
  54.                     [IEEE 802.3 Std] refers to:
  55.                        IEEE Std 802.3, 1998 Edition: 'Information
  56.                        technology - Telecommunications and
  57.                        information exchange between systems -
  58.                        Local and metropolitan area networks -
  59.                        Specific requirements - Part 3: Carrier
  60.                        sense multiple access with collision
  61.                        detection (CSMA/CD) access method and
  62.                        physical layer specifications',
  63.                        September 1998.
  64.  
  65.                     Of particular interest is Clause 30, '10Mb/s,
  66.                     100Mb/s and 1000Mb/s Management'."
  67.  
  68.         REVISION    "9908240400Z"  -- August 24, 1999
  69.         DESCRIPTION "Updated to include support for 1000 Mb/sec
  70.                      interfaces and full-duplex interfaces.
  71.                      This version published as RFC 2665."
  72.  
  73.         REVISION    "9806032150Z"
  74.         DESCRIPTION "Updated to include support for 100 Mb/sec
  75.                      interfaces.
  76.                      This version published as RFC 2358."
  77.  
  78.         REVISION    "9402030400Z"
  79.         DESCRIPTION "Initial version, published as RFC 1650."
  80.  
  81.         ::= { mib-2 35 }
  82.  
  83.  
  84.     etherMIBObjects OBJECT IDENTIFIER ::= { etherMIB 1 }
  85.  
  86.     dot3    OBJECT IDENTIFIER ::= { transmission 7 }
  87.  
  88.     -- the Ethernet-like Statistics group
  89.  
  90.     dot3StatsTable OBJECT-TYPE
  91.         SYNTAX     SEQUENCE OF Dot3StatsEntry
  92.         MAX-ACCESS not-accessible
  93.         STATUS     current
  94.         DESCRIPTION "Statistics for a collection of ethernet-like
  95.                     interfaces attached to a particular system.
  96.                     There will be one row in this table for each
  97.  
  98.  
  99.                     ethernet-like interface in the system."
  100.         ::= { dot3 2 }
  101.  
  102.     dot3StatsEntry OBJECT-TYPE
  103.         SYNTAX     Dot3StatsEntry
  104.         MAX-ACCESS not-accessible
  105.         STATUS     current
  106.         DESCRIPTION "Statistics for a particular interface to an
  107.                     ethernet-like medium."
  108.         INDEX       { dot3StatsIndex }
  109.         ::= { dot3StatsTable 1 }
  110.  
  111.     Dot3StatsEntry ::=
  112.         SEQUENCE {
  113.             dot3StatsIndex                      InterfaceIndex,
  114.             dot3StatsAlignmentErrors            Counter32,
  115.             dot3StatsFCSErrors                  Counter32,
  116.             dot3StatsSingleCollisionFrames      Counter32,
  117.             dot3StatsMultipleCollisionFrames    Counter32,
  118.             dot3StatsSQETestErrors              Counter32,
  119.             dot3StatsDeferredTransmissions      Counter32,
  120.             dot3StatsLateCollisions             Counter32,
  121.             dot3StatsExcessiveCollisions        Counter32,
  122.             dot3StatsInternalMacTransmitErrors  Counter32,
  123.             dot3StatsCarrierSenseErrors         Counter32,
  124.             dot3StatsFrameTooLongs              Counter32,
  125.             dot3StatsInternalMacReceiveErrors   Counter32,
  126.             dot3StatsEtherChipSet               OBJECT IDENTIFIER,
  127.             dot3StatsSymbolErrors               Counter32,
  128.             dot3StatsDuplexStatus               INTEGER
  129.         }
  130.  
  131.     dot3StatsIndex OBJECT-TYPE
  132.         SYNTAX      InterfaceIndex
  133.         MAX-ACCESS  read-only
  134.         STATUS      current
  135.         DESCRIPTION "An index value that uniquely identifies an
  136.                     interface to an ethernet-like medium.  The
  137.                     interface identified by a particular value of
  138.                     this index is the same interface as identified
  139.                     by the same value of ifIndex."
  140.         REFERENCE   "RFC 2233, ifIndex"
  141.         ::= { dot3StatsEntry 1 }
  142.  
  143.     dot3StatsAlignmentErrors OBJECT-TYPE
  144.         SYNTAX      Counter32
  145.         MAX-ACCESS  read-only
  146.         STATUS      current
  147.  
  148.  
  149.         DESCRIPTION "A count of frames received on a particular
  150.                     interface that are not an integral number of
  151.                     octets in length and do not pass the FCS check.
  152.  
  153.                     The count represented by an instance of this
  154.                     object is incremented when the alignmentError
  155.                     status is returned by the MAC service to the
  156.                     LLC (or other MAC user). Received frames for
  157.                     which multiple error conditions obtain are,
  158.                     according to the conventions of IEEE 802.3
  159.                     Layer Management, counted exclusively according
  160.                     to the error status presented to the LLC.
  161.  
  162.                     This counter does not increment for 8-bit wide
  163.                     group encoding schemes.
  164.  
  165.                     Discontinuities in the value of this counter can
  166.                     occur at re-initialization of the management
  167.                     system, and at other times as indicated by the
  168.                     value of ifCounterDiscontinuityTime."
  169.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.7,
  170.                     aAlignmentErrors"
  171.         ::= { dot3StatsEntry 2 }
  172.  
  173.     dot3StatsFCSErrors OBJECT-TYPE
  174.         SYNTAX      Counter32
  175.         MAX-ACCESS  read-only
  176.         STATUS      current
  177.         DESCRIPTION "A count of frames received on a particular
  178.                     interface that are an integral number of octets
  179.                     in length but do not pass the FCS check.  This
  180.                     count does not include frames received with
  181.                     frame-too-long or frame-too-short error.
  182.  
  183.                     The count represented by an instance of this
  184.                     object is incremented when the frameCheckError
  185.                     status is returned by the MAC service to the
  186.                     LLC (or other MAC user). Received frames for
  187.                     which multiple error conditions obtain are,
  188.                     according to the conventions of IEEE 802.3
  189.                     Layer Management, counted exclusively according
  190.                     to the error status presented to the LLC.
  191.  
  192.                     Note:  Coding errors detected by the physical
  193.                     layer for speeds above 10 Mb/s will cause the
  194.                     frame to fail the FCS check.
  195.                     Discontinuities in the value of this counter can
  196.                     occur at re-initialization of the management
  197.  
  198.  
  199.                     system, and at other times as indicated by the
  200.                     value of ifCounterDiscontinuityTime."
  201.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.6,
  202.                     aFrameCheckSequenceErrors."
  203.         ::= { dot3StatsEntry 3 }
  204.  
  205.     dot3StatsSingleCollisionFrames OBJECT-TYPE
  206.         SYNTAX      Counter32
  207.         MAX-ACCESS  read-only
  208.         STATUS      current
  209.         DESCRIPTION "A count of successfully transmitted frames on
  210.                     a particular interface for which transmission
  211.                     is inhibited by exactly one collision.
  212.  
  213.                     A frame that is counted by an instance of this
  214.                     object is also counted by the corresponding
  215.                     instance of either the ifOutUcastPkts,
  216.                     ifOutMulticastPkts, or ifOutBroadcastPkts,
  217.                     and is not counted by the corresponding
  218.                     instance of the dot3StatsMultipleCollisionFrames
  219.                     object.
  220.  
  221.                     This counter does not increment when the
  222.                     interface is operating in full-duplex mode.
  223.  
  224.                     Discontinuities in the value of this counter can
  225.                     occur at re-initialization of the management
  226.                     system, and at other times as indicated by the
  227.                     value of ifCounterDiscontinuityTime."
  228.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.3,
  229.                     aSingleCollisionFrames."
  230.         ::= { dot3StatsEntry 4 }
  231.  
  232.     dot3StatsMultipleCollisionFrames OBJECT-TYPE
  233.         SYNTAX      Counter32
  234.         MAX-ACCESS  read-only
  235.         STATUS      current
  236.         DESCRIPTION "A count of successfully transmitted frames on
  237.                     a particular interface for which transmission
  238.                     is inhibited by more than one collision.
  239.  
  240.                     A frame that is counted by an instance of this
  241.                     object is also counted by the corresponding
  242.                     instance of either the ifOutUcastPkts,
  243.                     ifOutMulticastPkts, or ifOutBroadcastPkts,
  244.                     and is not counted by the corresponding
  245.                     instance of the dot3StatsSingleCollisionFrames
  246.                     object.
  247.  
  248.  
  249.                     This counter does not increment when the
  250.                     interface is operating in full-duplex mode.
  251.  
  252.                     Discontinuities in the value of this counter can
  253.                     occur at re-initialization of the management
  254.                     system, and at other times as indicated by the
  255.                     value of ifCounterDiscontinuityTime."
  256.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.4,
  257.                     aMultipleCollisionFrames."
  258.         ::= { dot3StatsEntry 5 }
  259.  
  260.     dot3StatsSQETestErrors OBJECT-TYPE
  261.         SYNTAX      Counter32
  262.         MAX-ACCESS  read-only
  263.         STATUS      current
  264.         DESCRIPTION "A count of times that the SQE TEST ERROR
  265.                     message is generated by the PLS sublayer for a
  266.                     particular interface. The SQE TEST ERROR
  267.                     is set in accordance with the rules for
  268.                     verification of the SQE detection mechanism in
  269.                     the PLS Carrier Sense Function as described in
  270.                     IEEE Std. 802.3, 1998 Edition, section 7.2.4.6.
  271.  
  272.                     This counter does not increment on interfaces
  273.                     operating at speeds greater than 10 Mb/s, or on
  274.                     interfaces operating in full-duplex mode.
  275.  
  276.                     Discontinuities in the value of this counter can
  277.                     occur at re-initialization of the management
  278.                     system, and at other times as indicated by the
  279.                     value of ifCounterDiscontinuityTime."
  280.         REFERENCE   "[IEEE 802.3 Std.], 7.2.4.6, also 30.3.2.1.4,
  281.                     aSQETestErrors."
  282.         ::= { dot3StatsEntry 6 }
  283.  
  284.     dot3StatsDeferredTransmissions OBJECT-TYPE
  285.         SYNTAX      Counter32
  286.         MAX-ACCESS  read-only
  287.         STATUS      current
  288.         DESCRIPTION "A count of frames for which the first
  289.                     transmission attempt on a particular interface
  290.                     is delayed because the medium is busy.
  291.                     The count represented by an instance of this
  292.                     object does not include frames involved in
  293.                     collisions.
  294.  
  295.                     This counter does not increment when the
  296.                     interface is operating in full-duplex mode.
  297.  
  298.  
  299.                     Discontinuities in the value of this counter can
  300.                     occur at re-initialization of the management
  301.                     system, and at other times as indicated by the
  302.                     value of ifCounterDiscontinuityTime."
  303.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.9,
  304.                     aFramesWithDeferredXmissions."
  305.         ::= { dot3StatsEntry 7 }
  306.  
  307.     dot3StatsLateCollisions OBJECT-TYPE
  308.         SYNTAX      Counter32
  309.         MAX-ACCESS  read-only
  310.         STATUS      current
  311.         DESCRIPTION "The number of times that a collision is
  312.                     detected on a particular interface later than
  313.                     one slotTime into the transmission of a packet.
  314.  
  315.                     A (late) collision included in a count
  316.                     represented by an instance of this object is
  317.                     also considered as a (generic) collision for
  318.                     purposes of other collision-related
  319.                     statistics.
  320.  
  321.                     This counter does not increment when the
  322.                     interface is operating in full-duplex mode.
  323.  
  324.                     Discontinuities in the value of this counter can
  325.                     occur at re-initialization of the management
  326.                     system, and at other times as indicated by the
  327.                     value of ifCounterDiscontinuityTime."
  328.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.10,
  329.                     aLateCollisions."
  330.         ::= { dot3StatsEntry 8 }
  331.  
  332.     dot3StatsExcessiveCollisions OBJECT-TYPE
  333.         SYNTAX      Counter32
  334.         MAX-ACCESS  read-only
  335.         STATUS      current
  336.         DESCRIPTION "A count of frames for which transmission on a
  337.                     particular interface fails due to excessive
  338.                     collisions.
  339.                     This counter does not increment when the
  340.                     interface is operating in full-duplex mode.
  341.  
  342.                     Discontinuities in the value of this counter can
  343.                     occur at re-initialization of the management
  344.                     system, and at other times as indicated by the
  345.                     value of ifCounterDiscontinuityTime."
  346.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.11,
  347.  
  348.  
  349.                     aFramesAbortedDueToXSColls."
  350.         ::= { dot3StatsEntry 9 }
  351.  
  352.     dot3StatsInternalMacTransmitErrors OBJECT-TYPE
  353.         SYNTAX      Counter32
  354.         MAX-ACCESS  read-only
  355.         STATUS      current
  356.         DESCRIPTION "A count of frames for which transmission on a
  357.                     particular interface fails due to an internal
  358.                     MAC sublayer transmit error. A frame is only
  359.                     counted by an instance of this object if it is
  360.                     not counted by the corresponding instance of
  361.                     either the dot3StatsLateCollisions object, the
  362.                     dot3StatsExcessiveCollisions object, or the
  363.                     dot3StatsCarrierSenseErrors object.
  364.  
  365.                     The precise meaning of the count represented by
  366.                     an instance of this object is implementation-
  367.                     specific.  In particular, an instance of this
  368.                     object may represent a count of transmission
  369.                     errors on a particular interface that are not
  370.                     otherwise counted.
  371.  
  372.                     Discontinuities in the value of this counter can
  373.                     occur at re-initialization of the management
  374.                     system, and at other times as indicated by the
  375.                     value of ifCounterDiscontinuityTime."
  376.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.12,
  377.                     aFramesLostDueToIntMACXmitError."
  378.         ::= { dot3StatsEntry 10 }
  379.  
  380.     dot3StatsCarrierSenseErrors OBJECT-TYPE
  381.         SYNTAX      Counter32
  382.         MAX-ACCESS  read-only
  383.         STATUS      current
  384.         DESCRIPTION "The number of times that the carrier sense
  385.                     condition was lost or never asserted when
  386.                     attempting to transmit a frame on a particular
  387.                     interface.
  388.  
  389.                     The count represented by an instance of this
  390.                     object is incremented at most once per
  391.                     transmission attempt, even if the carrier sense
  392.                     condition fluctuates during a transmission
  393.                     attempt.
  394.  
  395.                     This counter does not increment when the
  396.                     interface is operating in full-duplex mode.
  397.  
  398.  
  399.                     Discontinuities in the value of this counter can
  400.                     occur at re-initialization of the management
  401.                     system, and at other times as indicated by the
  402.                     value of ifCounterDiscontinuityTime."
  403.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.13,
  404.                     aCarrierSenseErrors."
  405.         ::= { dot3StatsEntry 11 }
  406.  
  407.     -- { dot3StatsEntry 12 } is not assigned
  408.  
  409.     dot3StatsFrameTooLongs OBJECT-TYPE
  410.         SYNTAX      Counter32
  411.         MAX-ACCESS  read-only
  412.         STATUS      current
  413.         DESCRIPTION "A count of frames received on a particular
  414.                     interface that exceed the maximum permitted
  415.                     frame size.
  416.  
  417.                     The count represented by an instance of this
  418.                     object is incremented when the frameTooLong
  419.                     status is returned by the MAC service to the
  420.                     LLC (or other MAC user). Received frames for
  421.                     which multiple error conditions obtain are,
  422.                     according to the conventions of IEEE 802.3
  423.                     Layer Management, counted exclusively according
  424.                     to the error status presented to the LLC.
  425.  
  426.                     Discontinuities in the value of this counter can
  427.                     occur at re-initialization of the management
  428.                     system, and at other times as indicated by the
  429.                     value of ifCounterDiscontinuityTime."
  430.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.25,
  431.                     aFrameTooLongErrors."
  432.         ::= { dot3StatsEntry 13 }
  433.  
  434.     -- { dot3StatsEntry 14 } is not assigned
  435.  
  436.     -- { dot3StatsEntry 15 } is not assigned
  437.  
  438.     dot3StatsInternalMacReceiveErrors OBJECT-TYPE
  439.         SYNTAX      Counter32
  440.         MAX-ACCESS  read-only
  441.         STATUS      current
  442.         DESCRIPTION "A count of frames for which reception on a
  443.                     particular interface fails due to an internal
  444.                     MAC sublayer receive error. A frame is only
  445.                     counted by an instance of this object if it is
  446.                     not counted by the corresponding instance of
  447.  
  448.  
  449.                     either the dot3StatsFrameTooLongs object, the
  450.                     dot3StatsAlignmentErrors object, or the
  451.                     dot3StatsFCSErrors object.
  452.  
  453.                     The precise meaning of the count represented by
  454.                     an instance of this object is implementation-
  455.                     specific.  In particular, an instance of this
  456.                     object may represent a count of receive errors
  457.                     on a particular interface that are not
  458.                     otherwise counted.
  459.  
  460.                     Discontinuities in the value of this counter can
  461.                     occur at re-initialization of the management
  462.                     system, and at other times as indicated by the
  463.                     value of ifCounterDiscontinuityTime."
  464.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.15,
  465.                     aFramesLostDueToIntMACRcvError."
  466.         ::= { dot3StatsEntry 16 }
  467.  
  468.     dot3StatsEtherChipSet OBJECT-TYPE
  469.         SYNTAX      OBJECT IDENTIFIER
  470.         MAX-ACCESS  read-only
  471.         STATUS      deprecated
  472.         DESCRIPTION "******** THIS OBJECT IS DEPRECATED ********
  473.  
  474.                     This object contains an OBJECT IDENTIFIER
  475.                     which identifies the chipset used to
  476.                     realize the interface. Ethernet-like
  477.                     interfaces are typically built out of
  478.                     several different chips. The MIB implementor
  479.                     is presented with a decision of which chip
  480.                     to identify via this object. The implementor
  481.                     should identify the chip which is usually
  482.                     called the Medium Access Control chip.
  483.                     If no such chip is easily identifiable,
  484.                     the implementor should identify the chip
  485.                     which actually gathers the transmit
  486.                     and receive statistics and error
  487.                     indications. This would allow a
  488.                     manager station to correlate the
  489.                     statistics and the chip generating
  490.                     them, giving it the ability to take
  491.                     into account any known anomalies
  492.                     in the chip."
  493.         ::= { dot3StatsEntry 17 }
  494.  
  495.     dot3StatsSymbolErrors OBJECT-TYPE
  496.         SYNTAX      Counter32
  497.  
  498.  
  499.         MAX-ACCESS  read-only
  500.         STATUS      current
  501.         DESCRIPTION "For an interface operating at 100 Mb/s, the
  502.                     number of times there was an invalid data symbol
  503.                     when a valid carrier was present.
  504.  
  505.                     For an interface operating in half-duplex mode
  506.                     at 1000 Mb/s, the number of times the receiving
  507.                     media is non-idle (a carrier event) for a period
  508.                     of time equal to or greater than slotTime, and
  509.                     during which there was at least one occurrence
  510.                     of an event that causes the PHY to indicate
  511.                     'Data reception error' or 'carrier extend error'
  512.                     on the GMII.
  513.  
  514.                     For an interface operating in full-duplex mode
  515.                     at 1000 Mb/s, the number of times the receiving
  516.                     media is non-idle a carrier event) for a period
  517.                     of time equal to or greater than minFrameSize,
  518.                     and during which there was at least one
  519.                     occurrence of an event that causes the PHY to
  520.                     indicate 'Data reception error' on the GMII.
  521.  
  522.                     The count represented by an instance of this
  523.                     object is incremented at most once per carrier
  524.                     event, even if multiple symbol errors occur
  525.                     during the carrier event.  This count does
  526.                     not increment if a collision is present.
  527.  
  528.                     Discontinuities in the value of this counter can
  529.                     occur at re-initialization of the management
  530.                     system, and at other times as indicated by the
  531.                     value of ifCounterDiscontinuityTime."
  532.         REFERENCE   "[IEEE 802.3 Std.], 30.3.2.1.5,
  533.                     aSymbolErrorDuringCarrier."
  534.         ::= { dot3StatsEntry 18 }
  535.  
  536.     dot3StatsDuplexStatus OBJECT-TYPE
  537.         SYNTAX      INTEGER {
  538.                         unknown(1),
  539.                         halfDuplex(2),
  540.                         fullDuplex(3)
  541.                     }
  542.         MAX-ACCESS  read-only
  543.         STATUS      current
  544.         DESCRIPTION "The current mode of operation of the MAC
  545.                     entity.  'unknown' indicates that the current
  546.                     duplex mode could not be determined.
  547.  
  548.  
  549.                     Management control of the duplex mode is
  550.                     accomplished through the MAU MIB.  When
  551.                     an interface does not support autonegotiation,
  552.                     or when autonegotiation is not enabled, the
  553.                     duplex mode is controlled using
  554.                     ifMauDefaultType.  When autonegotiation is
  555.                     supported and enabled, duplex mode is controlled
  556.                     using ifMauAutoNegAdvertisedBits.  In either
  557.                     case, the currently operating duplex mode is
  558.                     reflected both in this object and in ifMauType.
  559.  
  560.                     Note that this object provides redundant
  561.                     information with ifMauType.  Normally, redundant
  562.                     objects are discouraged.  However, in this
  563.                     instance, it allows a management application to
  564.                     determine the duplex status of an interface
  565.                     without having to know every possible value of
  566.                     ifMauType.  This was felt to be sufficiently
  567.                     valuable to justify the redundancy."
  568.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.32,
  569.                     aDuplexStatus."
  570.         ::= { dot3StatsEntry 19 }
  571.  
  572.     -- the Ethernet-like Collision Statistics group
  573.  
  574.     -- Implementation of this group is optional; it is appropriate
  575.     -- for all systems which have the necessary metering
  576.  
  577.     dot3CollTable OBJECT-TYPE
  578.         SYNTAX      SEQUENCE OF Dot3CollEntry
  579.         MAX-ACCESS  not-accessible
  580.         STATUS      current
  581.         DESCRIPTION "A collection of collision histograms for a
  582.                     particular set of interfaces."
  583.         REFERENCE   "[IEEE 802.3 Std.], 30.3.1.1.30,
  584.                     aCollisionFrames."
  585.         ::= { dot3 5 }
  586.  
  587.     dot3CollEntry OBJECT-TYPE
  588.         SYNTAX      Dot3CollEntry
  589.         MAX-ACCESS  not-accessible
  590.         STATUS      current
  591.         DESCRIPTION "A cell in the histogram of per-frame
  592.                     collisions for a particular interface.  An
  593.                     instance of this object represents the
  594.                     frequency of individual MAC frames for which
  595.                     the transmission (successful or otherwise) on a
  596.                     particular interface is accompanied by a
  597.  
  598.  
  599.                     particular number of media collisions."
  600.         INDEX       { ifIndex, dot3CollCount }
  601.         ::= { dot3CollTable 1 }
  602.  
  603.     Dot3CollEntry ::=
  604.         SEQUENCE {
  605.             dot3CollCount        INTEGER,
  606.             dot3CollFrequencies  Counter32
  607.         }
  608.  
  609.     -- { dot3CollEntry 1 } is no longer in use
  610.  
  611.     dot3CollCount OBJECT-TYPE
  612.         SYNTAX      INTEGER (1..16)
  613.         MAX-ACCESS  not-accessible
  614.         STATUS      current
  615.         DESCRIPTION "The number of per-frame media collisions for
  616.                     which a particular collision histogram cell
  617.                     represents the frequency on a particular
  618.                     interface."
  619.         ::= { dot3CollEntry 2 }
  620.  
  621.     dot3CollFrequencies OBJECT-TYPE
  622.         SYNTAX      Counter32
  623.         MAX-ACCESS  read-only
  624.         STATUS      current
  625.         DESCRIPTION "A count of individual MAC frames for which the
  626.                     transmission (successful or otherwise) on a
  627.                     particular interface occurs after the
  628.                     frame has experienced exactly the number
  629.                     of collisions in the associated
  630.                     dot3CollCount object.
  631.  
  632.                     For example, a frame which is transmitted
  633.                     on interface 77 after experiencing
  634.                     exactly 4 collisions would be indicated
  635.                     by incrementing only dot3CollFrequencies.77.4.
  636.                     No other instance of dot3CollFrequencies would
  637.                     be incremented in this example.
  638.  
  639.                     This counter does not increment when the
  640.                     interface is operating in full-duplex mode.
  641.  
  642.                     Discontinuities in the value of this counter can
  643.                     occur at re-initialization of the management
  644.                     system, and at other times as indicated by the
  645.                     value of ifCounterDiscontinuityTime."
  646.         ::= { dot3CollEntry 3 }
  647.  
  648.  
  649.     dot3ControlTable OBJECT-TYPE
  650.         SYNTAX      SEQUENCE OF Dot3ControlEntry
  651.         MAX-ACCESS  not-accessible
  652.         STATUS      current
  653.         DESCRIPTION "A table of descriptive and status information
  654.                     about the MAC Control sublayer on the
  655.                     ethernet-like interfaces attached to a
  656.                     particular system.  There will be one row in
  657.                     this table for each ethernet-like interface in
  658.                     the system which implements the MAC Control
  659.                     sublayer.  If some, but not all, of the
  660.                     ethernet-like interfaces in the system implement
  661.                     the MAC Control sublayer, there will be fewer
  662.                     rows in this table than in the dot3StatsTable."
  663.         ::= { dot3 9 }
  664.  
  665.     dot3ControlEntry OBJECT-TYPE
  666.         SYNTAX      Dot3ControlEntry
  667.         MAX-ACCESS  not-accessible
  668.         STATUS      current
  669.         DESCRIPTION "An entry in the table, containing information
  670.                     about the MAC Control sublayer on a single
  671.                     ethernet-like interface."
  672.         INDEX       { dot3StatsIndex }
  673.         ::= { dot3ControlTable 1 }
  674.  
  675.     Dot3ControlEntry ::=
  676.         SEQUENCE {
  677.             dot3ControlFunctionsSupported       BITS,
  678.             dot3ControlInUnknownOpcodes         Counter32
  679.         }
  680.  
  681.     dot3ControlFunctionsSupported OBJECT-TYPE
  682.         SYNTAX      BITS {
  683.                         pause(0)   -- 802.3x flow control
  684.                     }
  685.         MAX-ACCESS  read-only
  686.         STATUS      current
  687.         DESCRIPTION "A list of the possible MAC Control functions
  688.                     implemented for this interface."
  689.         REFERENCE   "[IEEE 802.3 Std.], 30.3.3.2,
  690.                     aMACControlFunctionsSupported."
  691.         ::= { dot3ControlEntry 1 }
  692.  
  693.     dot3ControlInUnknownOpcodes OBJECT-TYPE
  694.         SYNTAX      Counter32
  695.         MAX-ACCESS  read-only
  696.         STATUS      current
  697.  
  698.  
  699.         DESCRIPTION "A count of MAC Control frames received on this
  700.                     interface that contain an opcode that is not
  701.                     supported by this device.
  702.  
  703.                     Discontinuities in the value of this counter can
  704.                     occur at re-initialization of the management
  705.                     system, and at other times as indicated by the
  706.                     value of ifCounterDiscontinuityTime."
  707.         REFERENCE   "[IEEE 802.3 Std.], 30.3.3.5,
  708.                     aUnsupportedOpcodesReceived"
  709.         ::= { dot3ControlEntry 2 }
  710.  
  711.     dot3PauseTable OBJECT-TYPE
  712.         SYNTAX      SEQUENCE OF Dot3PauseEntry
  713.         MAX-ACCESS  not-accessible
  714.         STATUS      current
  715.         DESCRIPTION "A table of descriptive and status information
  716.                     about the MAC Control PAUSE function on the
  717.                     ethernet-like interfaces attached to a
  718.                     particular system. There will be one row in
  719.                     this table for each ethernet-like interface in
  720.                     the system which supports the MAC Control PAUSE
  721.                     function (i.e., the 'pause' bit in the
  722.                     corresponding instance of
  723.                     dot3ControlFunctionsSupported is set).  If some,
  724.                     but not all, of the ethernet-like interfaces in
  725.                     the system implement the MAC Control PAUSE
  726.                     function (for example, if some interfaces only
  727.                     support half-duplex), there will be fewer rows
  728.                     in this table than in the dot3StatsTable."
  729.         ::= { dot3 10 }
  730.  
  731.     dot3PauseEntry OBJECT-TYPE
  732.         SYNTAX      Dot3PauseEntry
  733.         MAX-ACCESS  not-accessible
  734.         STATUS      current
  735.         DESCRIPTION "An entry in the table, containing information
  736.                     about the MAC Control PAUSE function on a single
  737.                     ethernet-like interface."
  738.         INDEX       { dot3StatsIndex }
  739.         ::= { dot3PauseTable 1 }
  740.  
  741.     Dot3PauseEntry ::=
  742.         SEQUENCE {
  743.             dot3PauseAdminMode                  INTEGER,
  744.             dot3PauseOperMode                   INTEGER,
  745.             dot3InPauseFrames                   Counter32,
  746.             dot3OutPauseFrames                  Counter32
  747.  
  748.  
  749.         }
  750.  
  751.     dot3PauseAdminMode OBJECT-TYPE
  752.         SYNTAX      INTEGER {
  753.                         disabled(1),
  754.                         enabledXmit(2),
  755.                         enabledRcv(3),
  756.                         enabledXmitAndRcv(4)
  757.                     }
  758.         MAX-ACCESS  read-write
  759.         STATUS      current
  760.         DESCRIPTION "This object is used to configure the default
  761.                     administrative PAUSE mode for this interface.
  762.  
  763.                     This object represents the
  764.                     administratively-configured PAUSE mode for this
  765.                     interface.  If auto-negotiation is not enabled
  766.                     or is not implemented for the active MAU
  767.                     attached to this interface, the value of this
  768.                     object determines the operational PAUSE mode
  769.                     of the interface whenever it is operating in
  770.                     full-duplex mode.  In this case, a set to this
  771.                     object will force the interface into the
  772.                     specified mode.
  773.  
  774.                     If auto-negotiation is implemented and enabled
  775.                     for the MAU attached to this interface, the
  776.                     PAUSE mode for this interface is determined by
  777.                     auto-negotiation, and the value of this object
  778.                     denotes the mode to which the interface will
  779.                     automatically revert if/when auto-negotiation is
  780.                     later disabled.  Note that when auto-negotiation
  781.                     is running, administrative control of the PAUSE
  782.                     mode may be accomplished using the
  783.                     ifMauAutoNegCapAdvertisedBits object in the
  784.                     MAU-MIB.
  785.  
  786.                     Note that the value of this object is ignored
  787.                     when the interface is not operating in
  788.                     full-duplex mode.
  789.  
  790.                     An attempt to set this object to
  791.                     'enabledXmit(2)' or 'enabledRcv(3)' will fail
  792.                     on interfaces that do not support operation
  793.                     at greater than 100 Mb/s."
  794.         ::= { dot3PauseEntry 1 }
  795.  
  796.     dot3PauseOperMode OBJECT-TYPE
  797.  
  798.  
  799.         SYNTAX      INTEGER {
  800.                         disabled(1),
  801.                         enabledXmit(2),
  802.                         enabledRcv(3),
  803.                         enabledXmitAndRcv(4)
  804.                     }
  805.         MAX-ACCESS  read-only
  806.         STATUS      current
  807.         DESCRIPTION "This object reflects the PAUSE mode currently
  808.                     in use on this interface, as determined by
  809.                     either (1) the result of the auto-negotiation
  810.                     function or (2) if auto-negotiation is not
  811.                     enabled or is not implemented for the active MAU
  812.                     attached to this interface, by the value of
  813.                     dot3PauseAdminMode.  Interfaces operating at
  814.                     100 Mb/s or less will never return
  815.                     'enabledXmit(2)' or 'enabledRcv(3)'.  Interfaces
  816.                     operating in half-duplex mode will always return
  817.                     'disabled(1)'.  Interfaces on which
  818.                     auto-negotiation is enabled but not yet
  819.                     completed should return the value
  820.                     'disabled(1)'."
  821.         ::= { dot3PauseEntry 2 }
  822.  
  823.     dot3InPauseFrames OBJECT-TYPE
  824.         SYNTAX      Counter32
  825.         MAX-ACCESS  read-only
  826.         STATUS      current
  827.         DESCRIPTION "A count of MAC Control frames received on this
  828.                     interface with an opcode indicating the PAUSE
  829.                     operation.
  830.  
  831.                     This counter does not increment when the
  832.                     interface is operating in half-duplex mode.
  833.                     Discontinuities in the value of this counter can
  834.                     occur at re-initialization of the management
  835.                     system, and at other times as indicated by the
  836.                     value of ifCounterDiscontinuityTime."
  837.         REFERENCE   "[IEEE 802.3 Std.], 30.3.4.3,
  838.                     aPAUSEMACCtrlFramesReceived."
  839.         ::= { dot3PauseEntry 3 }
  840.  
  841.     dot3OutPauseFrames OBJECT-TYPE
  842.         SYNTAX      Counter32
  843.         MAX-ACCESS  read-only
  844.         STATUS      current
  845.         DESCRIPTION "A count of MAC Control frames transmitted on
  846.                     this interface with an opcode indicating the
  847.  
  848.  
  849.                     PAUSE operation.
  850.  
  851.                     This counter does not increment when the
  852.                     interface is operating in half-duplex mode.
  853.  
  854.                     Discontinuities in the value of this counter can
  855.                     occur at re-initialization of the management
  856.                     system, and at other times as indicated by the
  857.                     value of ifCounterDiscontinuityTime."
  858.         REFERENCE   "[IEEE 802.3 Std.], 30.3.4.2,
  859.                     aPAUSEMACCtrlFramesTransmitted."
  860.         ::= { dot3PauseEntry 4 }
  861.  
  862.     --  802.3 Tests
  863.  
  864.     dot3Tests   OBJECT IDENTIFIER ::= { dot3 6 }
  865.  
  866.     dot3Errors  OBJECT IDENTIFIER ::= { dot3 7 }
  867.  
  868.     --  TDR Test
  869.  
  870.     dot3TestTdr OBJECT-IDENTITY
  871.         STATUS      current
  872.         DESCRIPTION "The Time-Domain Reflectometry (TDR) test is
  873.                     specific to ethernet-like interfaces of type
  874.                     10Base5 and 10Base2.  The TDR value may be
  875.                     useful in determining the approximate distance
  876.                     to a cable fault.  It is advisable to repeat
  877.                     this test to check for a consistent resulting
  878.                     TDR value, to verify that there is a fault.
  879.  
  880.                     A TDR test returns as its result the time
  881.                     interval, measured in 10 MHz ticks or 100 nsec
  882.                     units, between the start of TDR test
  883.                     transmission and the subsequent detection of a
  884.                     collision or deassertion of carrier.  On
  885.                     successful completion of a TDR test, the result
  886.                     is stored as the value of an appropriate
  887.                     instance of an appropriate vendor specific MIB
  888.                     object, and the OBJECT IDENTIFIER of that
  889.                     instance is stored in the appropriate instance
  890.                     of the appropriate test result code object
  891.                     (thereby indicating where the result has been
  892.                     stored)."
  893.         ::= { dot3Tests 1 }
  894.  
  895.     -- Loopback Test
  896.  
  897.  
  898.  
  899.     dot3TestLoopBack OBJECT-IDENTITY
  900.         STATUS      current
  901.         DESCRIPTION "This test configures the MAC chip and executes
  902.                     an internal loopback test of memory, data paths,
  903.                     and the MAC chip logic.  This loopback test can
  904.                     only be executed if the interface is offline.
  905.                     Once the test has completed, the MAC chip should
  906.                     be reinitialized for network operation, but it
  907.                     should remain offline.
  908.  
  909.                     If an error occurs during a test, the
  910.                     appropriate test result object will be set
  911.                     to indicate a failure.  The two OBJECT
  912.                     IDENTIFIER values dot3ErrorInitError and
  913.                     dot3ErrorLoopbackError may be used to provided
  914.                     more information as values for an appropriate
  915.                     test result code object."
  916.         ::= { dot3Tests 2 }
  917.  
  918.     dot3ErrorInitError OBJECT-IDENTITY
  919.         STATUS      current
  920.         DESCRIPTION "Couldn't initialize MAC chip for test."
  921.         ::= { dot3Errors 1 }
  922.  
  923.     dot3ErrorLoopbackError OBJECT-IDENTITY
  924.         STATUS      current
  925.         DESCRIPTION "Expected data not received (or not received
  926.                     correctly) in loopback test."
  927.         ::= { dot3Errors 2 }
  928.  
  929.     -- { dot3 8 }, the dot3ChipSets tree, is defined in [28]
  930.  
  931.     -- conformance information
  932.  
  933.     etherConformance OBJECT IDENTIFIER ::= { etherMIB 2 }
  934.  
  935.     etherGroups      OBJECT IDENTIFIER ::= { etherConformance 1 }
  936.     etherCompliances OBJECT IDENTIFIER ::= { etherConformance 2 }
  937.  
  938.     -- compliance statements
  939.  
  940.     etherCompliance MODULE-COMPLIANCE
  941.         STATUS      deprecated
  942.         DESCRIPTION "******** THIS COMPLIANCE IS DEPRECATED ********
  943.  
  944.                     The compliance statement for managed network
  945.                     entities which have ethernet-like network
  946.                     interfaces.
  947.  
  948.  
  949.                     This compliance is deprecated and replaced by
  950.                     dot3Compliance."
  951.  
  952.         MODULE  -- this module
  953.             MANDATORY-GROUPS { etherStatsGroup }
  954.  
  955.             GROUP       etherCollisionTableGroup
  956.             DESCRIPTION "This group is optional. It is appropriate
  957.                         for all systems which have the necessary
  958.                         metering. Implementation in such systems is
  959.                         highly recommended."
  960.         ::= { etherCompliances 1 }
  961.  
  962.     ether100MbsCompliance MODULE-COMPLIANCE
  963.         STATUS      deprecated
  964.         DESCRIPTION "******** THIS COMPLIANCE IS DEPRECATED ********
  965.  
  966.                     The compliance statement for managed network
  967.                     entities which have 100 Mb/sec ethernet-like
  968.                     network interfaces.
  969.  
  970.                     This compliance is deprecated and replaced by
  971.                     dot3Compliance."
  972.  
  973.         MODULE  -- this module
  974.             MANDATORY-GROUPS { etherStats100MbsGroup }
  975.  
  976.             GROUP       etherCollisionTableGroup
  977.             DESCRIPTION "This group is optional. It is appropriate
  978.                         for all systems which have the necessary
  979.                         metering. Implementation in such systems is
  980.                         highly recommended."
  981.         ::= { etherCompliances 2 }
  982.  
  983.     dot3Compliance MODULE-COMPLIANCE
  984.         STATUS      current
  985.         DESCRIPTION "The compliance statement for managed network
  986.                     entities which have ethernet-like network
  987.                     interfaces."
  988.  
  989.         MODULE  -- this module
  990.             MANDATORY-GROUPS { etherStatsBaseGroup }
  991.  
  992.             GROUP       etherDuplexGroup
  993.             DESCRIPTION "This group is mandatory for all
  994.                         ethernet-like network interfaces which are
  995.                         capable of operating in full-duplex mode.
  996.                         It is highly recommended for all
  997.  
  998.  
  999.                         ethernet-like network interfaces."
  1000.  
  1001.             GROUP       etherStatsLowSpeedGroup
  1002.             DESCRIPTION "This group is mandatory for all
  1003.                         ethernet-like network interfaces which are
  1004.                         capable of operating at 10 Mb/s or slower in
  1005.                         half-duplex mode."
  1006.  
  1007.             GROUP       etherStatsHighSpeedGroup
  1008.             DESCRIPTION "This group is mandatory for all
  1009.                         ethernet-like network interfaces which are
  1010.                         capable of operating at 100 Mb/s or faster."
  1011.  
  1012.             GROUP       etherControlGroup
  1013.             DESCRIPTION "This group is mandatory for all
  1014.                         ethernet-like network interfaces that
  1015.                         support the MAC Control sublayer."
  1016.  
  1017.             GROUP       etherControlPauseGroup
  1018.             DESCRIPTION "This group is mandatory for all
  1019.                         ethernet-like network interfaces that
  1020.                         support the MAC Control PAUSE function."
  1021.  
  1022.             GROUP       etherCollisionTableGroup
  1023.             DESCRIPTION "This group is optional. It is appropriate
  1024.                         for all ethernet-like network interfaces
  1025.                         which are capable of operating in
  1026.                         half-duplex mode and have the necessary
  1027.                         metering. Implementation in systems with
  1028.                         such interfaces is highly recommended."
  1029.  
  1030.         ::= { etherCompliances 3 }
  1031.  
  1032.     -- units of conformance
  1033.  
  1034.     etherStatsGroup OBJECT-GROUP
  1035.         OBJECTS     { dot3StatsIndex,
  1036.                       dot3StatsAlignmentErrors,
  1037.                       dot3StatsFCSErrors,
  1038.                       dot3StatsSingleCollisionFrames,
  1039.                       dot3StatsMultipleCollisionFrames,
  1040.                       dot3StatsSQETestErrors,
  1041.                       dot3StatsDeferredTransmissions,
  1042.                       dot3StatsLateCollisions,
  1043.                       dot3StatsExcessiveCollisions,
  1044.                       dot3StatsInternalMacTransmitErrors,
  1045.                       dot3StatsCarrierSenseErrors,
  1046.                       dot3StatsFrameTooLongs,
  1047.  
  1048.  
  1049.                       dot3StatsInternalMacReceiveErrors,
  1050.                       dot3StatsEtherChipSet
  1051.                     }
  1052.         STATUS      deprecated
  1053.         DESCRIPTION "********* THIS GROUP IS DEPRECATED **********
  1054.  
  1055.                     A collection of objects providing information
  1056.                     applicable to all ethernet-like network
  1057.                     interfaces.
  1058.  
  1059.                     This object group has been deprecated and
  1060.                     replaced by etherStatsBaseGroup and
  1061.                     etherStatsLowSpeedGroup."
  1062.         ::= { etherGroups 1 }
  1063.  
  1064.     etherCollisionTableGroup OBJECT-GROUP
  1065.         OBJECTS     { dot3CollFrequencies
  1066.                     }
  1067.         STATUS      current
  1068.         DESCRIPTION "A collection of objects providing a histogram
  1069.                     of packets successfully transmitted after
  1070.                     experiencing exactly N collisions."
  1071.         ::= { etherGroups 2 }
  1072.  
  1073.     etherStats100MbsGroup OBJECT-GROUP
  1074.         OBJECTS     { dot3StatsIndex,
  1075.                       dot3StatsAlignmentErrors,
  1076.                       dot3StatsFCSErrors,
  1077.                       dot3StatsSingleCollisionFrames,
  1078.                       dot3StatsMultipleCollisionFrames,
  1079.                       dot3StatsDeferredTransmissions,
  1080.                       dot3StatsLateCollisions,
  1081.                       dot3StatsExcessiveCollisions,
  1082.                       dot3StatsInternalMacTransmitErrors,
  1083.                       dot3StatsCarrierSenseErrors,
  1084.                       dot3StatsFrameTooLongs,
  1085.                       dot3StatsInternalMacReceiveErrors,
  1086.                       dot3StatsEtherChipSet,
  1087.                       dot3StatsSymbolErrors
  1088.                     }
  1089.         STATUS      deprecated
  1090.         DESCRIPTION "********* THIS GROUP IS DEPRECATED **********
  1091.  
  1092.                     A collection of objects providing information
  1093.                     applicable to 100 Mb/sec ethernet-like network
  1094.                     interfaces.
  1095.  
  1096.                     This object group has been deprecated and
  1097.  
  1098.  
  1099.                     replaced by etherStatsBaseGroup and
  1100.                     etherStatsHighSpeedGroup."
  1101.         ::= { etherGroups 3 }
  1102.  
  1103.     etherStatsBaseGroup OBJECT-GROUP
  1104.         OBJECTS     { dot3StatsIndex,
  1105.                       dot3StatsAlignmentErrors,
  1106.                       dot3StatsFCSErrors,
  1107.                       dot3StatsSingleCollisionFrames,
  1108.                       dot3StatsMultipleCollisionFrames,
  1109.                       dot3StatsDeferredTransmissions,
  1110.                       dot3StatsLateCollisions,
  1111.                       dot3StatsExcessiveCollisions,
  1112.                       dot3StatsInternalMacTransmitErrors,
  1113.                       dot3StatsCarrierSenseErrors,
  1114.                       dot3StatsFrameTooLongs,
  1115.                       dot3StatsInternalMacReceiveErrors
  1116.                     }
  1117.         STATUS      current
  1118.         DESCRIPTION "A collection of objects providing information
  1119.                     applicable to all ethernet-like network
  1120.                     interfaces."
  1121.         ::= { etherGroups 4 }
  1122.  
  1123.     etherStatsLowSpeedGroup OBJECT-GROUP
  1124.         OBJECTS     { dot3StatsSQETestErrors }
  1125.         STATUS      current
  1126.         DESCRIPTION "A collection of objects providing information
  1127.                     applicable to ethernet-like network interfaces
  1128.                     capable of operating at 10 Mb/s or slower in
  1129.                     half-duplex mode."
  1130.  
  1131.         ::= { etherGroups 5 }
  1132.  
  1133.     etherStatsHighSpeedGroup OBJECT-GROUP
  1134.         OBJECTS     { dot3StatsSymbolErrors }
  1135.         STATUS      current
  1136.         DESCRIPTION "A collection of objects providing information
  1137.                     applicable to ethernet-like network interfaces
  1138.                     capable of operating at 100 Mb/s or faster."
  1139.         ::= { etherGroups 6 }
  1140.  
  1141.     etherDuplexGroup OBJECT-GROUP
  1142.         OBJECTS     { dot3StatsDuplexStatus }
  1143.         STATUS      current
  1144.         DESCRIPTION "A collection of objects providing information
  1145.                     about the duplex mode of an ethernet-like
  1146.                     network interface."
  1147.  
  1148.  
  1149.         ::= { etherGroups 7 }
  1150.  
  1151.     etherControlGroup OBJECT-GROUP
  1152.         OBJECTS     { dot3ControlFunctionsSupported,
  1153.                       dot3ControlInUnknownOpcodes
  1154.                     }
  1155.         STATUS      current
  1156.         DESCRIPTION "A collection of objects providing information
  1157.                     about the MAC Control sublayer on ethernet-like
  1158.                     network interfaces."
  1159.         ::= { etherGroups 8 }
  1160.  
  1161.     etherControlPauseGroup OBJECT-GROUP
  1162.         OBJECTS     { dot3PauseAdminMode,
  1163.                       dot3PauseOperMode,
  1164.                       dot3InPauseFrames,
  1165.                       dot3OutPauseFrames
  1166.                     }
  1167.         STATUS      current
  1168.         DESCRIPTION "A collection of objects providing information
  1169.                     about and control of the MAC Control PAUSE
  1170.                     function on ethernet-like network interfaces."
  1171.         ::= { etherGroups 9 }
  1172.  
  1173. END
  1174.