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

📄 rfc2981.txt

📁 著名的RFC文档,其中有一些文档是已经翻译成中文的的.
💻 TXT
📖 第 1 页 / 共 5 页
字号:
        mteTriggerExistenceTest.  When an object appears, vanishes        or changes value, the trigger fires. If the object's        appearance caused the trigger firing, the object MUST        vanish before the trigger can be fired again for it, and        vice versa. If the trigger fired due to a change in the        object's value, it will be fired again on every successive        value change for that object.        For 'boolean', the specific test is as selected by        mteTriggerBooleanTest.  If the test result is true the trigger        fires.  The trigger will not fire again until the value has        become false and come back to true.        For 'threshold' the test works as described below forKavasseri & Stewart         Standards Track                    [Page 13]RFC 2981                       Event MIB                    October 2000        mteTriggerThresholdStartup, mteTriggerThresholdRising, and        mteTriggerThresholdFalling.        Note that combining 'boolean' and 'threshold' tests on the        same object may be somewhat redundant."    DEFVAL { { boolean } }    ::= { mteTriggerEntry 4 }mteTriggerSampleType OBJECT-TYPE    SYNTAX      INTEGER { absoluteValue(1), deltaValue(2) }    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The type of sampling to perform.        An 'absoluteValue' sample requires only a single sample to be        meaningful, and is exactly the value of the object at        mteTriggerValueID at the sample time.        A 'deltaValue' requires two samples to be meaningful and is        thus not available for testing until the second and subsequent        samples after the object at mteTriggerValueID is first found        to exist.  It is the difference between the two samples.  For        unsigned values it is always positive, based on unsigned        arithmetic.  For signed values it can be positive or negative.        For SNMP counters to be meaningful they should be sampled as a        'deltaValue'.        For 'deltaValue' mteTriggerDeltaTable contains further        parameters.        If only 'existence' is set in mteTriggerTest this object has        no meaning."    DEFVAL { absoluteValue }    ::= { mteTriggerEntry 5 }mteTriggerValueID OBJECT-TYPE    SYNTAX      OBJECT IDENTIFIER    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The object identifier of the MIB object to sample to see        if the trigger should fire.        This may be wildcarded by truncating all or part of the        instance portion, in which case the value is obtained        as if with a GetNext function, checking multiple valuesKavasseri & Stewart         Standards Track                    [Page 14]RFC 2981                       Event MIB                    October 2000        if they exist.  If such wildcarding is applied,        mteTriggerValueIDWildcard must be 'true' and if not it must        be 'false'.        Bad object identifiers or a mismatch between truncating the        identifier and the value of mteTriggerValueIDWildcard result        in operation as one would expect when providing the wrong        identifier to a Get or GetNext operation.  The Get will fail        or get the wrong object.  The GetNext will indeed get whatever        is next, proceeding until it runs past the initial part of the        identifier and perhaps many unintended objects for confusing        results.  If the value syntax of those objects is not usable,        that results in a 'badType' error that terminates the scan.        Each instance that fills the wildcard is independent of any        additional instances, that is, wildcarded objects operate        as if there were a separate table entry for each instance        that fills the wildcard without having to actually predict        all possible instances ahead of time."    DEFVAL { zeroDotZero }    ::= { mteTriggerEntry 6 }mteTriggerValueIDWildcard OBJECT-TYPE    SYNTAX      TruthValue    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "Control for whether mteTriggerValueID is to be treated as        fully-specified or wildcarded, with 'true' indicating wildcard."    DEFVAL { false }    ::= { mteTriggerEntry 7 }mteTriggerTargetTag OBJECT-TYPE    SYNTAX      SnmpTagValue    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The tag for the target(s) from which to obtain the condition        for a trigger check.        A length of 0 indicates the local system.  In this case,        access to the objects indicated by mteTriggerValueID is under        the security credentials of the requester that set        mteTriggerEntryStatus to 'active'.  Those credentials are the        input parameters for isAccessAllowed from the Architecture for        Describing SNMP Management Frameworks.        Otherwise access rights are checked according to the securityKavasseri & Stewart         Standards Track                    [Page 15]RFC 2981                       Event MIB                    October 2000        parameters resulting from the tag."    DEFVAL { ''H }    ::= { mteTriggerEntry 8 }mteTriggerContextName OBJECT-TYPE    SYNTAX      SnmpAdminString    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The management context from which to obtain mteTriggerValueID.        This may be wildcarded by leaving characters off the end.  For        example use 'Repeater' to wildcard to 'Repeater1',        'Repeater2', 'Repeater-999.87b', and so on.  To indicate such        wildcarding is intended, mteTriggerContextNameWildcard must        be 'true'.        Each instance that fills the wildcard is independent of any        additional instances, that is, wildcarded objects operate        as if there were a separate table entry for each instance        that fills the wildcard without having to actually predict        all possible instances ahead of time.        Operation of this feature assumes that the local system has a        list of available contexts against which to apply the        wildcard.  If the objects are being read from the local        system, this is clearly the system's own list of contexts.        For a remote system a local version of such a list is not        defined by any current standard and may not be available, so        this function MAY not be supported."    DEFVAL { ''H }    ::= { mteTriggerEntry 9 }mteTriggerContextNameWildcard OBJECT-TYPE    SYNTAX      TruthValue    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "Control for whether mteTriggerContextName is to be treated as        fully-specified or wildcarded, with 'true' indicating wildcard."    DEFVAL { false }    ::= { mteTriggerEntry 10 }mteTriggerFrequency OBJECT-TYPE    SYNTAX      Unsigned32    UNITS       "seconds"    MAX-ACCESS  read-create    STATUS      currentKavasseri & Stewart         Standards Track                    [Page 16]RFC 2981                       Event MIB                    October 2000    DESCRIPTION        "The number of seconds to wait between trigger samples.  To        encourage consistency in sampling, the interval is measured        from the beginning of one check to the beginning of the next        and the timer is restarted immediately when it expires, not        when the check completes.        If the next sample begins before the previous one completed the        system may either attempt to make the check or treat this as an        error condition with the error 'sampleOverrun'.        A frequency of 0 indicates instantaneous recognition of the        condition.  This is not possible in many cases, but may        be supported in cases where it makes sense and the system is        able to do so.  This feature allows the MIB to be used in        implementations where such interrupt-driven behavior is        possible and is not likely to be supported for all MIB objects        even then since such sampling generally has to be tightly        integrated into low-level code.        Systems that can support this SHOULD document those cases        where it can be used.  In cases where it can not, setting this        object to 0 should be disallowed."    DEFVAL { 600 }    ::= { mteTriggerEntry 11 }mteTriggerObjectsOwner OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "To go with mteTriggerObjects, the mteOwner of a group of        objects from mteObjectsTable."    DEFVAL { ''H }    ::= { mteTriggerEntry 12 }mteTriggerObjects OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The mteObjectsName of a group of objects from        mteObjectsTable.  These objects are to be added to any        Notification resulting from the firing of this trigger.        A list of objects may also be added based on the event or on        the value of mteTriggerTest.Kavasseri & Stewart         Standards Track                    [Page 17]RFC 2981                       Event MIB                    October 2000        A length of 0 indicates no additional objects."    DEFVAL { ''H }    ::= { mteTriggerEntry 13 }mteTriggerEnabled OBJECT-TYPE    SYNTAX      TruthValue    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "A control to allow a trigger to be configured but not used.        When the value is 'false' the trigger is not sampled."    DEFVAL { false }    ::= { mteTriggerEntry 14 }mteTriggerEntryStatus OBJECT-TYPE    SYNTAX      RowStatus    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The control that allows creation and deletion of entries.        Once made active an entry may not be modified except to        delete it."    ::= { mteTriggerEntry 15 }---- Trigger Delta Table--mteTriggerDeltaTable OBJECT-TYPE    SYNTAX      SEQUENCE OF MteTriggerDeltaEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table of management event trigger information for delta        sampling."    ::= { mteTrigger 3 }mteTriggerDeltaEntry OBJECT-TYPE    SYNTAX      MteTriggerDeltaEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "Information about a single trigger's delta sampling.  Entries        automatically exist in this this table for each mteTriggerEntry        that has mteTriggerSampleType set to 'deltaValue'."    INDEX       { mteOwner, IMPLIED mteTriggerName }    ::= { mteTriggerDeltaTable 1 }Kavasseri & Stewart         Standards Track                    [Page 18]RFC 2981                       Event MIB                    October 2000MteTriggerDeltaEntry ::= SEQUENCE {    mteTriggerDeltaDiscontinuityID                OBJECT IDENTIFIER,    mteTriggerDeltaDiscontinuityIDWildcard        TruthValue,    mteTriggerDeltaDiscontinuityIDType            INTEGER}sysUpTimeInstance OBJECT IDENTIFIER ::= { sysUpTime 0 }mteTriggerDeltaDiscontinuityID OBJECT-TYPE    SYNTAX      OBJECT IDENTIFIER    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The OBJECT IDENTIFIER (OID) of a TimeTicks, TimeStamp, or        DateAndTime object that indicates a discontinuity in the value        at mteTriggerValueID.        The OID may be for a leaf object (e.g. sysUpTime.0) or may        be wildcarded to match mteTriggerValueID.        This object supports normal checking for a discontinuity in a        counter.  Note that if this object does not point to sysUpTime        discontinuity checking MUST still check sysUpTime for an overall        discontinuity.        If the object identified is not accessible the sample attempt        is in error, with the error code as from an SNMP request.        Bad object identifiers or a mismatch between truncating the        identifier and the value of mteDeltaDiscontinuityIDWildcard        result in operation as one would expect when providing the        wrong identifier to a Get operation.  The Get will fail or get        the wrong object.  If the value syntax of those objects is not        usable, that results in an error that terminates the sample        with a 'badType' error code."    DEFVAL { sysUpTimeInstance }    ::= { mteTriggerDeltaEntry 1 }mteTriggerDeltaDiscontinuityIDWildcard OBJECT-TYPE     SYNTAX      TruthValue     MAX-ACCESS  read-write     STATUS      current     DESCRIPTION        "Control for whether mteTriggerDeltaDiscontinuityID is to be        treated as fully-specified or wildcarded, with 'true'        indicating wildcard. Note that the value of this object will        be the same as that of the corresponding instance of        mteTriggerValueIDWildcard when the correspondingKavasseri & Stewart         Standards Track                    [Page 19]RFC 2981                       Event MIB                    October 2000

⌨️ 快捷键说明

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