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