Blame mibs/ietf/SNMP-COMMUNITY-MIB

Packit Service 9ccfef
SNMP-COMMUNITY-MIB DEFINITIONS ::= BEGIN
Packit Service 9ccfef
Packit Service 9ccfef
IMPORTS
Packit Service 9ccfef
    IpAddress,
Packit Service 9ccfef
    MODULE-IDENTITY,
Packit Service 9ccfef
    OBJECT-TYPE,
Packit Service 9ccfef
    Integer32,
Packit Service 9ccfef
    snmpModules
Packit Service 9ccfef
        FROM SNMPv2-SMI
Packit Service 9ccfef
    RowStatus,
Packit Service 9ccfef
    StorageType
Packit Service 9ccfef
        FROM SNMPv2-TC
Packit Service 9ccfef
    SnmpAdminString,
Packit Service 9ccfef
    SnmpEngineID
Packit Service 9ccfef
        FROM SNMP-FRAMEWORK-MIB
Packit Service 9ccfef
    SnmpTagValue,
Packit Service 9ccfef
    snmpTargetAddrEntry
Packit Service 9ccfef
        FROM SNMP-TARGET-MIB
Packit Service 9ccfef
    MODULE-COMPLIANCE,
Packit Service 9ccfef
    OBJECT-GROUP
Packit Service 9ccfef
        FROM SNMPv2-CONF;
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityMIB MODULE-IDENTITY
Packit Service 9ccfef
    LAST-UPDATED "200003060000Z"          -- 6 Mar 2000, midnight
Packit Service 9ccfef
    ORGANIZATION "SNMPv3 Working Group"
Packit Service 9ccfef
    CONTACT-INFO "WG-email:   snmpv3@lists.tislabs.com
Packit Service 9ccfef
                  Subscribe:  majordomo@lists.tislabs.com
Packit Service 9ccfef
                              In msg body:  subscribe snmpv3
Packit Service 9ccfef
Packit Service 9ccfef
                  Chair:      Russ Mundy
Packit Service 9ccfef
                              TIS Labs at Network Associates
Packit Service 9ccfef
                  Postal:     3060 Washington Rd
Packit Service 9ccfef
                              Glenwood MD 21738
Packit Service 9ccfef
                              USA
Packit Service 9ccfef
                  Email:      mundy@tislabs.com
Packit Service 9ccfef
                  Phone:      +1-301-854-6889
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
                  Co-editor:  Rob Frye
Packit Service 9ccfef
                              CoSine Communications
Packit Service 9ccfef
                  Postal:     1200 Bridge Parkway
Packit Service 9ccfef
                              Redwood City, CA 94065
Packit Service 9ccfef
                              USA
Packit Service 9ccfef
                  E-mail:     rfrye@cosinecom.com
Packit Service 9ccfef
                  Phone:      +1 703 725 1130
Packit Service 9ccfef
Packit Service 9ccfef
                  Co-editor:  David B. Levi
Packit Service 9ccfef
                              Nortel Networks
Packit Service 9ccfef
                  Postal:     3505 Kesterwood Drive
Packit Service 9ccfef
                              Knoxville, TN 37918
Packit Service 9ccfef
                  E-mail:     dlevi@nortelnetworks.com
Packit Service 9ccfef
                  Phone:      +1 423 686 0432
Packit Service 9ccfef
Packit Service 9ccfef
                  Co-editor:  Shawn A. Routhier
Packit Service 9ccfef
                              Integrated Systems Inc.
Packit Service 9ccfef
                  Postal:     333 North Ave 4th Floor
Packit Service 9ccfef
                              Wakefield, MA 01880
Packit Service 9ccfef
                  E-mail:     sar@epilogue.com
Packit Service 9ccfef
                  Phone:      +1 781 245 0804
Packit Service 9ccfef
Packit Service 9ccfef
                  Co-editor:  Bert Wijnen
Packit Service 9ccfef
                              Lucent Technologies
