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

📄 rfc2981.txt

📁 著名的RFC文档,其中有一些文档是已经翻译成中文的的.
💻 TXT
📖 第 1 页 / 共 5 页
字号:
        mteTriggerSampleType is 'deltaValue'."    DEFVAL { false }    ::= { mteTriggerDeltaEntry 2 }mteTriggerDeltaDiscontinuityIDType OBJECT-TYPE    SYNTAX      INTEGER { timeTicks(1), timeStamp(2), dateAndTime(3) }    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The value 'timeTicks' indicates the        mteTriggerDeltaDiscontinuityID of this row is of syntax        TimeTicks.  The value 'timeStamp' indicates syntax TimeStamp.        The value 'dateAndTime' indicates syntax DateAndTime."    DEFVAL { timeTicks }    ::= { mteTriggerDeltaEntry 3 }---- Trigger Existence Table--mteTriggerExistenceTable OBJECT-TYPE    SYNTAX      SEQUENCE OF MteTriggerExistenceEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table of management event trigger information for existence        triggers."    ::= { mteTrigger 4 }mteTriggerExistenceEntry OBJECT-TYPE    SYNTAX      MteTriggerExistenceEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "Information about a single existence trigger.  Entries        automatically exist in this this table for each mteTriggerEntry        that has 'existence' set in mteTriggerTest."    INDEX       { mteOwner, IMPLIED mteTriggerName }    ::= { mteTriggerExistenceTable 1 }MteTriggerExistenceEntry ::= SEQUENCE {    mteTriggerExistenceTest              BITS,    mteTriggerExistenceStartup           BITS,    mteTriggerExistenceObjectsOwner      SnmpAdminString,    mteTriggerExistenceObjects           SnmpAdminString,    mteTriggerExistenceEventOwner        SnmpAdminString,    mteTriggerExistenceEvent             SnmpAdminString}Kavasseri & Stewart         Standards Track                    [Page 20]RFC 2981                       Event MIB                    October 2000mteTriggerExistenceTest OBJECT-TYPE    SYNTAX      BITS { present(0), absent(1), changed(2) }    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The type of existence test to perform.  The trigger fires        when the object at mteTriggerValueID is seen to go from        present to absent, from absent to present, or to have it's        value changed, depending on which tests are selected:        present(0) - when this test is selected, the trigger fires        when the mteTriggerValueID object goes from absent to present.        absent(1)  - when this test is selected, the trigger fires        when the mteTriggerValueID object goes from present to absent.        changed(2) - when this test is selected, the trigger fires        the mteTriggerValueID object value changes.        Once the trigger has fired for either presence or absence it        will not fire again for that state until the object has been        to the other state. "    DEFVAL { { present, absent } }    ::= { mteTriggerExistenceEntry 1 }mteTriggerExistenceStartup OBJECT-TYPE    SYNTAX      BITS { present(0), absent(1) }    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "Control for whether an event may be triggered when this entry        is first set to 'active' and the test specified by        mteTriggerExistenceTest is true.  Setting an option causes        that trigger to fire when its test is true."    DEFVAL { { present, absent } }    ::= { mteTriggerExistenceEntry 2 }mteTriggerExistenceObjectsOwner OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "To go with mteTriggerExistenceObjects, the mteOwner of a        group of objects from mteObjectsTable."    DEFVAL { ''H }    ::= { mteTriggerExistenceEntry 3 }mteTriggerExistenceObjects OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))Kavasseri & Stewart         Standards Track                    [Page 21]RFC 2981                       Event MIB                    October 2000    MAX-ACCESS  read-write    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 for        this test.        A list of objects may also be added based on the overall        trigger, the event or other settings in mteTriggerTest.        A length of 0 indicates no additional objects."    DEFVAL { ''H }    ::= { mteTriggerExistenceEntry 4 }mteTriggerExistenceEventOwner OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "To go with mteTriggerExistenceEvent, the mteOwner of an event        entry from the mteEventTable."    DEFVAL { ''H }    ::= { mteTriggerExistenceEntry 5 }mteTriggerExistenceEvent OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The mteEventName of the event to invoke when mteTriggerType is        'existence' and this trigger fires.  A length of 0 indicates no        event."    DEFVAL { ''H }    ::= { mteTriggerExistenceEntry 6 }---- Trigger Boolean Table--mteTriggerBooleanTable OBJECT-TYPE    SYNTAX      SEQUENCE OF MteTriggerBooleanEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table of management event trigger information for boolean        triggers."    ::= { mteTrigger 5 }Kavasseri & Stewart         Standards Track                    [Page 22]RFC 2981                       Event MIB                    October 2000mteTriggerBooleanEntry OBJECT-TYPE    SYNTAX      MteTriggerBooleanEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "Information about a single boolean trigger.  Entries        automatically exist in this this table for each mteTriggerEntry        that has 'boolean' set in mteTriggerTest."    INDEX       { mteOwner, IMPLIED mteTriggerName }    ::= { mteTriggerBooleanTable 1 }MteTriggerBooleanEntry ::= SEQUENCE {    mteTriggerBooleanComparison          INTEGER,    mteTriggerBooleanValue               Integer32,    mteTriggerBooleanStartup             TruthValue,    mteTriggerBooleanObjectsOwner        SnmpAdminString,    mteTriggerBooleanObjects             SnmpAdminString,    mteTriggerBooleanEventOwner          SnmpAdminString,    mteTriggerBooleanEvent               SnmpAdminString}mteTriggerBooleanComparison OBJECT-TYPE    SYNTAX      INTEGER { unequal(1), equal(2),                 less(3), lessOrEqual(4),                 greater(5), greaterOrEqual(6) }    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The type of boolean comparison to perform.        The value at mteTriggerValueID is compared to        mteTriggerBooleanValue, so for example if        mteTriggerBooleanComparison is 'less' the result would be true        if the value at mteTriggerValueID is less than the value of        mteTriggerBooleanValue."    DEFVAL { unequal }    ::= { mteTriggerBooleanEntry 1 }mteTriggerBooleanValue OBJECT-TYPE    SYNTAX      Integer32    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The value to use for the test specified by        mteTriggerBooleanTest."    DEFVAL { 0 }    ::= { mteTriggerBooleanEntry 2 }Kavasseri & Stewart         Standards Track                    [Page 23]RFC 2981                       Event MIB                    October 2000mteTriggerBooleanStartup OBJECT-TYPE    SYNTAX      TruthValue    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "Control for whether an event may be triggered when this entry        is first set to 'active' or a new instance of the object at        mteTriggerValueID is found and the test specified by        mteTriggerBooleanComparison is true.  In that case an event is        triggered if mteTriggerBooleanStartup is 'true'."    DEFVAL { true }    ::= { mteTriggerBooleanEntry 3 }mteTriggerBooleanObjectsOwner OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "To go with mteTriggerBooleanObjects, the mteOwner of a group        of objects from mteObjectsTable."    DEFVAL { ''H }    ::= { mteTriggerBooleanEntry 4 }mteTriggerBooleanObjects OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-write    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 for        this test.        A list of objects may also be added based on the overall        trigger, the event or other settings in mteTriggerTest.        A length of 0 indicates no additional objects."    DEFVAL { ''H }    ::= { mteTriggerBooleanEntry 5 }mteTriggerBooleanEventOwner OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "To go with mteTriggerBooleanEvent, the mteOwner of an event        entry from mteEventTable."    DEFVAL { ''H }Kavasseri & Stewart         Standards Track                    [Page 24]RFC 2981                       Event MIB                    October 2000    ::= { mteTriggerBooleanEntry 6 }mteTriggerBooleanEvent OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (0..32))    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The mteEventName of the event to invoke when mteTriggerType is        'boolean' and this trigger fires.  A length of 0 indicates no        event."    DEFVAL { ''H }    ::= { mteTriggerBooleanEntry 7 }---- Trigger Threshold Table--mteTriggerThresholdTable OBJECT-TYPE    SYNTAX      SEQUENCE OF MteTriggerThresholdEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table of management event trigger information for threshold        triggers."    ::= { mteTrigger 6 }mteTriggerThresholdEntry OBJECT-TYPE    SYNTAX      MteTriggerThresholdEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "Information about a single threshold trigger.  Entries        automatically exist in this table for each mteTriggerEntry        that has 'threshold' set in mteTriggerTest."    INDEX       { mteOwner, IMPLIED mteTriggerName }    ::= { mteTriggerThresholdTable 1 }MteTriggerThresholdEntry ::= SEQUENCE {    mteTriggerThresholdStartup                  INTEGER,    mteTriggerThresholdRising                   Integer32,    mteTriggerThresholdFalling                  Integer32,    mteTriggerThresholdDeltaRising              Integer32,    mteTriggerThresholdDeltaFalling             Integer32,    mteTriggerThresholdObjectsOwner             SnmpAdminString,    mteTriggerThresholdObjects                  SnmpAdminString,    mteTriggerThresholdRisingEventOwner         SnmpAdminString,    mteTriggerThresholdRisingEvent              SnmpAdminString,    mteTriggerThresholdFallingEventOwner        SnmpAdminString,Kavasseri & Stewart         Standards Track                    [Page 25]RFC 2981                       Event MIB                    October 2000    mteTriggerThresholdFallingEvent             SnmpAdminString,    mteTriggerThresholdDeltaRisingEventOwner    SnmpAdminString,    mteTriggerThresholdDeltaRisingEvent         SnmpAdminString,    mteTriggerThresholdDeltaFallingEventOwner   SnmpAdminString,    mteTriggerThresholdDeltaFallingEvent        SnmpAdminString}mteTriggerThresholdStartup OBJECT-TYPE    SYNTAX      INTEGER { rising(1), falling(2), risingOrFalling(3) }    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The event that may be triggered when this entry is first        set to 'active' and a new instance of the object at        mteTriggerValueID is found.  If the first sample after this        instance becomes active is greater than or equal to        mteTriggerThresholdRising and mteTriggerThresholdStartup is        equal to 'rising' or 'risingOrFalling', then one

⌨️ 快捷键说明

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