-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-C12000-IF-HC-COUNTERS-MIB.mib
208 lines (180 loc) · 6.41 KB
/
CISCO-C12000-IF-HC-COUNTERS-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
-- *****************************************************************
-- CISCO-C12000-IF-HC-COUNTERS-MIB.my
--
-- May 1998, Anke Dosedal
--
-- Copyright (c) 1998 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
-- This mib was created to address the need to retrieve certain High
-- Capacity (ie 64 bit) counters for a special GSR branch of IOS
-- which does not support SNMPv2c. This mib will allow ifHCInOctets,
-- ifHCInUcastPkts, ifHCOutOctets, and ifHCOutUcastPkts to each be
-- be represented as two 32 bit objects. One object will represent
-- the upper 32 bits and the other the lower 32 bits. In order to
-- get a correct representation of the 64 bit number, the
-- corresponding 32 bit objects, upper and lower 32 bits, should be
-- requested in the same PDU. It is important to note that this mib
-- will ONLY be supported in the 11.2GS version of IOS and will NOT
-- be ported to any later version.
CISCO-C12000-IF-HC-COUNTERS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
ciscoExperiment
FROM CISCO-SMI
ifIndex
FROM IF-MIB;
ciscoC12000IfHcCountersMIB MODULE-IDENTITY
LAST-UPDATED "9805270000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-snmp@cisco.com"
DESCRIPTION
"A MIB module to describe and store IF-MIB High
Capacity (ie 64 bit) Counters as two 32 bit
objects. This mib will ONLY be supported in the
11.2GS version of IOS and will NOT be ported to
any later versions."
::= { ciscoExperiment 31 }
cHCCounterMIBObjects OBJECT IDENTIFIER ::= { ciscoC12000IfHcCountersMIB 1 }
cHCCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CHCCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the High Capacity Counter
information in the IF-MIB in two 32 bit fields."
::= { cHCCounterMIBObjects 1 }
cHCCounterEntry OBJECT-TYPE
SYNTAX CHCCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"High Capacity Counter information for each
interface in the IF-MIB."
INDEX { ifIndex }
::= { cHCCounterTable 1 }
CHCCounterEntry ::=
SEQUENCE {
cHCCounterIfInOctetsUpper Counter32,
cHCCounterIfInOctetsLower Counter32,
cHCCounterIfInUcastPktsUpper Counter32,
cHCCounterIfInUcastPktsLower Counter32,
cHCCounterIfOutOctetsUpper Counter32,
cHCCounterIfOutOctetsLower Counter32,
cHCCounterIfOutUcastPktsUpper Counter32,
cHCCounterIfOutUcastPktsLower Counter32
}
cHCCounterIfInOctetsUpper OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of ifHCInOctets as described in the
IF-MIB."
::= { cHCCounterEntry 1 }
cHCCounterIfInOctetsLower OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lower 32 bits of ifHCInOctets as described in the
IF-MIB."
::= { cHCCounterEntry 2 }
cHCCounterIfInUcastPktsUpper OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of ifHCInUcastPkts as described in the
IF-MIB."
::= { cHCCounterEntry 3 }
cHCCounterIfInUcastPktsLower OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lower 32 bits of ifHCInUcastPkts as described in the
IF-MIB."
::= { cHCCounterEntry 4 }
cHCCounterIfOutOctetsUpper OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of ifHCOutOctets as described in the
IF-MIB."
::= { cHCCounterEntry 5 }
cHCCounterIfOutOctetsLower OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lower 32 bits of ifHCOutOctets as described in the
IF-MIB."
::= { cHCCounterEntry 6 }
cHCCounterIfOutUcastPktsUpper OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper 32 bits of ifHCOutUcastPkts as described in the
IF-MIB."
::= { cHCCounterEntry 7 }
cHCCounterIfOutUcastPktsLower OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lower 32 bits of ifHCOutUcastPkts as described in the
IF-MIB."
::= { cHCCounterEntry 8 }
-- notification information
ciscoHCCountersMIBNotifications OBJECT IDENTIFIER ::= { ciscoC12000IfHcCountersMIB 2 }
-- (no notifications are currently defined)
-- conformance information
ciscoHCCountersMIBConformance OBJECT IDENTIFIER ::= { ciscoC12000IfHcCountersMIB 3 }
ciscoHCCountersMIBCompliances OBJECT IDENTIFIER ::= { ciscoHCCountersMIBConformance 1 }
ciscoHCCountersMIBGroups OBJECT IDENTIFIER ::= { ciscoHCCountersMIBConformance 2 }
-- compliance statements
ciscoHCCountersMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco HC Counter MIB. This mib will ONLY be
supported in the 11.2GS version of IOS and will NOT be
ported to any later versions."
MODULE -- this module
MANDATORY-GROUPS { ciscoHCCountersMIBGroup }
::= { ciscoHCCountersMIBCompliances 1 }
-- units of conformance
ciscoHCCountersMIBGroup OBJECT-GROUP
OBJECTS {
cHCCounterIfInOctetsUpper,
cHCCounterIfInOctetsLower,
cHCCounterIfInUcastPktsUpper,
cHCCounterIfInUcastPktsLower,
cHCCounterIfOutOctetsUpper,
cHCCounterIfOutOctetsLower,
cHCCounterIfOutUcastPktsUpper,
cHCCounterIfOutUcastPktsLower
}
STATUS current
DESCRIPTION
"A collection of objects providing the HC Counter capability.
These objects will ONLY be supported in the 11.2GS version of
IOS and will NOT be ported to any later versions."
::= { ciscoHCCountersMIBGroups 1 }
END