Packit Service 9ccfef
                  Postal:     Schagen 33
Packit Service 9ccfef
                              3461 GL Linschoten
Packit Service 9ccfef
                              Netherlands
Packit Service 9ccfef
                  Email:      bwijnen@lucent.com
Packit Service 9ccfef
                  Phone:      +31-348-407-775
Packit Service 9ccfef
                 "
Packit Service 9ccfef
Packit Service 9ccfef
        DESCRIPTION
Packit Service 9ccfef
            "This MIB module defines objects to help support coexistence
Packit Service 9ccfef
             between SNMPv1, SNMPv2c, and SNMPv3."
Packit Service 9ccfef
        REVISION "200003060000Z" -- 6 Mar 2000
Packit Service 9ccfef
        DESCRIPTION "This version published as RFC 2576."
Packit Service 9ccfef
        REVISION "199905130000Z" -- 13 May 1999
Packit Service 9ccfef
        DESCRIPTION "The Initial Revision"
Packit Service 9ccfef
    ::= { snmpModules 18 }
Packit Service 9ccfef
Packit Service 9ccfef
-- Administrative assignments ****************************************
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityMIBObjects     OBJECT IDENTIFIER ::= { snmpCommunityMIB 1 }
Packit Service 9ccfef
snmpCommunityMIBConformance OBJECT IDENTIFIER ::= { snmpCommunityMIB 2 }
Packit Service 9ccfef
Packit Service 9ccfef
--
Packit Service 9ccfef
-- The snmpCommunityTable contains a database of community strings.
Packit Service 9ccfef
-- This table provides mappings between community strings, and the
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
-- parameters required for View-based Access Control.
Packit Service 9ccfef
--
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityTable OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SEQUENCE OF SnmpCommunityEntry
Packit Service 9ccfef
    MAX-ACCESS   not-accessible
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The table of community strings configured in the SNMP
Packit Service 9ccfef
         engine's Local Configuration Datastore (LCD)."
