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

📄 diffserv-mib

📁 很不错java的SNMP应用例子
💻
📖 第 1 页 / 共 5 页
字号:
diffServCountActOctets OBJECT-TYPE    SYNTAX       Counter64    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "The number of octets at the Action data path element.       Discontinuities in the value of this counter can occur at re-       initialization of the management system and at other times as       indicated by the value of ifCounterDiscontinuityTime on the       relevant interface."    ::= { diffServCountActEntry 2 }diffServCountActPkts OBJECT-TYPE    SYNTAX       Counter64    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "The number of packets at the Action data path element.       Discontinuities in the value of this counter can occur at re-       initialization of the management system and at other times as       indicated by the value of ifCounterDiscontinuityTime on the       relevant interface."    ::= { diffServCountActEntry 3 }diffServCountActStorage OBJECT-TYPE    SYNTAX       StorageType    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "The storage type for this conceptual row.  Conceptual rows       having the value 'permanent' need not allow write-access to any       columnar objects in the row."    DEFVAL { nonVolatile }    ::= { diffServCountActEntry 4 }diffServCountActStatus OBJECT-TYPE    SYNTAX       RowStatus    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "The status of this conceptual row. All writable objects in this       row may be modified at any time. Setting this variable to       'destroy' when the MIB contains one or more RowPointers pointing       to it results in destruction being delayed until the row is no       longer used."    ::= { diffServCountActEntry 5 }---- Algorithmic Drop Table--diffServAlgDrop        OBJECT IDENTIFIER ::= { diffServMIBObjects 6 }diffServAlgDropNextFree OBJECT-TYPE    SYNTAX       IndexIntegerNextFree    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "This object contains an unused value for diffServAlgDropId, or a       zero to indicate that none exist."    ::= { diffServAlgDrop 1 }diffServAlgDropTable OBJECT-TYPE    SYNTAX       SEQUENCE OF DiffServAlgDropEntry    MAX-ACCESS   not-accessible    STATUS       current    DESCRIPTION       "The algorithmic drop table contains entries describing an       element that drops packets according to some algorithm."    ::= { diffServAlgDrop 2 }diffServAlgDropEntry OBJECT-TYPE    SYNTAX       DiffServAlgDropEntry    MAX-ACCESS   not-accessible    STATUS       current    DESCRIPTION       "An entry describes a process that drops packets according to       some algorithm. Further details of the algorithm type are to be       found in diffServAlgDropType and with more detail parameter entry       pointed to by diffServAlgDropSpecific when necessary."    INDEX { diffServAlgDropId }    ::= { diffServAlgDropTable 1 }DiffServAlgDropEntry ::= SEQUENCE  {    diffServAlgDropId               IndexInteger,    diffServAlgDropType             INTEGER,    diffServAlgDropNext             RowPointer,    diffServAlgDropQMeasure         RowPointer,    diffServAlgDropQThreshold       Unsigned32,    diffServAlgDropSpecific         RowPointer,    diffServAlgDropOctets           Counter64,    diffServAlgDropPkts             Counter64,    diffServAlgRandomDropOctets     Counter64,    diffServAlgRandomDropPkts       Counter64,    diffServAlgDropStorage          StorageType,    diffServAlgDropStatus           RowStatus}diffServAlgDropId OBJECT-TYPE    SYNTAX       IndexInteger    MAX-ACCESS   not-accessible    STATUS       current    DESCRIPTION       "An index that enumerates the Algorithmic Dropper entries.       Managers obtain new values for row creation in this table by       reading diffServAlgDropNextFree."    ::= { diffServAlgDropEntry 1 }diffServAlgDropType OBJECT-TYPE    SYNTAX       INTEGER {                     other(1),                     tailDrop(2),                     headDrop(3),                     randomDrop(4),                     alwaysDrop(5)}    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "The type of algorithm used by this dropper. The value other(1)       requires further specification in some other MIB module.       In the tailDrop(2) algorithm, diffServAlgDropQThreshold       represents the maximum depth of the queue, pointed to by       diffServAlgDropQMeasure, beyond which all newly arriving packets       will be dropped.       In the headDrop(3) algorithm, if a packet arrives when the       current depth of the queue, pointed to by       diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets       currently at the head of the queue are dropped to make room for       the new packet to be enqueued at the tail of the queue.       In the randomDrop(4) algorithm, on packet arrival, an Active       Queue Management algorithm is executed which may randomly drop a       packet. This algorithm may be proprietary, and it may drop either       the arriving packet or another packet in the queue.       diffServAlgDropSpecific points to a diffServRandomDropEntry that       describes the algorithm. For this algorithm,       diffServAlgDropQThreshold is understood to be the absolute       maximum size of the queue and additional parameters are described       in diffServRandomDropTable.       The alwaysDrop(5) algorithm is as its name specifies; always       drop. In this case, the other configuration values in this Entry       are not meaningful; There is no useful 'next' processing step,       there is no queue, and parameters describing the queue are not       useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,       and diffServAlgDropSpecific are all zeroDotZero."    ::= { diffServAlgDropEntry 2 }diffServAlgDropNext OBJECT-TYPE    SYNTAX       RowPointer    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "This selects the next Differentiated Services Functional Data       Path Element to handle traffic for this data path. This       RowPointer should point to an instance of one of:         diffServClfrEntry         diffServMeterEntry         diffServActionEntry         diffServQEntry       A value of zeroDotZero in this attribute indicates no further       Differentiated Services treatment is performed on traffic of this       data path. The use of zeroDotZero is the normal usage for the       last functional data path element of the current data path.       When diffServAlgDropType is alwaysDrop(5), this object is       ignored.       Setting this to point to a target that does not exist results in       an inconsistentValue error.  If the row pointed to is removed or       becomes inactive by other means, the treatment is as if this       attribute contains a value of zeroDotZero."    ::= { diffServAlgDropEntry 3 }diffServAlgDropQMeasure OBJECT-TYPE    SYNTAX       RowPointer    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "Points to an entry in the diffServQTable to indicate the queue       that a drop algorithm is to monitor when deciding whether to drop       a packet. If the row pointed to does not exist, the algorithmic       dropper element is considered inactive.       Setting this to point to a target that does not exist results in       an inconsistentValue error.  If the row pointed to is removed or       becomes inactive by other means, the treatment is as if this       attribute contains a value of zeroDotZero."    ::= { diffServAlgDropEntry 4 }diffServAlgDropQThreshold OBJECT-TYPE    SYNTAX       Unsigned32  (1..4294967295)    UNITS        "Bytes"    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "A threshold on the depth in bytes of the queue being measured at       which a trigger is generated to the dropping algorithm, unless       diffServAlgDropType is alwaysDrop(5) where this object is       ignored.       For the tailDrop(2) or headDrop(3) algorithms, this represents       the depth of the queue, pointed to by diffServAlgDropQMeasure, at       which the drop action will take place. Other algorithms will need       to define their own semantics for this threshold."    ::= { diffServAlgDropEntry 5 }diffServAlgDropSpecific OBJECT-TYPE    SYNTAX       RowPointer    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "Points to a table entry that provides further detail regarding a       drop algorithm.       Entries with diffServAlgDropType equal to other(1) may have this       point to a table defined in another MIB module.       Entries with diffServAlgDropType equal to randomDrop(4) must have       this point to an entry in diffServRandomDropTable.       For all other algorithms specified in this MIB, this should take       the value zeroDotZero.       The diffServAlgDropType is authoritative for the type of the drop       algorithm and the specific parameters for the drop algorithm       needs to be evaluated based on the diffServAlgDropType.       Setting this to point to a target that does not exist results in       an inconsistentValue error.  If the row pointed to is removed or       becomes inactive by other means, the treatment is as if this       attribute contains a value of zeroDotZero."    ::= { diffServAlgDropEntry 6 }diffServAlgDropOctets OBJECT-TYPE    SYNTAX       Counter64    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "The number of octets that have been deterministically dropped by       this drop process.       Discontinuities in the value of this counter can occur at re-       initialization of the management system and at other times as       indicated by the value of ifCounterDiscontinuityTime on the       relevant interface."    ::= { diffServAlgDropEntry 7 }diffServAlgDropPkts OBJECT-TYPE    SYNTAX       Counter64    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "The number of packets that have been deterministically dropped       by this drop process.       Discontinuities in the value of this counter can occur at re-       initialization of the management system and at other times as       indicated by the value of ifCounterDiscontinuityTime on the       relevant interface."    ::= { diffServAlgDropEntry 8 }diffServAlgRandomDropOctets OBJECT-TYPE    SYNTAX       Counter64    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "The number of octets that have been randomly dropped by this       drop process.  This counter applies, therefore, only to random       droppers.       Discontinuities in the value of this counter can occur at re-       initialization of the management system and at other times as       indicated by the value of ifCounterDiscontinuityTime on the       relevant interface."    ::= { diffServAlgDropEntry 9 }diffServAlgRandomDropPkts OBJECT-TYPE    SYNTAX       Counter64    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "The number of packets that have been randomly dropped by this       drop process. This counter applies, therefore, only to random       droppers.       Discontinuities in the value of this counter can occur at re-       initialization of the management system and at other times as       indicated by the value of ifCounterDiscontinuityTime on the       relevant interface."    ::= { diffServAlgDropEntry 10 }diffServAlgDropStorage OBJECT-TYPE    SYNTAX       StorageType    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "The storage type for this conceptual row.  Conceptual rows       having the value 'permanent' need not allow write-access to any       columnar objects in the row."    DEFVAL { nonVolatile }    ::= { diffServAlgDropEntry 11 }diffServAlgDropStatus OBJECT-TYPE    SYNTAX       RowStatus    MAX-ACCESS   read-create    STATUS       current    DESCRIPTION       "The status of this conceptual row. All writable objects in this       row may be modified at any time. Setting this variable to       'destroy' when the MIB contains one or more RowPointers pointing       to it results in destruction being delayed until the row is no       longer used."    ::= { diffServAlgDropEntry 12 }---- Random Drop Table--diffServRandomDropNextFree OBJECT-TYPE    SYNTAX       IndexIntegerNextFree    MAX-ACCESS   read-only    STATUS       current    DESCRIPTION       "This object contains an unused value for diffServRandomDropId,       or a zero to indicate that none exist."    ::= { diffServAlgDrop 3 }diffServRandomDropTable OBJECT-TYPE    SYNTAX       SEQUENCE OF DiffServRandomDropEntry    MAX-ACCESS   not-accessible    STATUS       current    DESCRIPTION       "The random drop table contains entries describing a process that       drops packets randomly. Entries in this table are pointed to by       diffServAlgDropSpecific."    ::= { diffServAl

⌨️ 快捷键说明

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