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

📄 rfc2981.txt

📁 著名的RFC文档,其中有一些文档是已经翻译成中文的的.
💻 TXT
📖 第 1 页 / 共 5 页
字号:
   violate security.   To facilitate the provisioning of access control by a security   administrator for this MIB itself using the View-Based Access Control   Model (VACM) defined in RFC 2275 [RFC2575] for tables in which   multiple users may need to independently create or modify entries,   the initial index is used as an "owner index".  Such an initial index   has a syntax of SnmpAdminString, and can thus be trivially mapped to   a securityName or groupName as defined in VACM, in accordance with a   security policy.   If a security administrator were to employ such an approach, all   entries in related tables belonging to a particular user will have   the same value for this initial index.  For a given user's entries in   a particular table, the object identifiers for the information in   these entries will have the same sub-identifiers (except for the   "column" sub-identifier) up to the end of the encoded owner index.   To configure VACM to permit access to this portion of the table, one   would create vacmViewTreeFamilyTable entries with the value of   vacmViewTreeFamilySubtree including the owner index portion, and   vacmViewTreeFamilyMask "wildcarding" the column sub-identifier.  More   elaborate configurations are possible.7.  DefinitionsDISMAN-EVENT-MIB DEFINITIONS ::= BEGINIMPORTS    MODULE-IDENTITY, OBJECT-TYPE,    Integer32, Unsigned32,    NOTIFICATION-TYPE, Counter32,    Gauge32, mib-2, zeroDotZero         FROM SNMPv2-SMI    TEXTUAL-CONVENTION, RowStatus,    TruthValue                FROM SNMPv2-TCKavasseri & Stewart         Standards Track                     [Page 7]RFC 2981                       Event MIB                    October 2000    MODULE-COMPLIANCE, OBJECT-GROUP,    NOTIFICATION-GROUP             FROM SNMPv2-CONF    sysUpTime                 FROM SNMPv2-MIB    SnmpTagValue              FROM SNMP-TARGET-MIB    SnmpAdminString           FROM SNMP-FRAMEWORK-MIB;dismanEventMIB MODULE-IDENTITY    LAST-UPDATED "200010160000Z"            -- 16 October 2000    ORGANIZATION "IETF Distributed Management Working Group"    CONTACT-INFO "Ramanathan Kavasseri                  Cisco Systems, Inc.                  170 West Tasman Drive,                  San Jose CA 95134-1706.                  Phone: +1 408 526 4527                  Email: ramk@cisco.com"    DESCRIPTION     "The MIB module for defining event triggers and actions     for network management purposes."-- Revision History       REVISION     "200010160000Z"            -- 16 October 2000       DESCRIPTION  "This is the initial version of this MIB.                    Published as RFC 2981"    ::= { mib-2 88 }dismanEventMIBObjects OBJECT IDENTIFIER ::= { dismanEventMIB 1 }-- Management Triggered Event (MTE) objectsmteResource           OBJECT IDENTIFIER ::= { dismanEventMIBObjects 1 }mteTrigger            OBJECT IDENTIFIER ::= { dismanEventMIBObjects 2 }mteObjects            OBJECT IDENTIFIER ::= { dismanEventMIBObjects 3 }mteEvent              OBJECT IDENTIFIER ::= { dismanEventMIBObjects 4 }---- Textual Conventions--FailureReason ::= TEXTUAL-CONVENTION    STATUS      current    DESCRIPTION        "Reasons for failures in an attempt to perform a management        request.        The first group of errors, numbered less than 0, are related        to problems in sending the request.  The existence of a        particular error code here does not imply that all        implementations are capable of sensing that error andKavasseri & Stewart         Standards Track                     [Page 8]RFC 2981                       Event MIB                    October 2000        returning that code.        The second group, numbered greater than 0, are copied        directly from SNMP protocol operations and are intended to        carry exactly the meanings defined for the protocol as returned        in an SNMP response.        localResourceLack       some local resource such as memory                                lacking or                                mteResourceSampleInstanceMaximum                                exceeded        badDestination          unrecognized domain name or otherwise                                invalid destination address        destinationUnreachable  can't get to destination address        noResponse              no response to SNMP request        badType                 the data syntax of a retrieved object                                as not as expected        sampleOverrun           another sample attempt occurred before                                the previous one completed"    SYNTAX      INTEGER { localResourceLack(-1),                          badDestination(-2),                          destinationUnreachable(-3),                          noResponse(-4),                          badType(-5),                          sampleOverrun(-6),                          noError(0),                          tooBig(1),                          noSuchName(2),                          badValue(3),                          readOnly(4),                          genErr(5),                          noAccess(6),                          wrongType(7),                          wrongLength(8),                          wrongEncoding(9),                          wrongValue(10),                          noCreation(11),                          inconsistentValue(12),                          resourceUnavailable(13),                          commitFailed(14),                          undoFailed(15),                          authorizationError(16),                          notWritable(17),                          inconsistentName(18) }--Kavasseri & Stewart         Standards Track                     [Page 9]RFC 2981                       Event MIB                    October 2000-- Resource Control Section--mteResourceSampleMinimum OBJECT-TYPE    SYNTAX      Integer32 (1..2147483647)    UNITS       "seconds"    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The minimum mteTriggerFrequency this system will        accept.  A system may use the larger values of this minimum to        lessen the impact of constant sampling.  For larger        sampling intervals the system samples less often and        suffers less overhead.  This object provides a way to enforce        such lower overhead for all triggers created after it is        set.        Unless explicitly resource limited, a system's value for        this object SHOULD be 1, allowing as small as a 1 second        interval for ongoing trigger sampling.        Changing this value will not invalidate an existing setting        of mteTriggerFrequency."    ::= { mteResource 1 }mteResourceSampleInstanceMaximum OBJECT-TYPE    SYNTAX      Unsigned32    UNITS       "instances"    MAX-ACCESS  read-write    STATUS      current    DESCRIPTION        "The maximum number of instance entries this system will        support for sampling.        These are the entries that maintain state, one for each        instance of each sampled object as selected by        mteTriggerValueID.  Note that wildcarded objects result        in multiple instances of this state.        A value of 0 indicates no preset limit, that is, the limit        is dynamic based on system operation and resources.        Unless explicitly resource limited, a system's value for        this object SHOULD be 0.        Changing this value will not eliminate or inhibit existing        sample state but could prevent allocation of additional state        information."Kavasseri & Stewart         Standards Track                    [Page 10]RFC 2981                       Event MIB                    October 2000    ::= { mteResource 2 }mteResourceSampleInstances OBJECT-TYPE    SYNTAX      Gauge32    UNITS       "instances"    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of currently active instance entries as        defined for mteResourceSampleInstanceMaximum."    ::= { mteResource 3 }mteResourceSampleInstancesHigh OBJECT-TYPE    SYNTAX      Gauge32    UNITS       "instances"    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The highest value of mteResourceSampleInstances that has        occurred since initialization of the management system."    ::= { mteResource 4 }mteResourceSampleInstanceLacks OBJECT-TYPE    SYNTAX      Counter32    UNITS       "instances"    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of times this system could not take a new sample        because that allocation would have exceeded the limit set by        mteResourceSampleInstanceMaximum."    ::= { mteResource 5 }---- Trigger Section---- CountersmteTriggerFailures OBJECT-TYPE    SYNTAX      Counter32    UNITS       "failures"    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of times an attempt to check for a trigger        condition has failed.  This counts individually for each        attempt in a group of targets or each attempt for aKavasseri & Stewart         Standards Track                    [Page 11]RFC 2981                       Event MIB                    October 2000        wildcarded object."    ::= { mteTrigger 1 }---- Trigger Table--mteTriggerTable OBJECT-TYPE    SYNTAX      SEQUENCE OF MteTriggerEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A table of management event trigger information."    ::= { mteTrigger 2 }mteTriggerEntry OBJECT-TYPE    SYNTAX      MteTriggerEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "Information about a single trigger.  Applications create and        delete entries using mteTriggerEntryStatus."    INDEX       { mteOwner, IMPLIED mteTriggerName }    ::= { mteTriggerTable 1 }MteTriggerEntry ::= SEQUENCE {    mteOwner                            SnmpAdminString,    mteTriggerName                      SnmpAdminString,    mteTriggerComment                   SnmpAdminString,    mteTriggerTest                      BITS,    mteTriggerSampleType                INTEGER,    mteTriggerValueID                   OBJECT IDENTIFIER,    mteTriggerValueIDWildcard           TruthValue,    mteTriggerTargetTag                 SnmpTagValue,    mteTriggerContextName               SnmpAdminString,    mteTriggerContextNameWildcard       TruthValue,    mteTriggerFrequency                 Unsigned32,    mteTriggerObjectsOwner              SnmpAdminString,    mteTriggerObjects                   SnmpAdminString,    mteTriggerEnabled                   TruthValue,    mteTriggerEntryStatus               RowStatus}mteOwner OBJECT-TYPE   SYNTAX      SnmpAdminString (SIZE(0..32))   MAX-ACCESS  not-accessible   STATUS      current   DESCRIPTIONKavasseri & Stewart         Standards Track                    [Page 12]RFC 2981                       Event MIB                    October 2000        "The owner of this entry. The exact semantics of this        string are subject to the security policy defined by the        security administrator."    ::= { mteTriggerEntry 1 }mteTriggerName OBJECT-TYPE    SYNTAX      SnmpAdminString (SIZE (1..32))    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A locally-unique, administratively assigned name for the        trigger within the scope of mteOwner."    ::= { mteTriggerEntry 2 }mteTriggerComment OBJECT-TYPE    SYNTAX      SnmpAdminString    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "A description of the trigger's function and use."    DEFVAL { ''H }    ::= { mteTriggerEntry 3 }mteTriggerTest OBJECT-TYPE    SYNTAX      BITS { existence(0), boolean(1), threshold(2) }    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The type of trigger test to perform.  For 'boolean' and        'threshold'  tests, the object at mteTriggerValueID MUST        evaluate to an integer, that is, anything that ends up encoded        for transmission (that is, in BER, not ASN.1) as an integer.        For 'existence', the specific test is as selected by

⌨️ 快捷键说明

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