1   SNMP-MPD-MIB DEFINITIONS ::= BEGIN
2
3   IMPORTS
4       MODULE-COMPLIANCE, OBJECT-GROUP         FROM SNMPv2-CONF
5       MODULE-IDENTITY, OBJECT-TYPE,
6       snmpModules, Counter32                  FROM SNMPv2-SMI;
7
8   snmpMPDMIB MODULE-IDENTITY
9       LAST-UPDATED "9901190000Z"              -- 19 January 1999
10       ORGANIZATION "SNMPv3 Working Group"
11       CONTACT-INFO "WG-EMail:   snmpv3@tis.com
12                     Subscribe:  majordomo@tis.com
13                                 In message body:  subscribe snmpv3
14
15                     Chair:      Russ Mundy
16                                 TIS Labs at Network Associates
17                     postal:     3060 Washington Road
18                                 Glenwood, MD 21738
19                                 USA
20                     EMail:      mundy@tis.com
21                     phone:      +1 301-854-6889
22
23                     Co-editor:  Jeffrey Case
24                                 SNMP Research, Inc.
25                     postal:     3001 Kimberlin Heights Road
26                                 Knoxville, TN 37920-9716
27                                 USA
28                     EMail:      case@snmp.com
29                     phone:      +1 423-573-1434
30
31                     Co-editor   Dave Harrington
32                                 Cabletron Systems, Inc.
33                     postal:     Post Office Box 5005
34                                 MailStop: Durham
35                                 35 Industrial Way
36                                 Rochester, NH 03867-5005
37                                 USA
38                     EMail:      dbh@ctron.com
39                     phone:      +1 603-337-7357
40
41                     Co-editor:  Randy Presuhn
42                                 BMC Software, Inc.
43                     postal:     965 Stewart Drive
44                                 Sunnyvale, CA 94086
45                                 USA
46                     EMail:      randy_presuhn@bmc.com
47                     phone:      +1 408-616-3100
48
49                     Co-editor:  Bert Wijnen
50                                 IBM T. J. Watson Research
51                     postal:     Schagen 33
52                                 3461 GL Linschoten
53                                 Netherlands
54                     EMail:      wijnen@vnet.ibm.com
55                     phone:      +31 348-432-794
56
57                    "
58       DESCRIPTION  "The MIB for Message Processing and Dispatching"
59       REVISION     "9901190000Z"              -- 19 January 1999
60       DESCRIPTION  "Corrected co-editors' address information."
61       REVISION     "9709300000Z"              -- 30 September 1997
62       DESCRIPTION  "Original version, published as RFC 2272."
63       ::= { snmpModules 11 }
64
65   -- Administrative assignments ***************************************
66
67   snmpMPDAdmin           OBJECT IDENTIFIER ::= { snmpMPDMIB 1 }
68   snmpMPDMIBObjects      OBJECT IDENTIFIER ::= { snmpMPDMIB 2 }
69   snmpMPDMIBConformance  OBJECT IDENTIFIER ::= { snmpMPDMIB 3 }
70
71   -- Statistics for SNMP Messages *************************************
72
73   snmpMPDStats           OBJECT IDENTIFIER ::= { snmpMPDMIBObjects 1 }
74
75   snmpUnknownSecurityModels OBJECT-TYPE
76       SYNTAX       Counter32
77       MAX-ACCESS   read-only
78       STATUS       current
79       DESCRIPTION "The total number of packets received by the SNMP
80                    engine which were dropped because they referenced a
81                    securityModel that was not known to or supported by
82                    the SNMP engine.
83                   "
84       ::= { snmpMPDStats 1 }
85
86   snmpInvalidMsgs 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 there were invalid
92                    or inconsistent components in the SNMP message.
93                   "
94       ::= { snmpMPDStats 2 }
95
96   snmpUnknownPDUHandlers OBJECT-TYPE
97       SYNTAX       Counter32
98       MAX-ACCESS   read-only
99       STATUS       current
100       DESCRIPTION "The total number of packets received by the SNMP
101                    engine which were dropped because the PDU contained
102                    in the packet could not be passed to an application
103                    responsible for handling the pduType, e.g. no SNMP
104                    application had registered for the proper
105                    combination of the contextEngineID and the pduType.
106                   "
107       ::= { snmpMPDStats 3 }
108
109   -- Conformance information ******************************************
110
111   snmpMPDMIBCompliances OBJECT IDENTIFIER ::= {snmpMPDMIBConformance 1}
112   snmpMPDMIBGroups      OBJECT IDENTIFIER ::= {snmpMPDMIBConformance 2}
113
114   -- Compliance statements
115
116   snmpMPDCompliance MODULE-COMPLIANCE
117       STATUS       current
118       DESCRIPTION "The compliance statement for SNMP entities which
119                    implement the SNMP-MPD-MIB.
120                   "
121
122       MODULE    -- this module
123           MANDATORY-GROUPS { snmpMPDGroup }
124
125       ::= { snmpMPDMIBCompliances 1 }
126
127   snmpMPDGroup OBJECT-GROUP
128       OBJECTS {
129                 snmpUnknownSecurityModels,
130                 snmpInvalidMsgs,
131                 snmpUnknownPDUHandlers
132               }
133       STATUS       current
134       DESCRIPTION "A collection of objects providing for remote
135                    monitoring of the SNMP Message Processing and
136                    Dispatching process.
137                   "
138       ::= { snmpMPDMIBGroups 1 }
139
140   END
141