⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rfc2674.mib

📁 wm PNE 3.3 source code, running at more than vxworks6.x version.
💻 MIB
📖 第 1 页 / 共 5 页
字号:
P-BRIDGE-MIB DEFINITIONS ::= BEGIN-- --------------------------------------------------------------- MIB for IEEE 802.1p devices-- -------------------------------------------------------------IMPORTS    MODULE-IDENTITY, OBJECT-TYPE, Counter32, Counter64        FROM SNMPv2-SMI    TruthValue, TimeInterval, MacAddress, TEXTUAL-CONVENTION        FROM SNMPv2-TC    MODULE-COMPLIANCE, OBJECT-GROUP        FROM SNMPv2-CONF    dot1dTp, dot1dTpPort, dot1dBridge,    dot1dBasePortEntry, dot1dBasePort        FROM BRIDGE-MIB;pBridgeMIB MODULE-IDENTITY    LAST-UPDATED "9908250000Z"    ORGANIZATION "IETF Bridge MIB Working Group"    CONTACT-INFO        "       Les Bell        Postal: 3Com Europe Ltd.                3Com Centre, Boundary Way                Hemel Hempstead, Herts. HP2 7YU                UK         Phone: +44 1442 438025         Email: Les_Bell@3Com.com                Andrew Smith        Postal: Extreme Networks                3585 Monroe St.                Santa Clara CA 95051                USA         Phone: +1 408 579 2821         Email: andrew@extremenetworks.com                Paul Langille        Postal: Newbridge Networks                5 Corporate Drive                Andover, MA 01810                USA         Phone: +1 978 691 4665         Email: langille@newbridge.com                Anil Rijhsinghani        Postal: Cabletron Systems                50 Minuteman Road                Andover, MA 01810                USA         Phone: +1 978 684 1295         Email: anil@cabletron.com                Keith McCloghrie        Postal: cisco Systems, Inc.                170 West Tasman Drive                San Jose, CA 95134-1706                USA         Phone: +1 408 526 5260         Email: kzm@cisco.com"    DESCRIPTION        "The Bridge MIB Extension module for managing Priority        and Multicast Filtering, defined by IEEE 802.1D-1998."-- revision history    REVISION     "9908250000Z"    DESCRIPTION         "Initial version, published as RFC 2674."    ::= { dot1dBridge 6 }pBridgeMIBObjects OBJECT IDENTIFIER ::= { pBridgeMIB 1 }-- --------------------------------------------------------------- Textual Conventions-- -------------------------------------------------------------EnabledStatus ::= TEXTUAL-CONVENTION    STATUS      current    DESCRIPTION        "A simple status value for the object."    SYNTAX      INTEGER { enabled(1), disabled(2) }-- --------------------------------------------------------------- --------------------------------------------------------------- groups in the P-BRIDGE MIB-- -------------------------------------------------------------dot1dExtBase    OBJECT IDENTIFIER ::= { pBridgeMIBObjects 1 }dot1dPriority   OBJECT IDENTIFIER ::= { pBridgeMIBObjects 2 }dot1dGarp       OBJECT IDENTIFIER ::= { pBridgeMIBObjects 3 }dot1dGmrp       OBJECT IDENTIFIER ::= { pBridgeMIBObjects 4 }-- --------------------------------------------------------------- --------------------------------------------------------------- the dot1dExtBase group-- -------------------------------------------------------------dot1dDeviceCapabilities OBJECT-TYPE    SYNTAX      BITS {        dot1dExtendedFilteringServices(0),                              -- can perform filtering of                              -- individual multicast addresses                              -- controlled by GMRP.        dot1dTrafficClasses(1),                              -- can map user priority to                              -- multiple traffic classes.        dot1qStaticEntryIndividualPort(2),                              -- dot1qStaticUnicastReceivePort &                              -- dot1qStaticMulticastReceivePort                              -- can represent non-zero entries.        dot1qIVLCapable(3),   -- Independent VLAN Learning.        dot1qSVLCapable(4),   -- Shared VLAN Learning.        dot1qHybridCapable(5),                              -- both IVL & SVL simultaneously.        dot1qConfigurablePvidTagging(6),                              -- whether the implementation                              -- supports the ability to                              -- override the default PVID                              -- setting and its egress status                              -- (VLAN-Tagged or Untagged) on                              -- each port.        dot1dLocalVlanCapable(7)                              -- can support multiple local                              -- bridges, outside of the scope                              -- of 802.1Q defined VLANs.    }    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "Indicates the optional parts of IEEE 802.1D and 802.1Q        that are implemented by this device and are manageable        through this MIB.  Capabilities that are allowed on a        per-port basis are indicated in dot1dPortCapabilities."    REFERENCE        "ISO/IEC 15802-3 Section 5.2,        IEEE 802.1Q/D11 Section 5.2, 12.10.1.1.3/b/2"    ::= { dot1dExtBase 1 }dot1dTrafficClassesEnabled OBJECT-TYPE    SYNTAX      TruthValue    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The value true(1) indicates that Traffic Classes are        enabled on this bridge.  When false(2), the bridge        operates with a single priority level for all traffic."    DEFVAL      { true }    ::= { dot1dExtBase 2 }dot1dGmrpStatus OBJECT-TYPE    SYNTAX      EnabledStatus    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The administrative status requested by management for        GMRP.  The value enabled(1) indicates that GMRP should        be enabled on this device, in all VLANs, on all ports        for which it has not been specifically disabled.  When        disabled(2), GMRP is disabled, in all VLANs, on all        ports and all GMRP packets will be forwarded        transparently.  This object affects both Applicant and        Registrar state machines.  A transition from disabled(2)        to enabled(1) will cause a reset of all GMRP state        machines on all ports."    DEFVAL      { enabled }    ::= { dot1dExtBase 3 }-- --------------------------------------------------------------- Port Capabilities Table-- -------------------------------------------------------------dot1dPortCapabilitiesTable OBJECT-TYPE    SYNTAX      SEQUENCE OF Dot1dPortCapabilitiesEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table that contains capabilities information about        every port that is associated with this bridge."    ::= { dot1dExtBase 4 }dot1dPortCapabilitiesEntry OBJECT-TYPE    SYNTAX      Dot1dPortCapabilitiesEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A set of capabilities information about this port        indexed by dot1dBasePort."    AUGMENTS { dot1dBasePortEntry }    ::= { dot1dPortCapabilitiesTable 1 }Dot1dPortCapabilitiesEntry ::=    SEQUENCE {        dot1dPortCapabilities            BITS    }dot1dPortCapabilities OBJECT-TYPE    SYNTAX      BITS {        dot1qDot1qTagging(0), -- supports 802.1Q VLAN tagging of                              -- frames and GVRP.        dot1qConfigurableAcceptableFrameTypes(1),                              -- allows modified values of                              -- dot1qPortAcceptableFrameTypes.        dot1qIngressFiltering(2)                              -- supports the discarding of any                              -- frame received on a Port whose                              -- VLAN classification does not                              -- include that Port in its Member                              -- set.    }    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "Indicates the parts of IEEE 802.1D and 802.1Q that are        optional on a per-port basis that are implemented by        this device and are manageable through this MIB."    REFERENCE        "ISO/IEC 15802-3 Section 5.2,        IEEE 802.1Q/D11 Section 5.2"    ::= { dot1dPortCapabilitiesEntry 1 }-- --------------------------------------------------------------- the dot1dPriority group-- --------------------------------------------------------------- --------------------------------------------------------------- Port Priority Table-- -------------------------------------------------------------dot1dPortPriorityTable OBJECT-TYPE    SYNTAX      SEQUENCE OF Dot1dPortPriorityEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table that contains information about every port that        is associated with this transparent bridge."    ::= { dot1dPriority 1 }dot1dPortPriorityEntry OBJECT-TYPE    SYNTAX      Dot1dPortPriorityEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A list of Default User Priorities for each port of a        transparent bridge.  This is indexed by dot1dBasePort."    AUGMENTS { dot1dBasePortEntry }    ::= { dot1dPortPriorityTable 1 }Dot1dPortPriorityEntry ::=    SEQUENCE {        dot1dPortDefaultUserPriority            INTEGER,        dot1dPortNumTrafficClasses            INTEGER    }dot1dPortDefaultUserPriority OBJECT-TYPE    SYNTAX      INTEGER (0..7)    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The default ingress User Priority for this port.  This        only has effect on media, such as Ethernet, that do not        support native User Priority."    ::= { dot1dPortPriorityEntry 1 }dot1dPortNumTrafficClasses OBJECT-TYPE    SYNTAX      INTEGER (1..8)    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The number of egress traffic classes supported on this        port.  This object may optionally be read-only."    ::= { dot1dPortPriorityEntry 2 }-- --------------------------------------------------------------- User Priority Regeneration Table-- -------------------------------------------------------------dot1dUserPriorityRegenTable OBJECT-TYPE    SYNTAX      SEQUENCE OF Dot1dUserPriorityRegenEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A list of Regenerated User Priorities for each received        User Priority on each port of a bridge.  The Regenerated        User Priority value may be used to index the Traffic        Class Table for each input port.  This only has effect        on media that support native User Priority.  The default        values for Regenerated User Priorities are the same as        the User Priorities."    REFERENCE        "ISO/IEC 15802-3 Section 6.4"    ::= { dot1dPriority 2 }dot1dUserPriorityRegenEntry OBJECT-TYPE    SYNTAX      Dot1dUserPriorityRegenEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A mapping of incoming User Priority to a Regenerated        User Priority."    INDEX   { dot1dBasePort, dot1dUserPriority }    ::= { dot1dUserPriorityRegenTable 1 }Dot1dUserPriorityRegenEntry ::=    SEQUENCE {        dot1dUserPriority            INTEGER,        dot1dRegenUserPriority            INTEGER    }dot1dUserPriority OBJECT-TYPE    SYNTAX      INTEGER (0..7)    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "The User Priority for a frame received on this port."    ::= { dot1dUserPriorityRegenEntry 1 }dot1dRegenUserPriority OBJECT-TYPE    SYNTAX      INTEGER (0..7)    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The Regenerated User Priority the incoming User        Priority is mapped to for this port."    ::= { dot1dUserPriorityRegenEntry 2 }-- --------------------------------------------------------------- Traffic Class Table-- -------------------------------------------------------------dot1dTrafficClassTable OBJECT-TYPE    SYNTAX      SEQUENCE OF Dot1dTrafficClassEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table mapping evaluated User Priority to Traffic        Class, for forwarding by the bridge.  Traffic class is a        number in the range (0..(dot1dPortNumTrafficClasses-1))."    REFERENCE        "ISO/IEC 15802-3 Table 7-2"    ::= { dot1dPriority 3 }dot1dTrafficClassEntry OBJECT-TYPE    SYNTAX      Dot1dTrafficClassEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "User Priority to Traffic Class mapping."    INDEX   { dot1dBasePort, dot1dTrafficClassPriority }    ::= { dot1dTrafficClassTable 1 }Dot1dTrafficClassEntry ::=    SEQUENCE {        dot1dTrafficClassPriority            INTEGER,        dot1dTrafficClass            INTEGER    }dot1dTrafficClassPriority OBJECT-TYPE    SYNTAX      INTEGER (0..7)    MAX-ACCESS  not-accessible

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -