home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / rfc / rfc1286 < prev    next >
Text File  |  1991-12-11  |  79KB  |  2,243 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                          E. Decker
  8. Request for Comments: 1286                           cisco Systems, Inc.
  9.                                                              P. Langille
  10.                                            Digital Equipment Corporation
  11.                                                           A. Rijsinghani
  12.                                            Digital Equipment Corporation
  13.                                                            K. McCloghrie
  14.                                                 Hughes LAN Systems, Inc.
  15.                                                            December 1991
  16.  
  17.  
  18.                Definitions of Managed Objects for Bridges
  19.  
  20. Status of this Memo
  21.  
  22.    This memo is an extension to the SNMP MIB.  This RFC specifies an IAB
  23.    standards track protocol for the Internet community, and requests
  24.    discussion and suggestions for improvements.  Please refer to the
  25.    current edition of the "IAB Official Protocol Standards" for the
  26.    standardization state and status of this protocol.  Distribution of
  27.    this memo is unlimited.
  28.  
  29. Table of Contents
  30.  
  31.    1. Abstract .............................................    2
  32.    2. The Network Management Framework......................    2
  33.    3. Objects ..............................................    2
  34.    3.1 Format of Definitions ...............................    3
  35.    4. Overview .............................................    3
  36.    4.1 Structure of MIB ....................................    4
  37.    4.1.1 The dot1dBase Group ...............................    7
  38.    4.1.2 The dot1dStp Group ................................    7
  39.    4.1.3 The dot1dSr Group .................................    7
  40.    4.1.4 The dot1dTp Group .................................    7
  41.    4.1.5 The dot1dStatic Group .............................    7
  42.    4.2 Relationship to Other MIBs ..........................    7
  43.    4.2.1 Relationship to the 'system' group ................    8
  44.    4.2.2 Relationship to the 'interfaces' group ............    8
  45.    4.3 Textual Conventions .................................    9
  46.    5. Definitions ..........................................    9
  47.    5.1 Groups in the Bridge MIB ............................   11
  48.    5.2 The dot1dBase Group Definitions .....................   11
  49.    5.3 The dot1dStp Group Definitions ......................   14
  50.    5.4 The dot1dSr Group Definitions .......................   22
  51.    5.5 The dot1dTp Group Definitions .......................   28
  52.    5.6 The dot1dStatic Group Definitions ...................   34
  53.    5.8 Traps for use by Bridges ............................   36
  54.    6. Acknowledgments ......................................   37
  55.  
  56.  
  57.  
  58. Decker, Langille, Rijsinghani & McCloghrie                      [Page 1]
  59.  
  60. RFC 1286                       Bridge MIB                  December 1991
  61.  
  62.  
  63.    7. References ...........................................   38
  64.    8. Security Considerations...............................   39
  65.    9. Authors' Addresses....................................   40
  66.  
  67. 1.  Abstract
  68.  
  69.    This memo defines a portion of the Management Information Base (MIB)
  70.    for use with network management protocols in TCP/IP based internets.
  71.    In particular it defines objects for managing bridges based on the
  72.    IEEE 802.1d draft standard between Local Area Network (LAN) segments.
  73.    Provisions are made for support of transparent and source route
  74.    bridging.  Provisions are also made so that these objects apply to
  75.    bridges connected by subnetworks other than LAN segments.
  76.  
  77. 2.  The Network Management Framework
  78.  
  79.    The Internet-standard Network Management Framework consists of three
  80.    components.  They are:
  81.  
  82.       RFC 1155 which defines the SMI, the mechanisms used for describing
  83.       and naming objects for the purpose of management.  RFC 1212
  84.       defines a more concise description mechanism, which is wholly
  85.       consistent with the SMI.
  86.  
  87.       RFC 1156 which defines MIB-I, the core set of managed objects for
  88.       the Internet suite of protocols.  RFC 1213, defines MIB-II, an
  89.       evolution of MIB-I based on implementation experience and new
  90.       operational requirements.
  91.  
  92.       RFC 1157 which defines the SNMP, the protocol used for network
  93.       access to managed objects.
  94.  
  95.    The Framework permits new objects to be defined for the purpose of
  96.    experimentation and evaluation.
  97.  
  98. 3.  Objects
  99.  
  100.    Managed objects are accessed via a virtual information store, termed
  101.    the Management Information Base or MIB.  Objects in the MIB are
  102.    defined using the subset of Abstract Syntax Notation One (ASN.1) [7]
  103.    defined in the SMI.  In particular, each object has a name, a syntax,
  104.    and an encoding.  The name is an object identifier, an
  105.    administratively assigned name, which specifies an object type.  The
  106.    object type together with an object instance serves to uniquely
  107.    identify a specific instantiation of the object.  For human
  108.    convenience, we often use a textual string, termed the OBJECT
  109.    DESCRIPTOR, to also refer to the object type.
  110.  
  111.  
  112.  
  113.  
  114. Decker, Langille, Rijsinghani & McCloghrie                      [Page 2]
  115.  
  116. RFC 1286                       Bridge MIB                  December 1991
  117.  
  118.  
  119.    The syntax of an object type defines the abstract data structure
  120.    corresponding to that object type.  The ASN.1 language is used for
  121.    this purpose.  However, the SMI [3] purposely restricts the ASN.1
  122.    constructs which may be used.  These restrictions are explicitly made
  123.    for simplicity.
  124.  
  125.    The encoding of an object type is simply how that object type is
  126.    represented using the object type's syntax.  Implicitly tied to the
  127.    notion of an object type's syntax and encoding is how the object type
  128.    is represented when being transmitted on the network.
  129.  
  130.    The SMI specifies the use of the basic encoding rules of ASN.1 [8],
  131.    subject to the additional requirements imposed by the SNMP.
  132.  
  133. 3.1.  Format of Definitions
  134.  
  135.    Section 5 contains the specification of all object types contained in
  136.    this MIB module.  The object types are defined using the conventions
  137.    defined in the SMI, as amended by the extensions specified in [9,10].
  138.  
  139. 4.  Overview
  140.  
  141.    A common device present in many networks is the Bridge.  This device
  142.    is used to connect Local Area Network segments below the network
  143.    layer.  There are two major modes defined for this bridging;
  144.    transparent and source route.  The transparent method of bridging is
  145.    defined in the draft IEEE 802.1d specification [11].  Source route
  146.    bridging has been defined by I.B.M. and is described in the Token
  147.    Ring Architecture Reference [12].  IEEE 802.1d is currently working
  148.    on combining the source route and transparent techniques in a
  149.    compatible fashion.  This memo defines those objects needed for the
  150.    management of a bridging entity operating in one of these modes.
  151.  
  152.    To be consistent with IAB directives and good engineering practice,
  153.    an explicit attempt was made to keep this MIB as simple as possible.
  154.    This was accomplished by applying the following criteria to objects
  155.    proposed for inclusion:
  156.  
  157.       (1)  Start with a small set of essential objects and add only
  158.            as further objects are needed.
  159.  
  160.       (2)  Require objects be essential for either fault or
  161.            configuration management.
  162.  
  163.       (3)  Consider evidence of current use and/or utility.
  164.  
  165.       (4)  Limit the total of objects.
  166.  
  167.  
  168.  
  169.  
  170. Decker, Langille, Rijsinghani & McCloghrie                      [Page 3]
  171.  
  172. RFC 1286                       Bridge MIB                  December 1991
  173.  
  174.  
  175.       (5)  Exclude objects which are simply derivable from others in
  176.            this or other MIBs.
  177.  
  178.       (6)  Avoid causing critical sections to be heavily
  179.            instrumented.  The guideline that was followed is one
  180.            counter per critical section per layer.
  181.  
  182. 4.1.  Structure of MIB
  183.  
  184.    Objects in this MIB are arranged into groups.  Each group is
  185.    organized as a set of related objects.  The overall structure and
  186.    assignment of objects to their groups is shown below.  Where
  187.    appropriate the corresponding IEEE 802.1d [11] management object name
  188.    is also included.
  189.  
  190. Bridge MIB Name                  IEEE 802.1d Name
  191.  
  192. dot1dBridge
  193.   dot1dBase
  194.     BridgeAddress                Bridge.BridgeAddress
  195.     NumPorts                     Bridge.NumberOfPorts
  196.     Type
  197.     PortTable
  198.       Port                       BridgePort.PortNumber
  199.       IfIndex
  200.       Circuit
  201.       DelayExceededDiscards        .DiscardTransitDelay
  202.       MtuExceededDiscards          .DiscardOnError
  203.   dot1dStp
  204.     ProtocolSpecification
  205.     Priority                     SpanningTreeProtocol
  206.                                    .BridgePriority
  207.     TimeSinceTopologyChange        .TimeSinceTopologyChange
  208.     TopChanges                     .TopologyChangeCount
  209.     DesignatedRoot                 .DesignatedRoot
  210.     RootCost                       .RootCost
  211.     RootPort                       .RootPort
  212.     MaxAge                         .MaxAge
  213.     HelloTime                      .HelloTime
  214.     HoldTime                       .HoldTime
  215.     ForwardDelay                   .ForwardDelay
  216.     BridgeMaxAge                   .BridgeMaxAge
  217.     BridgeHelloTime                .BridgeHelloTime
  218.     BridgeForwardDelay             .BridgeForwardDelay
  219.     PortTable
  220.       Port                        SpanningTreeProtocolPort
  221.                                     .PortNumber
  222.       Priority                      .PortPriority
  223.  
  224.  
  225.  
  226. Decker, Langille, Rijsinghani & McCloghrie                      [Page 4]
  227.  
  228. RFC 1286                       Bridge MIB                  December 1991
  229.  
  230.  
  231.       State                         .SpanningTreeState
  232.       Enable
  233.       PathCost                      .PortPathCost
  234.       DesignatedRoot                .DesignatedRoot
  235.       DesignatedCost                .DesignatedCost
  236.       DesignatedBridge              .DesignatedBridge
  237.       DesignatedPort                .DesignatedPort
  238.       ForwardTransitions
  239.  
  240.   dot1dSr
  241.     PortTable
  242.       Port
  243.       HopCount                    SourceRoutingPort
  244.                                     .PortHopCount
  245.       LocalSegment                  .SegmentNumber
  246.       BridgeNum                     .BridgeNumber
  247.       TargetSegment
  248.       LargestFrame                  .LargestFrameSize
  249.       STESpanMode                   .LimitedBroadcastMode
  250.       SpecInFrames                BridgePort
  251.                                     .ValidSRFramesReceived
  252.       SpecOutFrames                 .ValidSRForwardedOutbound
  253.       ApeInFrames
  254.       ApeOutFrames                  .BroadcastFramesForwarded
  255.       SteInFrames
  256.       SteOutFrames                  .BroadcastFramesForwarded
  257.       SegmentMismatchDiscards       .DiscardInvalidRI
  258.       DuplicateSegmentDiscards      .LanIdMismatch
  259.       HopCountExceededDiscards      .FramesDiscardedHopCountExceeded
  260.   dot1dTp
  261.     LearnedEntryDiscards          BridgeFilter.DatabaseSize
  262.                                     .NumDynamic,NumStatic
  263.     AgingTime                     BridgeFilter.AgingTime
  264.     FdbTable
  265.       Address
  266.       Status
  267.       Port
  268.     PortTable
  269.       Port
  270.       MaxInfo
  271.       InFrames                    BridgePort.FramesReceived
  272.       OutFrames                     .ForwardOutbound
  273.       InDiscards                    .DiscardInbound
  274.   dot1dStatic
  275.     StaticTable
  276.       Address
  277.       ReceivePort
  278.       AllowedToGoTo
  279.  
  280.  
  281.  
  282. Decker, Langille, Rijsinghani & McCloghrie                      [Page 5]
  283.  
  284. RFC 1286                       Bridge MIB                  December 1991
  285.  
  286.  
  287.       Status
  288.  
  289.    The following IEEE 802.1d management objects have not been included
  290.    in the Bridge MIB for the indicated reasons.
  291.  
  292.  
  293. IEEE 802.1d Object              Disposition
  294.  
  295. Bridge.BridgeName               Same as sysDescr (MIB II)
  296. Bridge.BridgeUpTime             Same as sysUpTime (MIB II)
  297. Bridge.PortAddresses            Same as ifPhysAddress (MIB II)
  298. BridgePort.PortName             Same as ifDescr (MIB II)
  299. BridgePort.PortType             Same as ifType (MIB II)
  300. BridgePort.RoutingType          Derivable from the implemented
  301.                                 groups
  302.  
  303. SpanningTreeProtocol
  304.     .BridgeIdentifier           Combination of dot1dStpPriority
  305.                                 and dot1dBaseBridgeAddress
  306.     .TopologyChange             Since this is transitory, it
  307.                                 is not considered useful.
  308. SpanningTreeProtocolPort
  309.     .Uptime                     Same as ifLastChange (MIB II)
  310.     .PortIdentifier             Combination of dot1dStpPortNum
  311.                                 and dot1dStpPortPriority
  312.     .TopologyChangeAcknowledged Since this is transitory, it
  313.                                 is not considered useful.
  314.     .DiscardLackOfBuffers       Redundant
  315.  
  316. Transmission Priority           These objects are not required
  317.                                 as per the Pics Proforma and
  318.                                 not considered useful.
  319.     .TransmissionPriorityName
  320.     .OutboundUserPriority
  321.     .OutboundAccessPriority
  322.  
  323. SourceRoutingPort               The Source Routing Supplement,
  324.                                 at the time of this writing,
  325.                                 is not stable. The following
  326.                                 objects were NOT included in
  327.                                 this MIB because they are
  328.                                 redundant or not considered
  329.                                 useful.
  330.     .LimitedBroadcastEnable
  331. BridgePort.DupLanIdOrTreeError
  332.     .DiscardLackOfBuffers
  333.     .DiscardErrorDetails
  334.     .DiscardTargetLANInoperable
  335.  
  336.  
  337.  
  338. Decker, Langille, Rijsinghani & McCloghrie                      [Page 6]
  339.  
  340. RFC 1286                       Bridge MIB                  December 1991
  341.  
  342.  
  343.     .ValidSRDiscardedInbound
  344.     .BroadcastBytesForwarded
  345.     .NonBroadcastBytesForwarded
  346.     .FramesNotReceivedDueToCongestion
  347.     .FramesDiscardedDueToInternalError
  348.  
  349. 4.1.1.  The dot1dBase Group
  350.  
  351.    This mandatory group contains the objects which are applicable to all
  352.    types of bridges.
  353.  
  354. 4.1.2.  The dot1dStp Group
  355.  
  356.    This group contains the objects that denote the bridge's state with
  357.    respect to the Spanning Tree Protocol.  If a node does not
  358.    implemented the Spanning Tree Protocol, this group will not be
  359.    implemented.  This group is applicable to any transparent only,
  360.    source route, or SRT bridge which implements the Spanning Tree
  361.    Protocol.
  362.  
  363. 4.1.3.  The dot1dSr Group
  364.  
  365.    This group contains the objects that describe the entity's state with
  366.    respect to source route bridging.  If source routing is not supported
  367.    this group will not be implemented.  This group is applicable to
  368.    source route only, and SRT bridges.
  369.  
  370. 4.1.4.  The dot1dTp Group
  371.  
  372.    This group contains objects that describe the entity's state with
  373.    respect to transparent bridging.  If transparent bridging is not
  374.    supported this group will not be implemented.  This group is
  375.    applicable to transparent only and SRT bridges.
  376.  
  377. 4.1.5.  The dot1dStatic Group
  378.  
  379.    This group contains objects that describe the entity's state with
  380.    respect to destination-address filtering.  If destination-address
  381.    filtering is not supported this group will not be implemented.  This
  382.    group is applicable to any type of bridge which performs
  383.    destination-address filtering.
  384.  
  385. 4.2.  Relationship to Other MIBs
  386.  
  387.    As described above, some IEEE 802.1d management objects have not been
  388.    included in this MIB because they overlap with objects in other MIBs
  389.    applicable to a bridge implementing this MIB.  In particular, it is
  390.    assumed that a bridge implementing this MIB will also implement (at
  391.  
  392.  
  393.  
  394. Decker, Langille, Rijsinghani & McCloghrie                      [Page 7]
  395.  
  396. RFC 1286                       Bridge MIB                  December 1991
  397.  
  398.  
  399.    least) the 'system' group and the 'interfaces' group defined in MIB-
  400.    II [6].
  401.  
  402. 4.2.1.  Relationship to the 'system' group
  403.  
  404.    In MIB-II, the 'system' group is defined as being mandatory for all
  405.    systems such that each managed entity contains one instance of each
  406.    object in the 'system' group.  Thus, those objects apply to the
  407.    entity as a whole irrespective of whether the entity's sole
  408.    functionality is bridging, or whether bridging is only a subset of
  409.    the entity's functionality.
  410.  
  411. 4.2.2.  Relationship to the 'interfaces' group
  412.  
  413.    In MIB-II, the 'interfaces' group is defined as being mandatory for
  414.    all systems and contains information on an entity's interfaces, where
  415.    each interface is thought of as being attached to a `subnetwork'.
  416.    (Note that this term is not to be confused with `subnet' which refers
  417.    to an addressing partitioning scheme used in the Internet suite of
  418.    protocols.) The term 'segment' is used in this memo to refer to such
  419.    a subnetwork, whether it be an Ethernet segment, a 'ring', a WAN
  420.    link, or even an X.25 virtual circuit.
  421.  
  422.    Implicit in this Bridge MIB is the notion of ports on a bridge.  Each
  423.    of these ports is associated with one interface of the 'interfaces'
  424.    group, and in most situations, each port is associated with a
  425.    different interface. However, there are situations in which multiple
  426.    ports are associated with the same interface.  An example of such a
  427.    situation would be several ports each corresponding one-to-one with
  428.    several X.25 virtual circuits but all on the same interface.
  429.  
  430.    Each port is uniquely identified by a port number.  A port number has
  431.    no mandatory relationship to an interface number, but in the simple
  432.    case a port number will have the same value as the corresponding
  433.    interface's interface number.  Port numbers are in the range
  434.    (1..dot1dBaseNumPorts).
  435.  
  436.    Some entities perform other functionality as well as bridging through
  437.    the sending and receiving of data on their interfaces.  In such
  438.    situations, only a subset of the data sent/received on an interface
  439.    is within the domain of the entity's bridging functionality.  This
  440.    subset is considered to be delineated according to a set of
  441.    protocols, with some protocols being bridged, and other protocols not
  442.    being bridged. For example, in an entity which exclusively performed
  443.    bridging, all protocols would be considered as being bridged, whereas
  444.    in an entity which performed IP routing on IP datagrams and only
  445.    bridged other protocols, only the non-IP data would be considered as
  446.    being bridged.
  447.  
  448.  
  449.  
  450. Decker, Langille, Rijsinghani & McCloghrie                      [Page 8]
  451.  
  452. RFC 1286                       Bridge MIB                  December 1991
  453.  
  454.  
  455.    Thus, this Bridge MIB (and in particular, its counters) are
  456.    applicable only to that subset of the data on an entity's interfaces
  457.    which is sent/received for a protocol being bridged.  All such data
  458.    is sent/received via the ports of the bridge.
  459.  
  460. 4.3.  Textual Conventions
  461.  
  462.    The datatypes, MacAddress, BridgeId and Timeout, are used as textual
  463.    conventions in this document.  These textual conventions have NO
  464.    effect on either the syntax nor the semantics of any managed object.
  465.    Objects defined using these conventions are always encoded by means
  466.    of the rules that define their primitive type.  Hence, no changes to
  467.    the SMI or the SNMP are necessary to accommodate these textual
  468.    conventions which are adopted merely for the convenience of readers.
  469.  
  470. 5.  Definitions
  471.  
  472.    RFC1286-MIB DEFINITIONS ::= BEGIN
  473.  
  474.    IMPORTS
  475.            Counter, Gauge, TimeTicks
  476.                    FROM RFC1155-SMI
  477.            mib-2
  478.                    FROM RFC1213-MIB
  479.            OBJECT-TYPE
  480.                    FROM RFC-1212
  481.            TRAP-TYPE
  482.                    FROM RFC-1215;
  483.  
  484.    -- All representations of MAC addresses in this MIB Module use,
  485.    -- as a textual convention (i.e. this convention does not affect
  486.    -- their encoding), the data type:
  487.  
  488.    MacAddress ::= OCTET STRING (SIZE (6))    -- a 6 octet address in
  489.                                              -- the "canonical" order
  490.    -- defined by IEEE 802.1a, i.e., as if it were transmitted least
  491.    -- significant bit first, even though 802.5 (in contrast to other
  492.    -- 802.x protocols) requires MAC addresses to be transmitted most
  493.    -- significant bit first.
  494.    --
  495.    -- 16-bit addresses, if needed, are represented by setting their
  496.    -- upper 4 octets to all 0's, i.e., AAFF would be represented
  497.    -- as 00000000AAFF.
  498.  
  499.  
  500.    -- Similarly, all representations of Bridge-Id in this MIB Module
  501.    -- use, as a textual convention (i.e. this convention does not affect
  502.    -- their encoding), the data type:
  503.  
  504.  
  505.  
  506. Decker, Langille, Rijsinghani & McCloghrie                      [Page 9]
  507.  
  508. RFC 1286                       Bridge MIB                  December 1991
  509.  
  510.  
  511.    BridgeId ::= OCTET STRING (SIZE (8))   -- the Bridge-Identifier as
  512.                                           -- used in the Spanning Tree
  513.    -- Protocol to uniquely identify a bridge.  Its first two octets
  514.    -- (in network byte order) contain a priority value and its last
  515.    -- 6 octets contain the MAC address used to refer to a bridge in a
  516.    -- unique fashion (typically, the numerically smallest MAC address
  517.    -- of all ports on the bridge).
  518.    -- Several objects in this MIB module represent values of timers
  519.    -- used by the Spanning Tree Protocol.  In this MIB, these timers
  520.    -- have values in units of hundreths of a second (i.e. 1/100 secs).
  521.    -- These timers, when stored in a Spanning Tree Protocol's BPDU,
  522.    -- are in units of 1/256 seconds.  Note, however, that 802.1d/D9
  523.    -- specifies a settable granularity of no more than 1 second for
  524.    -- these timers.  To avoid ambiguity, a data type is defined here
  525.    -- as a textual convention and all representation of these timers
  526.    -- in this MIB module are defined using this data type.  An algorithm
  527.    -- is also defined for converting between the different units, to
  528.    -- ensure a timer's value is not distorted by multiple conversions.
  529.    -- The data type is:
  530.  
  531.    Timeout ::= INTEGER      -- a STP timer in units of 1/100 seconds
  532.  
  533.    -- To convert a Timeout value into a value in units of
  534.    -- 1/256 seconds, the following algorithm should be used:
  535.    --
  536.    --      b  = floor( (n * 256) / 100)
  537.    --
  538.    -- where:
  539.    --      floor   =  quotient [ignore remainder]
  540.    --      n is the value in 1/100 second units
  541.    --      b is the value in 1/256 second units
  542.    --
  543.    -- To convert the value from 1/256 second units back to
  544.    -- 1/100 seconds, the following algorithm should be used:
  545.    --
  546.    --      n = ceiling( (b * 100) / 256)
  547.    --
  548.    -- where:
  549.    --      ceiling =  quotient [if remainder is 0], or
  550.    --                 quotient + 1 [if remainder is non-zero]
  551.    --      n is the value in 1/100 second units
  552.    --      b is the value in 1/256 second units
  553.    --
  554.    -- Note: it is important that the arithmetic operations are done
  555.    -- in the order specified (i.e., multiply first, divide second).
  556.  
  557.    dot1dBridge   OBJECT IDENTIFIER ::= { mib-2 17 }
  558.  
  559.  
  560.  
  561.  
  562. Decker, Langille, Rijsinghani & McCloghrie                     [Page 10]
  563.  
  564. RFC 1286                       Bridge MIB                  December 1991
  565.  
  566.  
  567.    -- groups in the Bridge MIB
  568.  
  569.    dot1dBase     OBJECT IDENTIFIER ::= { dot1dBridge 1 }
  570.  
  571.    dot1dStp      OBJECT IDENTIFIER ::= { dot1dBridge 2 }
  572.  
  573.    dot1dSr       OBJECT IDENTIFIER ::= { dot1dBridge 3 }
  574.  
  575.    dot1dTp       OBJECT IDENTIFIER ::= { dot1dBridge 4 }
  576.  
  577.    dot1dStatic   OBJECT IDENTIFIER ::= { dot1dBridge 5 }
  578.  
  579.  
  580.    -- the dot1dBase group
  581.  
  582.    -- Implementation of the dot1dBase group is mandatory for all
  583.    -- bridges.
  584.  
  585.    dot1dBaseBridgeAddress OBJECT-TYPE
  586.        SYNTAX  MacAddress
  587.        ACCESS  read-only
  588.        STATUS  mandatory
  589.        DESCRIPTION
  590.                "The MAC address used by this bridge when it must
  591.                be referred to in a unique fashion.   It is
  592.                recommended that this be the numerically smallest
  593.                MAC address of all ports that belong to this
  594.                bridge.  However it is only required to be unique.
  595.                When concatenated with dot1dStpPriority a unique
  596.                BridgeIdentifier is formed which is used in the
  597.                Spanning Tree Protocol."
  598.        REFERENCE
  599.                "P802.1d/D9, July 14, 1989: Sections 6.4.1.1.3 and 3.12.5"
  600.        ::= { dot1dBase 1 }
  601.  
  602.    dot1dBaseNumPorts OBJECT-TYPE
  603.        SYNTAX  INTEGER
  604.        ACCESS  read-only
  605.        STATUS  mandatory
  606.        DESCRIPTION
  607.                "The number of ports controlled by this bridging
  608.                entity."
  609.        REFERENCE
  610.                "P802.1d/D9, July 14, 1989: Section 6.4.1.1.3"
  611.        ::= { dot1dBase 2 }
  612.  
  613.    dot1dBaseType OBJECT-TYPE
  614.        SYNTAX  INTEGER {
  615.  
  616.  
  617.  
  618. Decker, Langille, Rijsinghani & McCloghrie                     [Page 11]
  619.  
  620. RFC 1286                       Bridge MIB                  December 1991
  621.  
  622.  
  623.                    unknown(1),
  624.                    transparent-only(2),
  625.                    sourceroute-only(3),
  626.                    srt(4)
  627.                }
  628.        ACCESS  read-only
  629.        STATUS  mandatory
  630.        DESCRIPTION
  631.                "Indicates what type of bridging this bridge can
  632.                perform.  If a bridge is actually performing a
  633.                certain type of bridging this will be indicated by
  634.                entries in the port table for the given type."
  635.        ::= { dot1dBase 3 }
  636.  
  637.    -- The Generic Bridge Port Table
  638.  
  639.    dot1dBasePortTable OBJECT-TYPE
  640.        SYNTAX  SEQUENCE OF Dot1dBasePortEntry
  641.        ACCESS  not-accessible
  642.        STATUS  mandatory
  643.        DESCRIPTION
  644.                "A table that contains generic information about
  645.                every port that is associated with this bridge.
  646.                Transparent, source-route, and srt ports are
  647.                included."
  648.        ::= { dot1dBase 4 }
  649.  
  650.    dot1dBasePortEntry OBJECT-TYPE
  651.        SYNTAX  Dot1dBasePortEntry
  652.        ACCESS  not-accessible
  653.        STATUS  mandatory
  654.        DESCRIPTION
  655.                "A list of information for each port of the
  656.                bridge."
  657.        REFERENCE
  658.                "P802.1d/D9, July 14, 1989: Section 6.4.2, 6.6.1"
  659.        INDEX  { dot1dBasePort }
  660.        ::= { dot1dBasePortTable 1 }
  661.  
  662.    Dot1dBasePortEntry ::=
  663.        SEQUENCE {
  664.            dot1dBasePort
  665.                INTEGER,
  666.            dot1dBasePortIfIndex
  667.                INTEGER,
  668.            dot1dBasePortCircuit
  669.                OBJECT IDENTIFIER,
  670.            dot1dBasePortDelayExceededDiscards
  671.  
  672.  
  673.  
  674. Decker, Langille, Rijsinghani & McCloghrie                     [Page 12]
  675.  
  676. RFC 1286                       Bridge MIB                  December 1991
  677.  
  678.  
  679.                Counter,
  680.            dot1dBasePortMtuExceededDiscards
  681.                Counter
  682.        }
  683.  
  684.    dot1dBasePort OBJECT-TYPE
  685.        SYNTAX  INTEGER
  686.        ACCESS  read-only
  687.        STATUS  mandatory
  688.        DESCRIPTION
  689.                "The port number of the port for which this entry
  690.                contains bridge management information."
  691.        ::= { dot1dBasePortEntry 1 }
  692.  
  693.    dot1dBasePortIfIndex OBJECT-TYPE
  694.        SYNTAX  INTEGER
  695.        ACCESS  read-only
  696.        STATUS  mandatory
  697.        DESCRIPTION
  698.                "The value of the instance of the ifIndex object,
  699.                defined in [4,6], for the interface corresponding
  700.                to this port."
  701.        ::= { dot1dBasePortEntry 2 }
  702.  
  703.    dot1dBasePortCircuit OBJECT-TYPE
  704.        SYNTAX  OBJECT IDENTIFIER
  705.        ACCESS  read-only
  706.        STATUS  mandatory
  707.        DESCRIPTION
  708.                "For a port which (potentially) has the same value
  709.                of dot1dBasePortIfIndex as another port on the
  710.                same bridge, this object contains the name of an
  711.                object instance unique to this port.  For example,
  712.                in the case where multiple ports correspond one-
  713.                to-one with multiple X.25 virtual circuits, this
  714.                value might identify an (e.g., the first) object
  715.                instance associated with the X.25 virtual circuit
  716.                corresponding to this port.
  717.  
  718.                For a port which has a unique value of
  719.                dot1dBasePortIfIndex, this object can have the
  720.                value { 0 0 }."
  721.        ::= { dot1dBasePortEntry 3 }
  722.  
  723.    dot1dBasePortDelayExceededDiscards OBJECT-TYPE
  724.        SYNTAX  Counter
  725.        ACCESS  read-only
  726.        STATUS  mandatory
  727.  
  728.  
  729.  
  730. Decker, Langille, Rijsinghani & McCloghrie                     [Page 13]
  731.  
  732. RFC 1286                       Bridge MIB                  December 1991
  733.  
  734.  
  735.        DESCRIPTION
  736.                "The number of frames discarded by this port due
  737.                to excessive transit delay through the bridge.  It
  738.                is incremented by both transparent and source
  739.                route bridges."
  740.        REFERENCE
  741.                 "P802.1d/D9, July 14, 1989: Section 6.6.1.1.3"
  742.        ::= { dot1dBasePortEntry 4 }
  743.  
  744.    dot1dBasePortMtuExceededDiscards OBJECT-TYPE
  745.        SYNTAX  Counter
  746.        ACCESS  read-only
  747.        STATUS  mandatory
  748.        DESCRIPTION
  749.                "The number of frames discarded by this port due
  750.                to an excessive size.  It is incremented by both
  751.                transparent and source route bridges."
  752.        REFERENCE
  753.                "P802.1d/D9, July 14, 1989: Section 6.6.1.1.3"
  754.        ::= { dot1dBasePortEntry 5 }
  755.  
  756.  
  757.    -- the dot1dStp group
  758.  
  759.    -- Implementation of the dot1dStp group is optional.  It is
  760.    -- implemented by those bridges that support the Spanning Tree
  761.    -- Protocol.  Transparent, Source Route, and SRT bridges will
  762.    -- implement this group only if they support the Spanning Tree
  763.    -- Protocol.
  764.  
  765.  
  766.    dot1dStpProtocolSpecification OBJECT-TYPE
  767.        SYNTAX  INTEGER {
  768.                    unknown(1),
  769.                    decLb100(2),
  770.                    ieee8021d(3)
  771.                }
  772.        ACCESS  read-only
  773.        STATUS  mandatory
  774.        DESCRIPTION
  775.                "An indication of what version of the Spanning
  776.                Tree Protocol is being run.  The value
  777.                'decLb100(2)' indicates the DEC LANbridge 100
  778.                Spanning Tree protocol.  IEEE 802.1d
  779.                implementations will return 'ieee8021d(3)'.  If
  780.                future versions of the IEEE Spanning Tree Protocol
  781.                are released that are incompatible with the
  782.                current version a new value will be defined."
  783.  
  784.  
  785.  
  786. Decker, Langille, Rijsinghani & McCloghrie                     [Page 14]
  787.  
  788. RFC 1286                       Bridge MIB                  December 1991
  789.  
  790.  
  791.        ::= { dot1dStp 1 }
  792.  
  793.    dot1dStpPriority OBJECT-TYPE
  794.        SYNTAX  INTEGER (0..65535)
  795.        ACCESS  read-write
  796.        STATUS  mandatory
  797.        DESCRIPTION
  798.                "The value of the write-able portion of the Bridge
  799.                ID, i.e., the first two octets of the (8 octet
  800.                long) Bridge ID.  The other (last) 6 octets of the
  801.                Bridge ID are given by the value of
  802.                dot1dBaseBridgeAddress."
  803.        REFERENCE
  804.                "P802.1d/D9, July 14, 1989: Section 4.5.3.7"
  805.        ::= { dot1dStp 2 }
  806.  
  807.    dot1dStpTimeSinceTopologyChange OBJECT-TYPE
  808.        SYNTAX  TimeTicks
  809.        ACCESS  read-only
  810.        STATUS  mandatory
  811.        DESCRIPTION
  812.                "The time (in hundredths of a second) since the
  813.                last time a topology change was detected by the
  814.                bridge entity."
  815.        REFERENCE
  816.                "P802.1d/D9, July 14, 1989: Section 6.8.1.1.3"
  817.        ::= { dot1dStp 3 }
  818.  
  819.    dot1dStpTopChanges OBJECT-TYPE
  820.        SYNTAX  Counter
  821.        ACCESS  read-only
  822.        STATUS  mandatory
  823.        DESCRIPTION
  824.                "The total number of topology changes detected by
  825.                this bridge since the management entity was last
  826.                reset or initialized."
  827.        REFERENCE
  828.                "P802.1d/D9, July 14, 1989: Section 6.8.1.1.3"
  829.        ::= { dot1dStp 4 }
  830.  
  831.    dot1dStpDesignatedRoot OBJECT-TYPE
  832.        SYNTAX  BridgeId
  833.        ACCESS  read-only
  834.        STATUS  mandatory
  835.        DESCRIPTION
  836.                "The bridge identifier of the root of the spanning
  837.                tree as determined by the Spanning Tree Protocol
  838.                as executed by this node.  This value is used as
  839.  
  840.  
  841.  
  842. Decker, Langille, Rijsinghani & McCloghrie                     [Page 15]
  843.  
  844. RFC 1286                       Bridge MIB                  December 1991
  845.  
  846.  
  847.                the Root Identifier parameter in all Configuration
  848.                Bridge PDUs originated by this node."
  849.        REFERENCE
  850.                "P802.1d/D9, July 14, 1989: Section 4.5.3.1"
  851.        ::= { dot1dStp 5 }
  852.  
  853.    dot1dStpRootCost OBJECT-TYPE
  854.        SYNTAX  INTEGER
  855.        ACCESS  read-only
  856.        STATUS  mandatory
  857.        DESCRIPTION
  858.                "The cost of the path to the root as seen from
  859.                this bridge."
  860.        REFERENCE
  861.                "P802.1d/D9, July 14, 1989: Section 4.5.3.2"
  862.        ::= { dot1dStp 6 }
  863.  
  864.    dot1dStpRootPort OBJECT-TYPE
  865.        SYNTAX  INTEGER
  866.        ACCESS  read-only
  867.        STATUS  mandatory
  868.        DESCRIPTION
  869.                "The port number of the port which offers the
  870.                lowest cost path from this bridge to the root
  871.                bridge."
  872.        REFERENCE
  873.                "P802.1d/D9, July 14, 1989: Section 4.5.3.3"
  874.        ::= { dot1dStp 7 }
  875.  
  876.    dot1dStpMaxAge OBJECT-TYPE
  877.        SYNTAX  Timeout
  878.        ACCESS  read-only
  879.        STATUS  mandatory
  880.        DESCRIPTION
  881.                "The maximum age of Spanning Tree Protocol
  882.                information learned from the network on any port
  883.                before it is discarded, in units of hundredths of
  884.                a second.  This is the actual value that this
  885.                bridge is currently using."
  886.        REFERENCE
  887.                "P802.1d/D9, July 14, 1989: Section 4.5.3.4"
  888.        ::= { dot1dStp 8 }
  889.  
  890.    dot1dStpHelloTime OBJECT-TYPE
  891.        SYNTAX  Timeout
  892.        ACCESS  read-only
  893.        STATUS  mandatory
  894.        DESCRIPTION
  895.  
  896.  
  897.  
  898. Decker, Langille, Rijsinghani & McCloghrie                     [Page 16]
  899.  
  900. RFC 1286                       Bridge MIB                  December 1991
  901.  
  902.  
  903.                "The amount of time between the transmission of
  904.                Configuration bridge PDUs by this node on any port
  905.                when it is the root of the spanning tree or trying
  906.                to become so, in units of hundredths of a second.
  907.                This is the actual value that this bridge is
  908.                currently using."
  909.        REFERENCE
  910.                "P802.1d/D9, July 14, 1989: Section 4.5.3.5"
  911.        ::= { dot1dStp 9 }
  912.  
  913.    dot1dStpHoldTime OBJECT-TYPE
  914.        SYNTAX  INTEGER
  915.        ACCESS  read-only
  916.        STATUS  mandatory
  917.        DESCRIPTION
  918.                "This time value determines the interval length
  919.                during which no more than two Configuration bridge
  920.                PDUs shall be transmitted by this node, in units
  921.                of hundredths of a second."
  922.        REFERENCE
  923.                "P802.1d/D9, July 14, 1989: Section 4.5.3.14"
  924.        ::= { dot1dStp 10 }
  925.  
  926.    dot1dStpForwardDelay OBJECT-TYPE
  927.        SYNTAX  Timeout
  928.        ACCESS  read-only
  929.        STATUS  mandatory
  930.        DESCRIPTION
  931.                "This time value, measured in units of hundredths
  932.                of a second, controls how fast a port changes its
  933.                spanning state when moving towards the Forwarding
  934.                state.  The value determines how long the port
  935.                stays in a particular state before moving to the
  936.                next state.  For example, how long a port stays in
  937.                the Listening state when moving from Blocking to
  938.                Learning.  This value is also used, when a
  939.                topology change has been detected and is underway,
  940.                to age all dynamic entries in the Forwarding
  941.                Database.  [Note that this value is the one that
  942.                this bridge is currently using, in contrast to
  943.                dot1dStpBridgeForwardDelay which is the value that
  944.                this bridge and all others would start using
  945.                if/when this bridge were to become the root.]"
  946.        REFERENCE
  947.                "P802.1d/D9, July 14, 1989: Section 4.5.3.6"
  948.        ::= { dot1dStp 11 }
  949.  
  950.  
  951.  
  952.  
  953.  
  954. Decker, Langille, Rijsinghani & McCloghrie                     [Page 17]
  955.  
  956. RFC 1286                       Bridge MIB                  December 1991
  957.  
  958.  
  959.    dot1dStpBridgeMaxAge OBJECT-TYPE
  960.        SYNTAX  Timeout (600..4000)
  961.        ACCESS  read-write
  962.        STATUS  mandatory
  963.        DESCRIPTION
  964.                "The value that all bridges use for MaxAge when
  965.                this bridge is acting as the root.  Note that
  966.                802.1d/D9 specifies that the range for this
  967.                parameter is related to the value of
  968.                dot1dStpBridgeHelloTime. The granularity of this
  969.                timer is specified by 802.1d/D9 to be 1 second.
  970.                An agent may return a badValue error if a set is
  971.                attempted to a value which is not a whole number
  972.                of seconds."
  973.        REFERENCE
  974.                "P802.1d/D9, July 14, 1989: Section 4.5.3.8"
  975.        ::= { dot1dStp 12 }
  976.  
  977.    dot1dStpBridgeHelloTime OBJECT-TYPE
  978.        SYNTAX  Timeout (100..1000)
  979.        ACCESS  read-write
  980.        STATUS  mandatory
  981.        DESCRIPTION
  982.                "The value that all bridges use for HelloTime when
  983.                this bridge is acting as the root.  The
  984.                granularity of this timer is specified by
  985.                802.1d/D9 to be 1 second.  An agent may return a
  986.                badValue error if a set is attempted to a value
  987.                which is not a whole number of seconds."
  988.        REFERENCE
  989.                "P802.1d/D9, July 14, 1989: Section 4.5.3.9"
  990.        ::= { dot1dStp 13 }
  991.  
  992.    dot1dStpBridgeForwardDelay OBJECT-TYPE
  993.        SYNTAX  Timeout (400..3000)
  994.        ACCESS  read-write
  995.        STATUS  mandatory
  996.        DESCRIPTION
  997.                "The value that all bridges use for ForwardDelay
  998.                when this bridge is acting as the root.  Note that
  999.                802.1d/D9 specifies that the range for this
  1000.                parameter is related to the value of
  1001.                dot1dStpBridgeMaxAge.  The granularity of this
  1002.                timer is specified by 802.1d/D9 to be 1 second.
  1003.                An agent may return a badValue error if a set is
  1004.                attempted to a value which is not a whole number
  1005.                of seconds."
  1006.        REFERENCE
  1007.  
  1008.  
  1009.  
  1010. Decker, Langille, Rijsinghani & McCloghrie                     [Page 18]
  1011.  
  1012. RFC 1286                       Bridge MIB                  December 1991
  1013.  
  1014.  
  1015.                "P802.1d/D9, July 14, 1989: Section 4.5.3.10"
  1016.        ::= { dot1dStp 14 }
  1017.  
  1018.  
  1019.    -- The Spanning Tree Port Table
  1020.  
  1021.    dot1dStpPortTable OBJECT-TYPE
  1022.        SYNTAX  SEQUENCE OF Dot1dStpPortEntry
  1023.        ACCESS  not-accessible
  1024.        STATUS  mandatory
  1025.        DESCRIPTION
  1026.                "A table that contains port-specific information
  1027.                for the Spanning Tree Protocol."
  1028.        ::= { dot1dStp 15 }
  1029.  
  1030.    dot1dStpPortEntry OBJECT-TYPE
  1031.        SYNTAX  Dot1dStpPortEntry
  1032.        ACCESS  not-accessible
  1033.        STATUS  mandatory
  1034.        DESCRIPTION
  1035.                "A list of information maintained by every port
  1036.                about the Spanning Tree Protocol state for that
  1037.                port."
  1038.        INDEX   { dot1dStpPort }
  1039.        ::= { dot1dStpPortTable 1 }
  1040.  
  1041.    Dot1dStpPortEntry ::=
  1042.        SEQUENCE {
  1043.            dot1dStpPort
  1044.                INTEGER,
  1045.            dot1dStpPortPriority
  1046.                INTEGER,
  1047.            dot1dStpPortState
  1048.                INTEGER,
  1049.            dot1dStpPortEnable
  1050.                INTEGER,
  1051.            dot1dStpPortPathCost
  1052.                INTEGER,
  1053.            dot1dStpPortDesignatedRoot
  1054.                BridgeId,
  1055.            dot1dStpPortDesignatedCost
  1056.                INTEGER,
  1057.            dot1dStpPortDesignatedBridge
  1058.                BridgeId,
  1059.            dot1dStpPortDesignatedPort
  1060.                OCTET STRING,
  1061.            dot1dStpPortForwardTransitions
  1062.                Counter
  1063.  
  1064.  
  1065.  
  1066. Decker, Langille, Rijsinghani & McCloghrie                     [Page 19]
  1067.  
  1068. RFC 1286                       Bridge MIB                  December 1991
  1069.  
  1070.  
  1071.        }
  1072.  
  1073.    dot1dStpPort OBJECT-TYPE
  1074.        SYNTAX  INTEGER
  1075.        ACCESS  read-only
  1076.        STATUS  mandatory
  1077.        DESCRIPTION
  1078.                "The port number of the port for which this entry
  1079.                contains Spanning Tree Protocol management
  1080.                information."
  1081.        REFERENCE
  1082.                "P802.1d/D9, July 14, 1989: Section 6.8.2.1.2"
  1083.        ::= { dot1dStpPortEntry 1 }
  1084.  
  1085.    dot1dStpPortPriority OBJECT-TYPE
  1086.        SYNTAX  INTEGER (0..255)
  1087.        ACCESS  read-write
  1088.        STATUS  mandatory
  1089.        DESCRIPTION
  1090.                "The value of the priority field which is
  1091.                contained in the first (in network byte order)
  1092.                octet of the (2 octet long) Port ID.  The other
  1093.                octet of the Port ID is given by the value of
  1094.                dot1dStpPort."
  1095.        REFERENCE
  1096.                "P802.1d/D9, July 14, 1989: Section 4.5.5.1"
  1097.        ::= { dot1dStpPortEntry 2 }
  1098.  
  1099.    dot1dStpPortState OBJECT-TYPE
  1100.        SYNTAX  INTEGER {
  1101.                    disabled(1),
  1102.                    blocking(2),
  1103.                    listening(3),
  1104.                    learning(4),
  1105.                    forwarding(5),
  1106.                    broken(6)
  1107.                }
  1108.        ACCESS  read-only
  1109.        STATUS  mandatory
  1110.        DESCRIPTION
  1111.                "The port's current state as defined by
  1112.                application of the Spanning Tree Protocol.  This
  1113.                state controls what action a port takes on
  1114.                reception of a frame.  If the bridge has detected
  1115.                a port that is malfunctioning it will place that
  1116.                port into the broken(6) state.  For ports which
  1117.                are disabled (see dot1dStpPortEnable), this object
  1118.                will have a value of disabled(1)."
  1119.  
  1120.  
  1121.  
  1122. Decker, Langille, Rijsinghani & McCloghrie                     [Page 20]
  1123.  
  1124. RFC 1286                       Bridge MIB                  December 1991
  1125.  
  1126.  
  1127.        REFERENCE
  1128.                "P802.1d/D9, July 14, 1989: Section 4.5.5.2"
  1129.        ::= { dot1dStpPortEntry 3 }
  1130.  
  1131.    dot1dStpPortEnable OBJECT-TYPE
  1132.        SYNTAX  INTEGER {
  1133.                    enabled(1),
  1134.                    disabled(2)
  1135.                }
  1136.        ACCESS  read-write
  1137.        STATUS  mandatory
  1138.        DESCRIPTION
  1139.                "The enabled/disabled status of the port."
  1140.        REFERENCE
  1141.                "P802.1d/D9, July 14, 1989: Section 4.5.5.2"
  1142.        ::= { dot1dStpPortEntry 4 }
  1143.  
  1144.    dot1dStpPortPathCost OBJECT-TYPE
  1145.        SYNTAX  INTEGER (1..65535)
  1146.        ACCESS  read-write
  1147.        STATUS  mandatory
  1148.        DESCRIPTION
  1149.                "The contribution of this port to the path cost of
  1150.                paths towards the spanning tree root which include
  1151.                this port."
  1152.        REFERENCE
  1153.                "P802.1d/D9, July 14, 1989: Section 4.5.5.3"
  1154.        ::= { dot1dStpPortEntry 5 }
  1155.  
  1156.    dot1dStpPortDesignatedRoot OBJECT-TYPE
  1157.        SYNTAX  BridgeId
  1158.        ACCESS  read-only
  1159.        STATUS  mandatory
  1160.        DESCRIPTION
  1161.                "The unique Bridge Identifier of the Bridge
  1162.                recorded as the Root in the Configuration BPDUs
  1163.                transmitted by the Designated Bridge for the
  1164.                segment to which the port is attached."
  1165.        REFERENCE
  1166.                "P802.1d/D9, July 14, 1989: Section 4.5.5.4"
  1167.        ::= { dot1dStpPortEntry 6 }
  1168.  
  1169.    dot1dStpPortDesignatedCost OBJECT-TYPE
  1170.        SYNTAX  INTEGER
  1171.        ACCESS  read-only
  1172.        STATUS  mandatory
  1173.        DESCRIPTION
  1174.                "The path cost of the Designated Port of the
  1175.  
  1176.  
  1177.  
  1178. Decker, Langille, Rijsinghani & McCloghrie                     [Page 21]
  1179.  
  1180. RFC 1286                       Bridge MIB                  December 1991
  1181.  
  1182.  
  1183.                segment connected to this port.  This value is
  1184.                compared to the Root Path Cost field in received
  1185.                bridge PDUs."
  1186.        REFERENCE
  1187.                "P802.1d/D9, July 14, 1989: Section 4.5.5.5"
  1188.        ::= { dot1dStpPortEntry 7 }
  1189.  
  1190.    dot1dStpPortDesignatedBridge OBJECT-TYPE
  1191.        SYNTAX  BridgeId
  1192.        ACCESS  read-only
  1193.        STATUS  mandatory
  1194.        DESCRIPTION
  1195.                "The Bridge Identifier of the bridge which this
  1196.                port considers to be the Designated Bridge for
  1197.                this port's segment."
  1198.        REFERENCE
  1199.                "P802.1d/D9, July 14, 1989: Section 4.5.5.6"
  1200.        ::= { dot1dStpPortEntry 8 }
  1201.  
  1202.    dot1dStpPortDesignatedPort OBJECT-TYPE
  1203.        SYNTAX  OCTET STRING (SIZE (2))
  1204.        ACCESS  read-only
  1205.        STATUS  mandatory
  1206.        DESCRIPTION
  1207.                "The Port Identifier of the port on the Designated
  1208.                Bridge for this port's segment."
  1209.        REFERENCE
  1210.                "P802.1d/D9, July 14, 1989: Section 4.5.5.7"
  1211.        ::= { dot1dStpPortEntry 9 }
  1212.  
  1213.    dot1dStpPortForwardTransitions OBJECT-TYPE
  1214.        SYNTAX  Counter
  1215.        ACCESS  read-only
  1216.        STATUS  mandatory
  1217.        DESCRIPTION
  1218.                "The number of times this port has transitioned
  1219.                from the Learning state to the Forwarding state."
  1220.        ::= { dot1dStpPortEntry 10 }
  1221.  
  1222.  
  1223.    -- the dot1dSr group
  1224.  
  1225.    -- Implementation of the dot1dSr group is optional.  It is
  1226.    -- implemented by those bridges that support the source route
  1227.    -- bridging mode, including Source Route and SRT bridges.
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234. Decker, Langille, Rijsinghani & McCloghrie                     [Page 22]
  1235.  
  1236. RFC 1286                       Bridge MIB                  December 1991
  1237.  
  1238.  
  1239.    dot1dSrPortTable OBJECT-TYPE
  1240.        SYNTAX  SEQUENCE OF Dot1dSrPortEntry
  1241.        ACCESS  not-accessible
  1242.        STATUS  mandatory
  1243.        DESCRIPTION
  1244.                "A table that contains information about every
  1245.                port that is associated with this source route
  1246.                bridge."
  1247.        ::= { dot1dSr 1 }
  1248.  
  1249.    dot1dSrPortEntry OBJECT-TYPE
  1250.        SYNTAX  Dot1dSrPortEntry
  1251.        ACCESS  not-accessible
  1252.        STATUS  mandatory
  1253.        DESCRIPTION
  1254.                "A list of information for each port of a source
  1255.                route bridge."
  1256.        INDEX   { dot1dSrPort }
  1257.        ::= { dot1dSrPortTable 1 }
  1258.  
  1259.    Dot1dSrPortEntry ::=
  1260.        SEQUENCE {
  1261.            dot1dSrPort
  1262.                INTEGER,
  1263.            dot1dSrPortHopCount
  1264.                INTEGER,
  1265.            dot1dSrPortLocalSegment
  1266.                INTEGER,
  1267.            dot1dSrPortBridgeNum
  1268.                INTEGER,
  1269.            dot1dSrPortTargetSegment
  1270.                INTEGER,
  1271.            dot1dSrPortLargestFrame
  1272.                INTEGER,
  1273.            dot1dSrPortSTESpanMode
  1274.                INTEGER,
  1275.            dot1dSrPortSpecInFrames
  1276.                Counter,
  1277.            dot1dSrPortSpecOutFrames
  1278.                Counter,
  1279.            dot1dSrPortApeInFrames
  1280.                Counter,
  1281.            dot1dSrPortApeOutFrames
  1282.                Counter,
  1283.            dot1dSrPortSteInFrames
  1284.                Counter,
  1285.            dot1dSrPortSteOutFrames
  1286.                Counter,
  1287.  
  1288.  
  1289.  
  1290. Decker, Langille, Rijsinghani & McCloghrie                     [Page 23]
  1291.  
  1292. RFC 1286                       Bridge MIB                  December 1991
  1293.  
  1294.  
  1295.            dot1dSrPortSegmentMismatchDiscards
  1296.                Counter,
  1297.            dot1dSrPortDuplicateSegmentDiscards
  1298.                Counter,
  1299.            dot1dSrPortHopCountExceededDiscards
  1300.                Counter
  1301.        }
  1302.  
  1303.    dot1dSrPort OBJECT-TYPE
  1304.        SYNTAX  INTEGER
  1305.        ACCESS  read-only
  1306.        STATUS  mandatory
  1307.        DESCRIPTION
  1308.                "The port number of the port for which this entry
  1309.                contains Source Route management information."
  1310.        ::= { dot1dSrPortEntry 1 }
  1311.  
  1312.    dot1dSrPortHopCount OBJECT-TYPE
  1313.        SYNTAX  INTEGER
  1314.        ACCESS  read-write
  1315.        STATUS  mandatory
  1316.        DESCRIPTION
  1317.                "The maximum number of routing descriptors allowed
  1318.                in an All Paths or Spanning Tree Explorer frames."
  1319.        ::= { dot1dSrPortEntry 2 }
  1320.  
  1321.    dot1dSrPortLocalSegment OBJECT-TYPE
  1322.        SYNTAX  INTEGER
  1323.        ACCESS  read-write
  1324.        STATUS  mandatory
  1325.        DESCRIPTION
  1326.                "The segment number that uniquely identifies the
  1327.                segment to which this port is connected. Current
  1328.                source routing protocols limit this value to the
  1329.                range: 0 through 4095. A value of 65535 signifies
  1330.                that no segment number is assigned to this port."
  1331.        ::= { dot1dSrPortEntry 3 }
  1332.  
  1333.    dot1dSrPortBridgeNum OBJECT-TYPE
  1334.        SYNTAX  INTEGER
  1335.        ACCESS  read-write
  1336.        STATUS  mandatory
  1337.        DESCRIPTION
  1338.                "A bridge number uniquely identifies a bridge when
  1339.                more than one bridge is used to span the same two
  1340.                segments.  Current source routing protocols limit
  1341.                this value to the range: 0 through 15. A value of
  1342.                65535 signifies that no bridge number is assigned
  1343.  
  1344.  
  1345.  
  1346. Decker, Langille, Rijsinghani & McCloghrie                     [Page 24]
  1347.  
  1348. RFC 1286                       Bridge MIB                  December 1991
  1349.  
  1350.  
  1351.                to this bridge."
  1352.        ::= { dot1dSrPortEntry 4 }
  1353.  
  1354.    dot1dSrPortTargetSegment OBJECT-TYPE
  1355.        SYNTAX  INTEGER
  1356.        ACCESS  read-write
  1357.        STATUS  mandatory
  1358.        DESCRIPTION
  1359.                "The segment number that corresponds to the target
  1360.                segment this port is considered to be connected to
  1361.                by the bridge.  Current source routing protocols
  1362.                limit this value to the range: 0 through 4095. A
  1363.                value of 65535 signifies that no target segment is
  1364.                assigned to this port."
  1365.        ::= { dot1dSrPortEntry 5 }
  1366.  
  1367.    -- It would be nice if we could use ifMtu as the size of the
  1368.    -- largest frame, but we can't because ifMtu is defined to be
  1369.    -- the size that the (inter-)network layer can use which can
  1370.    -- differ from the MAC layer (especially if several layers of
  1371.    -- encapsulation are used).
  1372.  
  1373.    dot1dSrPortLargestFrame OBJECT-TYPE
  1374.        SYNTAX  INTEGER {
  1375.                    dot1dSrMtu516   (516),
  1376.                    dot1dSrMtu1500  (1500),
  1377.                    dot1dSrMtu2052  (2052),
  1378.                    dot1dSrMtu4472  (4472),
  1379.                    dot1dSrMtu8144  (8144),
  1380.                    dot1dSrMtu11407 (11407), -- yes this is correct don't
  1381.                    dot1dSrMtu17800 (17800), -- ask me where it came from.
  1382.                    dot1dSrMtu65535 (65535)
  1383.                }
  1384.  
  1385.        ACCESS  read-write
  1386.        STATUS  mandatory
  1387.        DESCRIPTION
  1388.                "The maximum size of the INFO field (LLC and
  1389.                above) that this port can send/receive.  It does
  1390.                not include any MAC level (framing) octets.  The
  1391.                value of this object is used by this bridge to
  1392.                determine whether a modification of the
  1393.                LargestFrame (LF, see [14]) field of the Routing
  1394.                Control field of the Routing Information Field is
  1395.                necessary.  Valid values as defined by the 802.5
  1396.                source routing bridging specification[14] are 516,
  1397.                1500, 2052, 4472, 8144, 11407, 17800, and 65535
  1398.                octets.  Behavior of the port when an illegal
  1399.  
  1400.  
  1401.  
  1402. Decker, Langille, Rijsinghani & McCloghrie                     [Page 25]
  1403.  
  1404. RFC 1286                       Bridge MIB                  December 1991
  1405.  
  1406.  
  1407.                value is written is implementation specific.  It
  1408.                is recommended that a reasonable legal value be
  1409.                chosen."
  1410.        ::= { dot1dSrPortEntry 6 }
  1411.  
  1412.    dot1dSrPortSTESpanMode OBJECT-TYPE
  1413.        SYNTAX  INTEGER {
  1414.                    auto-span(1),
  1415.                    disabled(2),
  1416.                    forced(3)
  1417.                }
  1418.        ACCESS  read-write
  1419.        STATUS  mandatory
  1420.        DESCRIPTION
  1421.                "Determines how this port behaves when presented
  1422.                with a Spanning Tree Explorer frame.  The value
  1423.                'disabled(2)' indicates that the port will not
  1424.                accept or send Spanning Tree Explorer packets; any
  1425.                STE packets received will be silently discarded.
  1426.                The value 'forced(3)' indicates the port will
  1427.                always accept and propagate Spanning Tree Explorer
  1428.                frames.  This allows a manually configured
  1429.                Spanning Tree for this class of packet to be
  1430.                configured.  Note that unlike transparent bridging
  1431.                this is not catastrophic to the network if there
  1432.                are loops.  The value 'auto-span(1)' can only be
  1433.                returned by a bridge that both implements the
  1434.                Spanning Tree Protocol and has use of the protocol
  1435.                enabled on this port. The behavior of the port for
  1436.                Spanning Tree Explorer frames is determined by the
  1437.                state of dot1dStpPortState.  If the port is in the
  1438.                'forwarding' state, the frame will be accepted or
  1439.                propagated.  Otherwise it will be silently
  1440.                discarded."
  1441.        ::= { dot1dSrPortEntry 7 }
  1442.  
  1443.    dot1dSrPortSpecInFrames OBJECT-TYPE
  1444.        SYNTAX  Counter
  1445.        ACCESS  read-only
  1446.        STATUS  mandatory
  1447.        DESCRIPTION
  1448.                "The number of specifically routed frames that
  1449.                have been received from this port's segment."
  1450.        ::= { dot1dSrPortEntry 8 }
  1451.  
  1452.    dot1dSrPortSpecOutFrames OBJECT-TYPE
  1453.        SYNTAX  Counter
  1454.        ACCESS  read-only
  1455.  
  1456.  
  1457.  
  1458. Decker, Langille, Rijsinghani & McCloghrie                     [Page 26]
  1459.  
  1460. RFC 1286                       Bridge MIB                  December 1991
  1461.  
  1462.  
  1463.        STATUS  mandatory
  1464.        DESCRIPTION
  1465.                "The number of specifically routed frames that
  1466.                this port has transmitted on its segment."
  1467.        ::= { dot1dSrPortEntry 9 }
  1468.  
  1469.    dot1dSrPortApeInFrames OBJECT-TYPE
  1470.        SYNTAX  Counter
  1471.        ACCESS  read-only
  1472.        STATUS  mandatory
  1473.        DESCRIPTION
  1474.                "The number of all paths explorer frames that have
  1475.                been received by this port from its segment."
  1476.        ::= { dot1dSrPortEntry 10 }
  1477.  
  1478.    dot1dSrPortApeOutFrames OBJECT-TYPE
  1479.        SYNTAX  Counter
  1480.        ACCESS  read-only
  1481.        STATUS  mandatory
  1482.        DESCRIPTION
  1483.                "The number of all paths explorer frames that have
  1484.                been transmitted by this port on its segment."
  1485.        ::= { dot1dSrPortEntry 11 }
  1486.  
  1487.    dot1dSrPortSteInFrames OBJECT-TYPE
  1488.        SYNTAX  Counter
  1489.        ACCESS  read-only
  1490.        STATUS  mandatory
  1491.        DESCRIPTION
  1492.                "The number of spanning tree explorer frames that
  1493.                have been received by this port from its segment."
  1494.        ::= { dot1dSrPortEntry 12 }
  1495.  
  1496.    dot1dSrPortSteOutFrames OBJECT-TYPE
  1497.        SYNTAX  Counter
  1498.        ACCESS  read-only
  1499.        STATUS  mandatory
  1500.        DESCRIPTION
  1501.                "The number of spanning tree explorer frames that
  1502.                have been transmitted by this port on its
  1503.                segment."
  1504.        ::= { dot1dSrPortEntry 13 }
  1505.  
  1506.    dot1dSrPortSegmentMismatchDiscards OBJECT-TYPE
  1507.        SYNTAX  Counter
  1508.        ACCESS  read-only
  1509.        STATUS  mandatory
  1510.        DESCRIPTION
  1511.  
  1512.  
  1513.  
  1514. Decker, Langille, Rijsinghani & McCloghrie                     [Page 27]
  1515.  
  1516. RFC 1286                       Bridge MIB                  December 1991
  1517.  
  1518.  
  1519.                "The number of explorer frames that have been
  1520.                discarded by this port because the routing
  1521.                descriptor field contained an invalid adjacent
  1522.                segment value."
  1523.        ::= { dot1dSrPortEntry 14 }
  1524.  
  1525.    dot1dSrPortDuplicateSegmentDiscards OBJECT-TYPE
  1526.        SYNTAX  Counter
  1527.        ACCESS  read-only
  1528.        STATUS  mandatory
  1529.        DESCRIPTION
  1530.                "The number of frames that have been discarded by
  1531.                this port because the routing descriptor field
  1532.                contained a duplicate segment identifier."
  1533.        ::= { dot1dSrPortEntry 15 }
  1534.  
  1535.    dot1dSrPortHopCountExceededDiscards OBJECT-TYPE
  1536.        SYNTAX  Counter
  1537.        ACCESS  read-only
  1538.        STATUS  mandatory
  1539.        DESCRIPTION
  1540.                "The number of explorer frames that have been
  1541.                discarded by this port because the Routing
  1542.                Information Field has exceeded the maximum route
  1543.                descriptor length."
  1544.        ::= { dot1dSrPortEntry 16 }
  1545.  
  1546.  
  1547.    -- the dot1dTp group
  1548.  
  1549.    -- Implementation of the dot1dTp group is optional.  It is
  1550.    -- implemented by those bridges that support the transparent
  1551.    -- bridging mode.  A transparent or SRT bridge will implement
  1552.    -- this group.
  1553.  
  1554.  
  1555.    dot1dTpLearnedEntryDiscards OBJECT-TYPE
  1556.        SYNTAX  Counter
  1557.        ACCESS  read-only
  1558.        STATUS  mandatory
  1559.        DESCRIPTION
  1560.                "The total number of Forwarding Database entries,
  1561.                which have been or would have been learnt, but
  1562.                have been discarded due to a lack of space to
  1563.                store them in the Forwarding Database.  If this
  1564.                counter is increasing, it indicates that the
  1565.                Forwarding Database is regularly becoming full (a
  1566.                condition which has unpleasant performance effects
  1567.  
  1568.  
  1569.  
  1570. Decker, Langille, Rijsinghani & McCloghrie                     [Page 28]
  1571.  
  1572. RFC 1286                       Bridge MIB                  December 1991
  1573.  
  1574.  
  1575.                on the subnetwork).  If this counter has a
  1576.                significant value but is not presently increasing,
  1577.                it indicates that the problem has been occurring
  1578.                but is not persistent."
  1579.        REFERENCE
  1580.                "P802.1d/D9, July 14, 1989: Section 6.7.1.1.3"
  1581.        ::= { dot1dTp 1 }
  1582.  
  1583.    dot1dTpAgingTime OBJECT-TYPE
  1584.        SYNTAX   INTEGER
  1585.        ACCESS   read-write
  1586.        STATUS   mandatory
  1587.        DESCRIPTION
  1588.                "The timeout period in seconds for aging out
  1589.                dynamically learned forwarding information."
  1590.        REFERENCE
  1591.                "P802.1d/D9, July 14, 1989: Section 6.7.1.1.3"
  1592.        ::= { dot1dTp 2 }
  1593.  
  1594.  
  1595.    --  The Forwarding Database for Transparent Bridges
  1596.  
  1597.    dot1dTpFdbTable OBJECT-TYPE
  1598.        SYNTAX  SEQUENCE OF Dot1dTpFdbEntry
  1599.        ACCESS  not-accessible
  1600.        STATUS  mandatory
  1601.        DESCRIPTION
  1602.                "A table that contains information about unicast
  1603.                entries for which the bridge has forwarding and/or
  1604.                filtering information.  This information is used
  1605.                by the transparent bridging function in
  1606.                determining how to propagate a received frame."
  1607.        ::= { dot1dTp 3 }
  1608.  
  1609.    dot1dTpFdbEntry OBJECT-TYPE
  1610.        SYNTAX  Dot1dTpFdbEntry
  1611.        ACCESS  not-accessible
  1612.        STATUS  mandatory
  1613.        DESCRIPTION
  1614.                "Information about a specific unicast MAC address
  1615.                for which the bridge has some forwarding and/or
  1616.                filtering information."
  1617.        INDEX   { dot1dTpFdbAddress }
  1618.        ::= { dot1dTpFdbTable 1 }
  1619.  
  1620.    Dot1dTpFdbEntry ::=
  1621.        SEQUENCE {
  1622.            dot1dTpFdbAddress
  1623.  
  1624.  
  1625.  
  1626. Decker, Langille, Rijsinghani & McCloghrie                     [Page 29]
  1627.  
  1628. RFC 1286                       Bridge MIB                  December 1991
  1629.  
  1630.  
  1631.                MacAddress,
  1632.            dot1dTpFdbPort
  1633.                INTEGER,
  1634.            dot1dTpFdbStatus
  1635.                INTEGER
  1636.        }
  1637.  
  1638.    dot1dTpFdbAddress OBJECT-TYPE
  1639.        SYNTAX  MacAddress
  1640.        ACCESS  read-only
  1641.        STATUS  mandatory
  1642.        DESCRIPTION
  1643.                "A unicast MAC address for which the bridge has
  1644.                forwarding and/or filtering information."
  1645.        REFERENCE
  1646.                "P802.1d/D9, July 14, 1989: Section 3.9.1, 3.9.2"
  1647.        ::= { dot1dTpFdbEntry 1 }
  1648.  
  1649.    dot1dTpFdbPort OBJECT-TYPE
  1650.        SYNTAX  INTEGER
  1651.        ACCESS  read-only
  1652.        STATUS  mandatory
  1653.        DESCRIPTION
  1654.                "Either the value '0', or the port number of the
  1655.                port on which a frame having a source address
  1656.                equal to the value of the corresponding instance
  1657.                of dot1dTpFdbAddress has been seen.  A value of
  1658.                '0' indicates that the port number has not been
  1659.                learned but that the bridge does have some
  1660.                forwarding/filtering information about this
  1661.                address (e.g. in the dot1dStaticTable).
  1662.                Implementors are encouraged to assign the port
  1663.                value to this object whenever it is learned even
  1664.                for addresses for which the corresponding value of
  1665.                dot1dTpFdbStatus is not learned(3)."
  1666.  
  1667.        ::= { dot1dTpFdbEntry 2 }
  1668.  
  1669.    dot1dTpFdbStatus OBJECT-TYPE
  1670.        SYNTAX  INTEGER {
  1671.                    other(1),
  1672.                    invalid(2),
  1673.                    learned(3),
  1674.                    self(4),
  1675.                    mgmt(5)
  1676.                }
  1677.        ACCESS  read-only
  1678.        STATUS  mandatory
  1679.  
  1680.  
  1681.  
  1682. Decker, Langille, Rijsinghani & McCloghrie                     [Page 30]
  1683.  
  1684. RFC 1286                       Bridge MIB                  December 1991
  1685.  
  1686.  
  1687.        DESCRIPTION
  1688.                "The status of this entry.  The meanings of the
  1689.                values are:
  1690.  
  1691.                  other(1)   : none of the following.  This would
  1692.                               include the case where some other
  1693.                               MIB object (not the corresponding
  1694.                               instance of dot1dTpFdbPort, nor an
  1695.                               entry in the dot1dStaticTable) is
  1696.                               being used to determine if and how
  1697.                               frames addressed to the value of
  1698.                               the corresponding instance of
  1699.                               dot1dTpFdbAddress are being
  1700.                               forwarded.
  1701.  
  1702.                  invalid(2) : this entry is not longer valid
  1703.                               (e.g., it was learned but has since
  1704.                               aged-out), but has not yet been
  1705.                               flushed from the table.
  1706.  
  1707.                  learned(3) : the value of the corresponding
  1708.                               instance of dot1dTpFdbPort was
  1709.                               learned, and is being used.
  1710.  
  1711.                  self(4)    : the value of the corresponding
  1712.                               instance of dot1dTpFdbAddress
  1713.                               represents one of the bridge's
  1714.                               addresses.  The corresponding
  1715.                               instance of dot1dTpFdbPort
  1716.                               indicates which of the bridge's
  1717.                               ports has this address.
  1718.  
  1719.                  mgmt(5)    : the value of the corresponding
  1720.                               instance of dot1dTpFdbAddress is
  1721.                               also the value of an existing
  1722.                               instance of dot1dStaticAddress."
  1723.        ::= { dot1dTpFdbEntry 3 }
  1724.  
  1725.  
  1726.    --  Port Table for Transparent Bridges
  1727.  
  1728.    dot1dTpPortTable OBJECT-TYPE
  1729.        SYNTAX  SEQUENCE OF Dot1dTpPortEntry
  1730.        ACCESS  not-accessible
  1731.        STATUS  mandatory
  1732.        DESCRIPTION
  1733.                "A table that contains information about every
  1734.                port that is associated with this transparent
  1735.  
  1736.  
  1737.  
  1738. Decker, Langille, Rijsinghani & McCloghrie                     [Page 31]
  1739.  
  1740. RFC 1286                       Bridge MIB                  December 1991
  1741.  
  1742.  
  1743.                bridge."
  1744.        ::= { dot1dTp 4 }
  1745.  
  1746.    dot1dTpPortEntry OBJECT-TYPE
  1747.        SYNTAX  Dot1dTpPortEntry
  1748.        ACCESS  not-accessible
  1749.        STATUS  mandatory
  1750.        DESCRIPTION
  1751.                "A list of information for each port of a
  1752.                transparent bridge."
  1753.        INDEX   { dot1dTpPort }
  1754.        ::= { dot1dTpPortTable 1 }
  1755.  
  1756.    Dot1dTpPortEntry ::=
  1757.        SEQUENCE {
  1758.            dot1dTpPort
  1759.                INTEGER,
  1760.            dot1dTpPortMaxInfo
  1761.                INTEGER,
  1762.            dot1dTpPortInFrames
  1763.                Counter,
  1764.            dot1dTpPortOutFrames
  1765.                Counter,
  1766.            dot1dTpPortInDiscards
  1767.                Counter
  1768.        }
  1769.  
  1770.    dot1dTpPort OBJECT-TYPE
  1771.        SYNTAX  INTEGER
  1772.        ACCESS  read-only
  1773.        STATUS  mandatory
  1774.        DESCRIPTION
  1775.                "The port number of the port for which this entry
  1776.                contains Transparent bridging management
  1777.                information."
  1778.        ::= { dot1dTpPortEntry 1 }
  1779.  
  1780.    -- It would be nice if we could use ifMtu as the size of the
  1781.    -- largest INFO field, but we can't because ifMtu is defined
  1782.    -- to be the size that the (inter-)network layer can use which
  1783.    -- can differ from the MAC layer (especially if several layers
  1784.    -- of encapsulation are used).
  1785.  
  1786.    dot1dTpPortMaxInfo OBJECT-TYPE
  1787.        SYNTAX  INTEGER
  1788.        ACCESS  read-only
  1789.        STATUS  mandatory
  1790.        DESCRIPTION
  1791.  
  1792.  
  1793.  
  1794. Decker, Langille, Rijsinghani & McCloghrie                     [Page 32]
  1795.  
  1796. RFC 1286                       Bridge MIB                  December 1991
  1797.  
  1798.  
  1799.                "The maximum size of the INFO (non-MAC) field that
  1800.                this port will receive or transmit."
  1801.        ::= { dot1dTpPortEntry 2 }
  1802.  
  1803.    dot1dTpPortInFrames OBJECT-TYPE
  1804.        SYNTAX  Counter
  1805.        ACCESS  read-only
  1806.        STATUS  mandatory
  1807.        DESCRIPTION
  1808.                "The number of frames that have been received by
  1809.                this port from its segment. Note that a frame
  1810.                received on the interface corresponding to this
  1811.                port is only counted by this object if and only if
  1812.                it is for a protocol being processed by the local
  1813.                bridging function."
  1814.        REFERENCE
  1815.                "P802.1d/D9, July 14, 1989: Section 6.6.1.1.3"
  1816.        ::= { dot1dTpPortEntry 3 }
  1817.  
  1818.    dot1dTpPortOutFrames OBJECT-TYPE
  1819.        SYNTAX  Counter
  1820.        ACCESS  read-only
  1821.        STATUS  mandatory
  1822.        DESCRIPTION
  1823.                "The number of frames that have been transmitted
  1824.                by this port to its segment.  Note that a frame
  1825.                transmitted on the interface corresponding to this
  1826.                port is only counted by this object if and only if
  1827.                it is for a protocol being processed by the local
  1828.                bridging function."
  1829.        REFERENCE
  1830.                "P802.1d/D9, July 14, 1989: Section 6.6.1.1.3"
  1831.        ::= { dot1dTpPortEntry 4 }
  1832.  
  1833.    dot1dTpPortInDiscards OBJECT-TYPE
  1834.        SYNTAX   Counter
  1835.        ACCESS   read-only
  1836.        STATUS   mandatory
  1837.        DESCRIPTION
  1838.                "Count of valid frames received which were
  1839.                discarded (i.e., filtered) by the Forwarding
  1840.                Process."
  1841.        REFERENCE
  1842.                "P802.1d/D9, July 14, 1989: Section 6.6.1.1.3"
  1843.        ::= { dot1dTpPortEntry 5 }
  1844.  
  1845.  
  1846.  
  1847.  
  1848.  
  1849.  
  1850. Decker, Langille, Rijsinghani & McCloghrie                     [Page 33]
  1851.  
  1852. RFC 1286                       Bridge MIB                  December 1991
  1853.  
  1854.  
  1855.    -- The Static (Destination-Address Filtering) Database
  1856.  
  1857.    -- Implementation of this group is optional.
  1858.  
  1859.  
  1860.    dot1dStaticTable OBJECT-TYPE
  1861.        SYNTAX  SEQUENCE OF Dot1dStaticEntry
  1862.        ACCESS  not-accessible
  1863.        STATUS  mandatory
  1864.        DESCRIPTION
  1865.                "A table containing filtering information
  1866.                configured into the bridge by (local or network)
  1867.                management specifying the set of ports to which
  1868.                frames received from specific ports and containing
  1869.                specific destination addresses are allowed to be
  1870.                forwarded.  The value of zero in this table as the
  1871.                port number from which frames with a specific
  1872.                destination address are received, is used to
  1873.                specify all ports for which there is no specific
  1874.                entry in this table for that particular
  1875.                destination address.  Entries are valid for
  1876.                unicast and for group/broadcast addresses."
  1877.        REFERENCE
  1878.                "P802.1d/D9, July 14, 1989: Section 6.7.2"
  1879.        ::= { dot1dStatic 1 }
  1880.  
  1881.    dot1dStaticEntry OBJECT-TYPE
  1882.        SYNTAX  Dot1dStaticEntry
  1883.        ACCESS  not-accessible
  1884.        STATUS  mandatory
  1885.        DESCRIPTION
  1886.                "Filtering information configured into the bridge
  1887.                by (local or network) management specifying the
  1888.                set of ports to which frames received from a
  1889.                specific port and containing a specific
  1890.                destination address are allowed to be forwarded."
  1891.        REFERENCE
  1892.                "P802.1d/D9, July 14,1989: Section 6.7.2"
  1893.        INDEX   { dot1dStaticAddress, dot1dStaticReceivePort }
  1894.        ::= { dot1dStaticTable 1 }
  1895.  
  1896.    Dot1dStaticEntry ::=
  1897.        SEQUENCE {
  1898.            dot1dStaticAddress
  1899.                MacAddress,
  1900.            dot1dStaticReceivePort
  1901.                INTEGER,
  1902.            dot1dStaticAllowedToGoTo
  1903.  
  1904.  
  1905.  
  1906. Decker, Langille, Rijsinghani & McCloghrie                     [Page 34]
  1907.  
  1908. RFC 1286                       Bridge MIB                  December 1991
  1909.  
  1910.  
  1911.                OCTET STRING,
  1912.            dot1dStaticStatus
  1913.                INTEGER
  1914.        }
  1915.  
  1916.    dot1dStaticAddress OBJECT-TYPE
  1917.        SYNTAX  MacAddress
  1918.        ACCESS  read-write
  1919.        STATUS  mandatory
  1920.        DESCRIPTION
  1921.                "The destination MAC address in a frame to which
  1922.                this entry's filtering information applies.  This
  1923.                object can take the value of a unicast address, a
  1924.                group address or the broadcast address."
  1925.        REFERENCE
  1926.                "P802.1d/D9, July 14, 1989: Section 3.9.1, 3.9.2"
  1927.        ::= { dot1dStaticEntry 1 }
  1928.  
  1929.    dot1dStaticReceivePort OBJECT-TYPE
  1930.        SYNTAX  INTEGER
  1931.        ACCESS  read-write
  1932.        STATUS  mandatory
  1933.        DESCRIPTION
  1934.                "Either the value '0', or the port number of the
  1935.                port from which a frame must be received in order
  1936.                for this entry's filtering information to apply.
  1937.                A value of zero indicates that this entry applies
  1938.                on all ports of the bridge for which there is no
  1939.                other applicable entry."
  1940.        ::= { dot1dStaticEntry 2 }
  1941.  
  1942.    dot1dStaticAllowedToGoTo OBJECT-TYPE
  1943.        SYNTAX  OCTET STRING
  1944.        ACCESS  read-write
  1945.        STATUS  mandatory
  1946.        DESCRIPTION
  1947.                "The set of ports to which frames received from a
  1948.                specific port and destined for a specific MAC
  1949.                address, are allowed to be forwarded.  Each octet
  1950.                within the value of this object specifies a set of
  1951.                eight ports, with the first octet specifying ports
  1952.                1 through 8, the second octet specifying ports 9
  1953.                through 16, etc.  Within each octet, the most
  1954.                significant bit represents the lowest numbered
  1955.                port, and the least significant bit represents the
  1956.                highest numbered port.  Thus, each port of the
  1957.                bridge is represented by a single bit within the
  1958.                value of this object.  If that bit has a value of
  1959.  
  1960.  
  1961.  
  1962. Decker, Langille, Rijsinghani & McCloghrie                     [Page 35]
  1963.  
  1964. RFC 1286                       Bridge MIB                  December 1991
  1965.  
  1966.  
  1967.                '1' then that port is included in the set of
  1968.                ports; the port is not included if its bit has a
  1969.                value of '0'.  (Note that the setting of the bit
  1970.                corresponding to the port from which a frame is
  1971.                received is irrelevant.)"
  1972.        ::= { dot1dStaticEntry 3 }
  1973.  
  1974.    dot1dStaticStatus OBJECT-TYPE
  1975.        SYNTAX  INTEGER {
  1976.                    other(1),
  1977.                    invalid(2),
  1978.                    permanent(3),
  1979.                    deleteOnReset(4),
  1980.                    deleteOnTimeout(5)
  1981.                }
  1982.        ACCESS  read-write
  1983.        STATUS  mandatory
  1984.        DESCRIPTION
  1985.                "This object indicates the status of this entry.
  1986.                     other(1) - this entry is currently in use but
  1987.                          the conditions under which it will
  1988.                          remain so are different from each of the
  1989.                          following values.
  1990.                     invalid(2) - writing this value to the object
  1991.                          removes the corresponding entry.
  1992.                     permanent(3) - this entry is currently in use
  1993.                          and will remain so after the next reset
  1994.                          of the bridge.
  1995.                     deleteOnReset(4) - this entry is currently in
  1996.                          use and will remain so until the next
  1997.                          reset of the bridge.
  1998.                     deleteOnTimeout(5) - this entry is currently
  1999.                          in use and will remain so until it is
  2000.                          aged out."
  2001.        ::= { dot1dStaticEntry 4 }
  2002.  
  2003.    -- Traps for use by Bridges
  2004.  
  2005.    -- Traps for the Spanning Tree Protocol
  2006.  
  2007.    newRoot TRAP-TYPE
  2008.        ENTERPRISE  dot1dBridge
  2009.        DESCRIPTION
  2010.                "The newRoot trap indicates that the sending agent
  2011.                has become the new root of the Spanning Tree; the
  2012.                trap is sent by a bridge soon after its election
  2013.                as the new root, e.g., upon expiration of the
  2014.                Topology Change Timer immediately subsequent to
  2015.  
  2016.  
  2017.  
  2018. Decker, Langille, Rijsinghani & McCloghrie                     [Page 36]
  2019.  
  2020. RFC 1286                       Bridge MIB                  December 1991
  2021.  
  2022.  
  2023.                its election."
  2024.        ::= 1
  2025.  
  2026.    topologyChange TRAP-TYPE
  2027.        ENTERPRISE  dot1dBridge
  2028.        DESCRIPTION
  2029.                "A topologyChange trap is sent by a bridge when
  2030.                any of its configured ports transitions from the
  2031.                Learning state to the Forwarding state, or from
  2032.                the Forwarding state to the Blocking state.  The
  2033.                trap is not sent if a newRoot trap is sent for the
  2034.                same transition."
  2035.        ::= 2
  2036.  
  2037.    END
  2038.  
  2039. 6.  Acknowledgments
  2040.  
  2041.    This document was produced on behalf of the Bridge Sub-Working Group
  2042.    of the SNMP Working Group of the Internet Engineering Task Force.
  2043.    Over the course of its deliberations, the working group received four
  2044.    separate documents for consideration as the basis for its work.  The
  2045.    first was submitted by Stan Froyd of Advanced Computer
  2046.    Communications; the second by Richard Fox of SynOptics; the third by
  2047.    Eric Decker of cisco Inc. and Keith McCloghrie of Hughes LAN Systems;
  2048.    and the fourth by Paul Langille and Anil Rijsinghani of Digital
  2049.    Equipment Corp. After considering the submissions, the working group
  2050.    chose to proceed with a document formed as a conjunction of the
  2051.    latter two submissions.  This document is the result.
  2052.  
  2053.    The authors wish to thank the members of the Bridge Working Group for
  2054.    their many comments and suggestions which improved this effort.  In
  2055.    particular, Fred Baker (chairman of the working group) of ACC, Steve
  2056.    Sherry of Xyplex, and Frank Kastenholz of Clearpoint Research Corp.
  2057.    Others members of the Bridge Working Group who contributed to this
  2058.    effort are:
  2059.  
  2060.         Bill Anderson, Mitre
  2061.         Karl Auerbach, Epilogue
  2062.         Fred Baker, ACC (chair)
  2063.         Terry Bradley, Wellfleet
  2064.         Ted Brunner, Bellcore
  2065.         Jeffrey Buffum, Apollo
  2066.         Chris ChioTasso, Fibronics
  2067.         Anthony Chung, HLS
  2068.         Chuck Davin, MIT-LCS
  2069.         Andy Davis, Spider
  2070.         Eric Decker, cisco
  2071.  
  2072.  
  2073.  
  2074. Decker, Langille, Rijsinghani & McCloghrie                     [Page 37]
  2075.  
  2076. RFC 1286                       Bridge MIB                  December 1991
  2077.  
  2078.  
  2079.         Nadya El-Afandi, Network Systems
  2080.         Gary Ellis,HP/Apollo
  2081.         Richard Fox, SynOptics
  2082.         Stan Froyd, ACC
  2083.         Frank Kastenholz, Clearpoint Research
  2084.         Shirnshon Kaufman,
  2085.         Jim Kinder, Fibercom
  2086.         Cheryl Krupczak,NCR
  2087.         Paul Langille, Digital
  2088.         Peter Lin,Vitalink
  2089.         Keith McCloghrie, HLS
  2090.         Donna McMaster, SynOptics
  2091.         Dave Perkins, 3Com
  2092.         Jim Reinstedler, Ungermann Bass
  2093.         Anil Rijsinghani, Digital
  2094.         Mark Schaefer, David Systems
  2095.         Steve Sherry, Xyplex
  2096.         Bob Stewart, Xyplex
  2097.         Emil Sturniolo,
  2098.         Kevin Synott, Retix
  2099.         Ian Thomas, Chipcom
  2100.         Maurice Turcott, Racal
  2101.         Fei Xu,
  2102.  
  2103. 7.  References
  2104.  
  2105.    [1] Cerf, V., "IAB Recommendations for the Development of Internet
  2106.        Network Management Standards", RFC 1052, NRI, April 1988.
  2107.  
  2108.    [2]  Cerf, V., "Report of the Second Ad Hoc Network Management Review
  2109.        Group", RFC 1109, NRI, August 1989.
  2110.  
  2111.    [3] Rose M., and K. McCloghrie, "Structure and Identification of
  2112.        Management Information for TCP/IP-based internets", RFC 1155,
  2113.        Performance Systems International, Hughes LAN Systems, May 1990.
  2114.  
  2115.    [4] McCloghrie K., and M. Rose, "Management Information Base for
  2116.        Network Management of TCP/IP-based internets", RFC 1156, Hughes
  2117.        LAN Systems, Performance Systems International, May 1990.
  2118.  
  2119.    [5] Case, J., Fedor, M., Schoffstall, M., and J. Davin, "Simple
  2120.        Network Management Protocol", RFC 1157, SNMP Research,
  2121.        Performance Systems International, Performance Systems
  2122.        International, MIT Laboratory for Computer Science, May 1990.
  2123.  
  2124.    [6] McCloghrie K., and M. Rose, Editors, "Management Information Base
  2125.        for Network Management of TCP/IP-based internets", RFC 1213,
  2126.        Performance Systems International, March 1991.
  2127.  
  2128.  
  2129.  
  2130. Decker, Langille, Rijsinghani & McCloghrie                     [Page 38]
  2131.  
  2132. RFC 1286                       Bridge MIB                  December 1991
  2133.  
  2134.  
  2135.    [7] Information processing systems - Open Systems Interconnection -
  2136.        Specification of Abstract Syntax Notation One (ASN.1),
  2137.        International Organization for Standardization, International
  2138.        Standard 8824, December 1987.
  2139.  
  2140.    [8] Information processing systems - Open Systems Interconnection -
  2141.        Specification of Basic Encoding Rules for Abstract Notation One
  2142.        (ASN.1), International Organization for Standardization,
  2143.        International Standard 8825, December 1987.
  2144.  
  2145.    [9] Rose, M., and K. McCloghrie, Editors, "Concise MIB Definitions",
  2146.        RFC 1212, Performance Systems International, Hughes LAN Systems,
  2147.        March 1991.
  2148.  
  2149.   [10] Rose, M., Editor, "A Convention for Defining Traps for use with
  2150.        the SNMP", RFC 1215, Performance Systems International, March
  2151.        1991.
  2152.  
  2153.   [11] ANSI/IEEE Draft P802.1d/D9 MAC Bridges, "IEEE Project 802 Local
  2154.        and Metropolitan Area Networks", July 14, 1989.
  2155.  
  2156.   [12] I.B.M. Token Ring Architecture Reference.
  2157.  
  2158.   [13] ISO DIS 10038 MAC Bridges.
  2159.  
  2160.   [14] ANSI/IEEE P802.1x/P802.5x, "Proposed Draft Local Area Network
  2161.        Standard -- MAC Bridges, Source Routing Supplement", IEEE Project
  2162.        802, September 1990.
  2163.  
  2164.   [15] ANSI/IEEE 802.1y, "Source Routing Tutorial for End System
  2165.        Operation", September 1990.
  2166.  
  2167. 8.  Security Considerations
  2168.  
  2169.    Security issues are not discussed in this memo.
  2170.  
  2171.  
  2172.  
  2173.  
  2174.  
  2175.  
  2176.  
  2177.  
  2178.  
  2179.  
  2180.  
  2181.  
  2182.  
  2183.  
  2184.  
  2185.  
  2186. Decker, Langille, Rijsinghani & McCloghrie                     [Page 39]
  2187.  
  2188. RFC 1286                       Bridge MIB                  December 1991
  2189.  
  2190.  
  2191. 9.  Authors' Addresses
  2192.  
  2193.    Eric B. Decker
  2194.    cisco Systems, Inc.
  2195.    1525 O'Brien Dr.
  2196.    Menlo Park, CA  94025
  2197.  
  2198.    Phone: (415) 326-1941
  2199.    Email: cire@cisco.com
  2200.  
  2201.  
  2202.    Paul Langille
  2203.    Digital Equipment Corporation
  2204.    Digital Drive, MK02-2/K03
  2205.    Merrimack, NH 03054
  2206.  
  2207.    Phone: (603) 884-4045
  2208.    EMail: langille@edwin.enet.dec.com
  2209.  
  2210.  
  2211.    Anil Rijsinghani
  2212.    Digital Equipment Corporation
  2213.    153 Taylor St.
  2214.    Littleton, MA 01460
  2215.  
  2216.    Phone: (508)952-3520
  2217.    EMail: anil@levers.enet.dec.com
  2218.  
  2219.  
  2220.    Keith McCloghrie
  2221.    Hughes LAN Systems
  2222.    1225 Charleston Road
  2223.    Mountain View, CA 94043
  2224.  
  2225.    Phone: (415) 966-7934
  2226.    EMail: kzm@hls.com
  2227.  
  2228.  
  2229.  
  2230.  
  2231.  
  2232.  
  2233.  
  2234.  
  2235.  
  2236.  
  2237.  
  2238.  
  2239.  
  2240.  
  2241.  
  2242. Decker, Langille, Rijsinghani & McCloghrie                     [Page 40]
  2243.