-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-PPC-BAD-PACKETS-MIB
286 lines (238 loc) · 7.31 KB
/
CTRON-PPC-BAD-PACKETS-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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
CTRON-PPC-BAD-PACKETS-MIB DEFINITIONS ::= BEGIN
-- ctron-ppc-bad-packets.txt
-- Revision: 00.00.01
-- Part Number:
-- Date: March 18, 1999
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- This module provides definitions for Cabletron's
-- enterprise-specific PPC Bad Packets MIB.
--
-- This module will be extended, as needed.
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright March 1999 Cabletron Systems
IMPORTS
OBJECT-TYPE
FROM RFC-1212
ctFWDebug
FROM CTRON-MIB-NAMES;
ctPPCBadPkts OBJECT IDENTIFIER ::= { ctFWDebug 1 }
ctPPCBadPktsTotalTx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Transmit Errors PPC has registered on this device (all ports)"
::= { ctPPCBadPkts 1 }
ctPPCBadPktsTotalRx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Receive Errors PPC has registered on this device (all ports)"
::= { ctPPCBadPkts 2 }
------------------------------------------------------------
ctPPCBadPktsTxTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtPPCBadPktsTxEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Provides traffic error statistics (Transmit side)"
::= { ctPPCBadPkts 3 }
ctPPCBadPktsTxEntry OBJECT-TYPE
SYNTAX CtPPCBadPktsTxEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Defines a particular entry containing objects pertaining to
each port."
INDEX { ctPPCBadPktsTxIndex }
::= { ctPPCBadPktsTxTable 1 }
CtPPCBadPktsTxEntry ::=
SEQUENCE {
ctPPCBadPktsTxIndex
INTEGER,
ctPPCBadPktsTxQueues
INTEGER,
ctPPCBadPktsTxFulls
INTEGER
}
ctPPCBadPktsTxIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value which uniquely identifies a conceptual row in the
table. Physical port id."
::= { ctPPCBadPktsTxEntry 1 }
ctPPCBadPktsTxQueues OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Transmit Queues this port is able to support."
::= { ctPPCBadPktsTxEntry 2 }
ctPPCBadPktsTxFulls OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of xmit events with queue been full."
::= { ctPPCBadPktsTxEntry 3 }
-------------------------------------------------------------------
ctPPCBadPktsTxQDepthTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtPPCBadPktsTxQDepthEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Provides the current usage for each Tx Queue"
::= { ctPPCBadPkts 4 }
ctPPCBadPktsTxQDepthEntry OBJECT-TYPE
SYNTAX CtPPCBadPktsTxQDepthEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Defines a particular entry containing objects pertaining to
each port and queue."
INDEX { ctPPCBadPktsTxQIndex, ctPPCBadPktsQ }
::= { ctPPCBadPktsTxQDepthTable 1 }
CtPPCBadPktsTxQDepthEntry ::= SEQUENCE {
ctPPCBadPktsTxQIndex
INTEGER,
ctPPCBadPktsQ
INTEGER,
ctPPCBadPktsTxQDepth
INTEGER
}
ctPPCBadPktsTxQIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value which uniquely identifies a conceptual row in the
table. Physical port id."
::= { ctPPCBadPktsTxQDepthEntry 1 }
ctPPCBadPktsQ OBJECT-TYPE
SYNTAX INTEGER (0..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index to the queue array."
::= { ctPPCBadPktsTxQDepthEntry 2 }
ctPPCBadPktsTxQDepth OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of currently used entries in this queue."
::= { ctPPCBadPktsTxQDepthEntry 3 }
--------------------------------------------------------------
ctPPCBadPktsRxTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtPPCBadPktsRxEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Provides traffic error statistics (receive side)"
::= { ctPPCBadPkts 5 }
ctPPCBadPktsRxEntry OBJECT-TYPE
SYNTAX CtPPCBadPktsRxEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Defines a particular entry containing objects pertaining to
each port."
INDEX { ctPPCBadPktsRxIndex }
::= { ctPPCBadPktsRxTable 1 }
CtPPCBadPktsRxEntry ::= SEQUENCE {
ctPPCBadPktsRxIndex
INTEGER,
ctPPCBadPktsRxTotalErrors
INTEGER,
ctPPCBadPktsRxDescHigh
INTEGER,
ctPPCBadPktsRxDescLow
INTEGER,
ctPPCBadPktsRxDaSa0
INTEGER,
ctPPCBadPktsRxDaSa1
INTEGER,
ctPPCBadPktsRxDaSa2
INTEGER,
ctPPCBadPktsRxData
INTEGER
}
ctPPCBadPktsRxIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value which uniquely identifies a conceptual row in the
table. Physical port id."
::= { ctPPCBadPktsRxEntry 1 }
ctPPCBadPktsRxTotalErrors OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bad packets received on this port."
::= { ctPPCBadPktsRxEntry 2 }
ctPPCBadPktsRxDescHigh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The first half of last bad packet descriptor."
::= { ctPPCBadPktsRxEntry 3 }
ctPPCBadPktsRxDescLow OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The second half of last bad packet descriptor."
::= { ctPPCBadPktsRxEntry 4 }
ctPPCBadPktsRxDaSa0 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The first word of DaSa field from the last bad packet."
::= { ctPPCBadPktsRxEntry 5 }
ctPPCBadPktsRxDaSa1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The second word of DaSa field from the last bad packet."
::= { ctPPCBadPktsRxEntry 6 }
ctPPCBadPktsRxDaSa2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The third word of DaSa field from the last bad packet."
::= { ctPPCBadPktsRxEntry 7 }
ctPPCBadPktsRxData OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Data word (maybe tag) from the last bad packet. "
::= { ctPPCBadPktsRxEntry 8 }
END