SNMP-MPD-MIB.txt
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:5k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. SNMP-MPD-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3.     MODULE-COMPLIANCE, OBJECT-GROUP         FROM SNMPv2-CONF
  4.     MODULE-IDENTITY, OBJECT-TYPE,
  5.     snmpModules, Counter32                  FROM SNMPv2-SMI;
  6. snmpMPDMIB MODULE-IDENTITY
  7.     LAST-UPDATED "200210140000Z"
  8.     ORGANIZATION "SNMPv3 Working Group"
  9.     CONTACT-INFO "WG-EMail:   snmpv3@lists.tislabs.com
  10.                   Subscribe:  snmpv3-request@lists.tislabs.com
  11.                   Co-Chair:   Russ Mundy
  12.                               Network Associates Laboratories
  13.                   postal:     15204 Omega Drive, Suite 300
  14.                               Rockville, MD 20850-4601
  15.                               USA
  16.                   EMail:      mundy@tislabs.com
  17.                   phone:      +1 301-947-7107
  18.                   Co-Chair &
  19.                   Co-editor:  David Harrington
  20.                               Enterasys Networks
  21.                   postal:     35 Industrial Way
  22.                               P. O. Box 5005
  23.                               Rochester NH 03866-5005
  24.                               USA
  25.                   EMail:      dbh@enterasys.com
  26.                   phone:      +1 603-337-2614
  27.                   Co-editor:  Jeffrey Case
  28.                               SNMP Research, Inc.
  29.                   postal:     3001 Kimberlin Heights Road
  30.                               Knoxville, TN 37920-9716
  31.                               USA
  32.                   EMail:      case@snmp.com
  33.                   phone:      +1 423-573-1434
  34.                   Co-editor:  Randy Presuhn
  35.                               BMC Software, Inc.
  36.                   postal:     2141 North First Street
  37.                               San Jose, CA 95131
  38.                               USA
  39.                   EMail:      randy_presuhn@bmc.com
  40.                   phone:      +1 408-546-1006
  41.                   Co-editor:  Bert Wijnen
  42.                               Lucent Technologies
  43.                   postal:     Schagen 33
  44.                               3461 GL Linschoten
  45.                               Netherlands
  46.                   EMail:      bwijnen@lucent.com
  47.                   phone:      +31 348-680-485
  48.                  "
  49.     DESCRIPTION  "The MIB for Message Processing and Dispatching
  50.                   Copyright (C) The Internet Society (2002). This
  51.                   version of this MIB module is part of RFC 3412;
  52.                   see the RFC itself for full legal notices.
  53.                  "
  54.     REVISION     "200210140000Z"            -- 14 October 2002
  55.     DESCRIPTION  "Updated addresses, published as RFC 3412."
  56.     REVISION     "199905041636Z"            -- 4 May 1999
  57.     DESCRIPTION  "Updated addresses, published as RFC 2572."
  58.     REVISION     "199709300000Z"            -- 30 September 1997
  59.     DESCRIPTION  "Original version, published as RFC 2272."
  60.     ::= { snmpModules 11 }
  61. -- Administrative assignments ***************************************
  62. snmpMPDAdmin           OBJECT IDENTIFIER ::= { snmpMPDMIB 1 }
  63. snmpMPDMIBObjects      OBJECT IDENTIFIER ::= { snmpMPDMIB 2 }
  64. snmpMPDMIBConformance  OBJECT IDENTIFIER ::= { snmpMPDMIB 3 }
  65. -- Statistics for SNMP Messages *************************************
  66. snmpMPDStats           OBJECT IDENTIFIER ::= { snmpMPDMIBObjects 1 }
  67. snmpUnknownSecurityModels OBJECT-TYPE
  68.     SYNTAX       Counter32
  69.     MAX-ACCESS   read-only
  70.     STATUS       current
  71.     DESCRIPTION "The total number of packets received by the SNMP
  72.                  engine which were dropped because they referenced a
  73.                  securityModel that was not known to or supported by
  74.                  the SNMP engine.
  75.                 "
  76.     ::= { snmpMPDStats 1 }
  77. snmpInvalidMsgs OBJECT-TYPE
  78.     SYNTAX       Counter32
  79.     MAX-ACCESS   read-only
  80.     STATUS       current
  81.     DESCRIPTION "The total number of packets received by the SNMP
  82.                  engine which were dropped because there were invalid
  83.                  or inconsistent components in the SNMP message.
  84.                 "
  85.     ::= { snmpMPDStats 2 }
  86. snmpUnknownPDUHandlers OBJECT-TYPE
  87.     SYNTAX       Counter32
  88.     MAX-ACCESS   read-only
  89.     STATUS       current
  90.     DESCRIPTION "The total number of packets received by the SNMP
  91.                  engine which were dropped because the PDU contained
  92.                  in the packet could not be passed to an application
  93.                  responsible for handling the pduType, e.g. no SNMP
  94.                  application had registered for the proper
  95.                  combination of the contextEngineID and the pduType.
  96.                 "
  97.     ::= { snmpMPDStats 3 }
  98. -- Conformance information ******************************************
  99. snmpMPDMIBCompliances OBJECT IDENTIFIER ::= {snmpMPDMIBConformance 1}
  100. snmpMPDMIBGroups      OBJECT IDENTIFIER ::= {snmpMPDMIBConformance 2}
  101. -- Compliance statements
  102. snmpMPDCompliance MODULE-COMPLIANCE
  103.     STATUS       current
  104.     DESCRIPTION "The compliance statement for SNMP entities which
  105.                  implement the SNMP-MPD-MIB.
  106.                 "
  107.     MODULE    -- this module
  108.         MANDATORY-GROUPS { snmpMPDGroup }
  109.     ::= { snmpMPDMIBCompliances 1 }
  110. snmpMPDGroup OBJECT-GROUP
  111.     OBJECTS {
  112.               snmpUnknownSecurityModels,
  113.               snmpInvalidMsgs,
  114.               snmpUnknownPDUHandlers
  115.             }
  116.     STATUS       current
  117.     DESCRIPTION "A collection of objects providing for remote
  118.                  monitoring of the SNMP Message Processing and
  119.                  Dispatching process.
  120.                 "
  121.     ::= { snmpMPDMIBGroups 1 }
  122. END