Packit Service 9ccfef
    ::= { snmpCommunityMIBObjects 1 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityEntry OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SnmpCommunityEntry
Packit Service 9ccfef
    MAX-ACCESS   not-accessible
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "Information about a particular community string."
Packit Service 9ccfef
    INDEX       { IMPLIED snmpCommunityIndex }
Packit Service 9ccfef
    ::= { snmpCommunityTable 1 }
Packit Service 9ccfef
Packit Service 9ccfef
SnmpCommunityEntry ::= SEQUENCE {
Packit Service 9ccfef
    snmpCommunityIndex               SnmpAdminString,
Packit Service 9ccfef
    snmpCommunityName                OCTET STRING,
Packit Service 9ccfef
    snmpCommunitySecurityName        SnmpAdminString,
Packit Service 9ccfef
    snmpCommunityContextEngineID     SnmpEngineID,
Packit Service 9ccfef
    snmpCommunityContextName         SnmpAdminString,
Packit Service 9ccfef
    snmpCommunityTransportTag        SnmpTagValue,
Packit Service 9ccfef
    snmpCommunityStorageType         StorageType,
Packit Service 9ccfef
    snmpCommunityStatus              RowStatus
Packit Service 9ccfef
}
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityIndex OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX      SnmpAdminString (SIZE(1..32))
Packit Service 9ccfef
    MAX-ACCESS  not-accessible
Packit Service 9ccfef
    STATUS      current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The unique index value of a row in this table."
Packit Service 9ccfef
    ::= { snmpCommunityEntry 1 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityName OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       OCTET STRING
Packit Service 9ccfef
    MAX-ACCESS   read-create
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The community string for which a row in this table
Packit Service 9ccfef
         represents a configuration."
Packit Service 9ccfef
    ::= { snmpCommunityEntry 2 }
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunitySecurityName OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SnmpAdminString (SIZE(1..32))
Packit Service 9ccfef
    MAX-ACCESS   read-create
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "A human readable string representing the corresponding
Packit Service 9ccfef
         value of snmpCommunityName in a Security Model
Packit Service 9ccfef
         independent format."
Packit Service 9ccfef
    ::= { snmpCommunityEntry 3 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityContextEngineID OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SnmpEngineID
Packit Service 9ccfef
    MAX-ACCESS   read-create
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The contextEngineID indicating the location of the
Packit Service 9ccfef
         context in which management information is accessed
Packit Service 9ccfef
         when using the community string specified by the
Packit Service 9ccfef
         corresponding instance of snmpCommunityName.
Packit Service 9ccfef
Packit Service 9ccfef
         The default value is the snmpEngineID of the entity in
Packit Service 9ccfef
         which this object is instantiated."
Packit Service 9ccfef
    ::= { snmpCommunityEntry 4 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityContextName OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SnmpAdminString (SIZE(0..32))
Packit Service 9ccfef
    MAX-ACCESS   read-create
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The context in which management information is accessed
Packit Service 9ccfef
         when using the community string specified by the corresponding
Packit Service 9ccfef
         instance of snmpCommunityName."
Packit Service 9ccfef
    DEFVAL      { ''H }   -- the empty string
Packit Service 9ccfef
    ::= { snmpCommunityEntry 5 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityTransportTag OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SnmpTagValue
Packit Service 9ccfef
    MAX-ACCESS   read-create
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "This object specifies a set of transport endpoints
Packit Service 9ccfef
         from which a command responder application will accept
Packit Service 9ccfef
         management requests.  If a management request containing
Packit Service 9ccfef
         this community is received on a transport endpoint other
Packit Service 9ccfef
         than the transport endpoints identified by this object,
Packit Service 9ccfef
         the request is deemed unauthentic.
Packit Service 9ccfef
Packit Service 9ccfef
         The transports identified by this object are specified
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
         in the snmpTargetAddrTable.  Entries in that table
Packit Service 9ccfef
         whose snmpTargetAddrTagList contains this tag value
Packit Service 9ccfef
         are identified.
Packit Service 9ccfef
Packit Service 9ccfef
         If the value of this object has zero-length, transport
Packit Service 9ccfef
         endpoints are not checked when authenticating messages
Packit Service 9ccfef
         containing this community string."
Packit Service 9ccfef
    DEFVAL      { ''H }   -- the empty string
Packit Service 9ccfef
    ::= { snmpCommunityEntry 6 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityStorageType OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       StorageType
Packit Service 9ccfef
    MAX-ACCESS   read-create
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The storage type for this conceptual row in the
Packit Service 9ccfef
         snmpCommunityTable.  Conceptual rows having the value
Packit Service 9ccfef
         'permanent' need not allow write-access to any
Packit Service 9ccfef
         columnar object in the row."
Packit Service 9ccfef
    ::= { snmpCommunityEntry 7 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityStatus OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       RowStatus
Packit Service 9ccfef
    MAX-ACCESS   read-create
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The status of this conceptual row in the snmpCommunityTable.
Packit Service 9ccfef
Packit Service 9ccfef
         An entry in this table is not qualified for activation
Packit Service 9ccfef
         until instances of all corresponding columns have been
Packit Service 9ccfef
         initialized, either through default values, or through
Packit Service 9ccfef
         Set operations.  The snmpCommunityName and
Packit Service 9ccfef
         snmpCommunitySecurityName objects must be explicitly set.
Packit Service 9ccfef
Packit Service 9ccfef
         There is no restriction on setting columns in this table
Packit Service 9ccfef
         when the value of snmpCommunityStatus is active(1)."
Packit Service 9ccfef
    ::= { snmpCommunityEntry 8 }
Packit Service 9ccfef
Packit Service 9ccfef
--
Packit Service 9ccfef
-- The snmpTargetAddrExtTable
Packit Service 9ccfef
--
Packit Service 9ccfef
Packit Service 9ccfef
snmpTargetAddrExtTable OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SEQUENCE OF SnmpTargetAddrExtEntry
Packit Service 9ccfef
    MAX-ACCESS   not-accessible
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The table of mask and mms values associated with the
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
         snmpTargetAddrTable.
Packit Service 9ccfef
Packit Service 9ccfef
         The snmpTargetAddrExtTable augments the
Packit Service 9ccfef
         snmpTargetAddrTable with a transport address mask value
Packit Service 9ccfef
         and a maximum message size value.  The transport address
Packit Service 9ccfef
         mask allows entries in the snmpTargetAddrTable to define
Packit Service 9ccfef
         a set of addresses instead of just a single address.
Packit Service 9ccfef
         The maximum message size value allows the maximum
Packit Service 9ccfef
         message size of another SNMP entity to be configured for
Packit Service 9ccfef
         use in SNMPv1 (and SNMPv2c) transactions, where the
Packit Service 9ccfef
         message format does not specify a maximum message size."
Packit Service 9ccfef
    ::= { snmpCommunityMIBObjects 2 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpTargetAddrExtEntry OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX       SnmpTargetAddrExtEntry
Packit Service 9ccfef
    MAX-ACCESS   not-accessible
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "Information about a particular mask and mms value."
Packit Service 9ccfef
    AUGMENTS       { snmpTargetAddrEntry }
Packit Service 9ccfef
    ::= { snmpTargetAddrExtTable 1 }
Packit Service 9ccfef
Packit Service 9ccfef
SnmpTargetAddrExtEntry ::= SEQUENCE {
Packit Service 9ccfef
    snmpTargetAddrTMask              OCTET STRING,
Packit Service 9ccfef
    snmpTargetAddrMMS                Integer32
Packit Service 9ccfef
}
Packit Service 9ccfef
Packit Service 9ccfef
snmpTargetAddrTMask OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX      OCTET STRING (SIZE (0..255))
Packit Service 9ccfef
    MAX-ACCESS  read-create
Packit Service 9ccfef
    STATUS      current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The mask value associated with an entry in the
Packit Service 9ccfef
         snmpTargetAddrTable.  The value of this object must
Packit Service 9ccfef
         have the same length as the corresponding instance of
Packit Service 9ccfef
         snmpTargetAddrTAddress, or must have length 0.  An
Packit Service 9ccfef
         attempt to set it to any other value will result in
Packit Service 9ccfef
         an inconsistentValue error.
Packit Service 9ccfef
Packit Service 9ccfef
         The value of this object allows an entry in the
Packit Service 9ccfef
         snmpTargetAddrTable to specify multiple addresses.
Packit Service 9ccfef
         The mask value is used to select which bits of
Packit Service 9ccfef
         a transport address must match bits of the corresponding
Packit Service 9ccfef
         instance of snmpTargetAddrTAddress, in order for the
Packit Service 9ccfef
         transport address to match a particular entry in the
Packit Service 9ccfef
         snmpTargetAddrTable.  Bits which are 1 in the mask
Packit Service 9ccfef
         value indicate bits in the transport address which
Packit Service 9ccfef
         must match bits in the snmpTargetAddrTAddress value.
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
         Bits which are 0 in the mask indicate bits in the
Packit Service 9ccfef
         transport address which need not match.  If the
Packit Service 9ccfef
         length of the mask is 0, the mask should be treated
Packit Service 9ccfef
         as if all its bits were 1 and its length were equal
Packit Service 9ccfef
         to the length of the corresponding value of
Packit Service 9ccfef
         snmpTargetAddrTable.
Packit Service 9ccfef
Packit Service 9ccfef
         This object may not be modified while the value of the
Packit Service 9ccfef
         corresponding instance of snmpTargetAddrRowStatus is
Packit Service 9ccfef
         active(1).  An attempt to set this object in this case
Packit Service 9ccfef
         will result in an inconsistentValue error."
Packit Service 9ccfef
    DEFVAL { ''H }
Packit Service 9ccfef
    ::= { snmpTargetAddrExtEntry 1 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpTargetAddrMMS OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX      Integer32 (0|484..2147483647)
Packit Service 9ccfef
    MAX-ACCESS  read-create
Packit Service 9ccfef
    STATUS      current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The maximum message size value associated with an entry
Packit Service 9ccfef
         in the snmpTargetAddrTable."
Packit Service 9ccfef
    DEFVAL { 484 }
Packit Service 9ccfef
    ::= { snmpTargetAddrExtEntry 2 }
Packit Service 9ccfef
Packit Service 9ccfef
--
Packit Service 9ccfef
-- The snmpTrapAddress and snmpTrapCommunity objects are included
Packit Service 9ccfef
-- in notifications that are forwarded by a proxy, which were
Packit Service 9ccfef
-- originally received as SNMPv1 Trap messages.
Packit Service 9ccfef
--
Packit Service 9ccfef
Packit Service 9ccfef
snmpTrapAddress OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX      IpAddress
Packit Service 9ccfef
    MAX-ACCESS  accessible-for-notify
Packit Service 9ccfef
    STATUS      current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The value of the agent-addr field of a Trap PDU which
Packit Service 9ccfef
         is forwarded by a proxy forwarder application using
Packit Service 9ccfef
         an SNMP version other than SNMPv1.  The value of this
Packit Service 9ccfef
         object SHOULD contain the value of the agent-addr field
Packit Service 9ccfef
         from the original Trap PDU as generated by an SNMPv1
Packit Service 9ccfef
         agent."
Packit Service 9ccfef
    ::= { snmpCommunityMIBObjects 3 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpTrapCommunity OBJECT-TYPE
Packit Service 9ccfef
    SYNTAX      OCTET STRING
Packit Service 9ccfef
    MAX-ACCESS  accessible-for-notify
Packit Service 9ccfef
    STATUS      current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
        "The value of the community string field of an SNMPv1
Packit Service 9ccfef
         message containing a Trap PDU which is forwarded by a
Packit Service 9ccfef
         a proxy forwarder application using an SNMP version
Packit Service 9ccfef
         other than SNMPv1.  The value of this object SHOULD
Packit Service 9ccfef
         contain the value of the community string field from
Packit Service 9ccfef
         the original SNMPv1 message containing a Trap PDU as
Packit Service 9ccfef
         generated by an SNMPv1 agent."
Packit Service 9ccfef
    ::= { snmpCommunityMIBObjects 4 }
Packit Service 9ccfef
Packit Service 9ccfef
-- Conformance Information *******************************************
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityMIBCompliances OBJECT IDENTIFIER
Packit Service 9ccfef
                            ::= { snmpCommunityMIBConformance 1 }
Packit Service 9ccfef
snmpCommunityMIBGroups      OBJECT IDENTIFIER
Packit Service 9ccfef
                            ::= { snmpCommunityMIBConformance 2 }
Packit Service 9ccfef
Packit Service 9ccfef
-- Compliance statements
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityMIBCompliance MODULE-COMPLIANCE
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The compliance statement for SNMP engines which
Packit Service 9ccfef
         implement the SNMP-COMMUNITY-MIB."
Packit Service 9ccfef
Packit Service 9ccfef
    MODULE       -- this module
Packit Service 9ccfef
        MANDATORY-GROUPS { snmpCommunityGroup }
Packit Service 9ccfef
Packit Service 9ccfef
        OBJECT           snmpCommunityName
Packit Service 9ccfef
        MIN-ACCESS       read-only
Packit Service 9ccfef
        DESCRIPTION     "Write access is not required."
Packit Service 9ccfef
Packit Service 9ccfef
        OBJECT           snmpCommunitySecurityName
Packit Service 9ccfef
        MIN-ACCESS       read-only
Packit Service 9ccfef
        DESCRIPTION     "Write access is not required."
Packit Service 9ccfef
Packit Service 9ccfef
        OBJECT           snmpCommunityContextEngineID
Packit Service 9ccfef
        MIN-ACCESS       read-only
Packit Service 9ccfef
        DESCRIPTION     "Write access is not required."
Packit Service 9ccfef
Packit Service 9ccfef
        OBJECT           snmpCommunityContextName
Packit Service 9ccfef
        MIN-ACCESS       read-only
Packit Service 9ccfef
        DESCRIPTION     "Write access is not required."
Packit Service 9ccfef
Packit Service 9ccfef
        OBJECT           snmpCommunityTransportTag
Packit Service 9ccfef
        MIN-ACCESS       read-only
Packit Service 9ccfef
        DESCRIPTION     "Write access is not required."
Packit Service 9ccfef
Packit Service 9ccfef
        OBJECT           snmpCommunityStorageType
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
        MIN-ACCESS       read-only
Packit Service 9ccfef
        DESCRIPTION     "Write access is not required."
Packit Service 9ccfef
Packit Service 9ccfef
        OBJECT           snmpCommunityStatus
Packit Service 9ccfef
        MIN-ACCESS       read-only
Packit Service 9ccfef
        DESCRIPTION     "Write access is not required."
Packit Service 9ccfef
Packit Service 9ccfef
    ::= { snmpCommunityMIBCompliances 1 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpProxyTrapForwardCompliance MODULE-COMPLIANCE
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "The compliance statement for SNMP engines which
Packit Service 9ccfef
         contain a proxy forwarding application which is
Packit Service 9ccfef
         capable of forwarding SNMPv1 traps using SNMPv2c
Packit Service 9ccfef
         or SNMPv3."
Packit Service 9ccfef
    MODULE       -- this module
Packit Service 9ccfef
        MANDATORY-GROUPS { snmpProxyTrapForwardGroup }
Packit Service 9ccfef
    ::= { snmpCommunityMIBCompliances 2 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpCommunityGroup OBJECT-GROUP
Packit Service 9ccfef
    OBJECTS {
Packit Service 9ccfef
        snmpCommunityName,
Packit Service 9ccfef
        snmpCommunitySecurityName,
Packit Service 9ccfef
        snmpCommunityContextEngineID,
Packit Service 9ccfef
        snmpCommunityContextName,
Packit Service 9ccfef
        snmpCommunityTransportTag,
Packit Service 9ccfef
        snmpCommunityStorageType,
Packit Service 9ccfef
        snmpCommunityStatus,
Packit Service 9ccfef
        snmpTargetAddrTMask,
Packit Service 9ccfef
        snmpTargetAddrMMS
Packit Service 9ccfef
    }
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "A collection of objects providing for configuration
Packit Service 9ccfef
         of community strings for SNMPv1 (and SNMPv2c) usage."
Packit Service 9ccfef
    ::= { snmpCommunityMIBGroups 1 }
Packit Service 9ccfef
Packit Service 9ccfef
snmpProxyTrapForwardGroup OBJECT-GROUP
Packit Service 9ccfef
    OBJECTS {
Packit Service 9ccfef
        snmpTrapAddress,
Packit Service 9ccfef
        snmpTrapCommunity
Packit Service 9ccfef
    }
Packit Service 9ccfef
    STATUS       current
Packit Service 9ccfef
    DESCRIPTION
Packit Service 9ccfef
        "Objects which are used by proxy forwarding applications
Packit Service 9ccfef
         when translating traps between SNMP versions.  These are
Packit Service 9ccfef
         used to preserve SNMPv1-specific information when
Packit Service 9ccfef
Packit Service 9ccfef
Packit Service 9ccfef
         translating to SNMPv2c or SNMPv3."
Packit Service 9ccfef
    ::= { snmpCommunityMIBGroups 3 }
Packit Service 9ccfef
Packit Service 9ccfef
END