1-- *********************************************************************
2-- CISCO-NETINT-MIB.my: Network Interrupt MIB
3--
4-- July 2005, Edward Pham
5--
6-- Copyright (c) 2005 by Cisco Systems, Inc.
7-- All rights reserved.
8-- *********************************************************************
9CISCO-NETINT-MIB DEFINITIONS ::= BEGIN
10
11IMPORTS
12     MODULE-IDENTITY,
13     OBJECT-TYPE,
14     Counter32
15                FROM SNMPv2-SMI
16     MODULE-COMPLIANCE,
17     OBJECT-GROUP
18                FROM SNMPv2-CONF
19     ciscoMgmt
20                FROM CISCO-SMI
21     entPhysicalIndex
22                FROM ENTITY-MIB;
23
24ciscoNetintMIB MODULE-IDENTITY
25        LAST-UPDATED        "200509260000Z"
26        ORGANIZATION        "Cisco Systems, Inc."
27        CONTACT-INFO
28                "       Cisco Systems
29                        Customer Service
30
31                Postal: 170 W Tasman Drive
32                        San Jose, CA  95134
33                        USA
34
35                   Tel: +1 800 553-NETS
36
37                E-mail: cs-lan-switch-snmp@cisco.com"
38        DESCRIPTION
39            "This MIB module is for Network Interrupt information
40             on Cisco device."
41        REVISION        "200509260000Z"
42        DESCRIPTION
43                "Initial version of this MIB module."
44        ::= { ciscoMgmt 490 }
45
46
47ciscoNetintMIBNotifs      OBJECT IDENTIFIER ::=
48                                          { ciscoNetintMIB 0 }
49ciscoNetintMIBObjects     OBJECT IDENTIFIER ::=
50                                          { ciscoNetintMIB 1 }
51ciscoNetintMIBConformance OBJECT IDENTIFIER ::=
52                                          { ciscoNetintMIB 2 }
53
54cniThrottle               OBJECT IDENTIFIER ::=
55                                          { ciscoNetintMIBObjects 1 }
56
57-- Network Interrupt Throttle Table
58
59cniThrottleTable OBJECT-TYPE
60        SYNTAX     SEQUENCE OF CniThrottleEntry
61        MAX-ACCESS not-accessible
62        STATUS     current
63        DESCRIPTION
64            "This table provides the network interrupt throttle
65            counter information. An entry in this table is populated
66            for each physical entity in the managed system capable
67            of providing this information."
68        ::= { cniThrottle 1 }
69
70cniThrottleEntry OBJECT-TYPE
71        SYNTAX     CniThrottleEntry
72        MAX-ACCESS not-accessible
73        STATUS     current
74        DESCRIPTION
75            "An entry containing information about network interrupt
76            throttle counter."
77        INDEX { entPhysicalIndex }
78        ::= { cniThrottleTable 1 }
79
80CniThrottleEntry ::= SEQUENCE {
81        cniThrottleCount      Counter32
82}
83
84cniThrottleCount   OBJECT-TYPE
85        SYNTAX     Counter32
86        MAX-ACCESS read-only
87        STATUS     current
88        DESCRIPTION
89            "This object indicates the number of times network
90            interrupt throttle has become active."
91    ::= { cniThrottleEntry 1 }
92
93-- Notifications
94
95-- Conformance
96
97ciscoNetintMIBCompliances OBJECT IDENTIFIER
98                                  ::= { ciscoNetintMIBConformance 1 }
99ciscoNetintMIBGroups      OBJECT IDENTIFIER
100                                  ::= { ciscoNetintMIBConformance 2 }
101
102ciscoNetintMIBCompliance MODULE-COMPLIANCE
103        STATUS current
104        DESCRIPTION
105                "The compliance statement for entities which implement
106                the Cisco Netint MIB."
107        MODULE        -- this module
108                MANDATORY-GROUPS {
109                        ciscoThrottleGroup
110                }
111        ::= { ciscoNetintMIBCompliances 1 }
112
113-- Units of Conformance
114
115ciscoThrottleGroup OBJECT-GROUP
116        OBJECTS {
117                cniThrottleCount
118        }
119        STATUS current
120        DESCRIPTION
121            "A collection of object providing network interrupt throttle
122             count."
123        ::= { ciscoNetintMIBGroups 1 }
124END
125