forked from librenms/librenms-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALTIGA-MULTILINK-STATS-MIB
313 lines (270 loc) · 9.59 KB
/
ALTIGA-MULTILINK-STATS-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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
-- *------------------------------------------------------------------
-- * ALTIGA-MULTILINK-STATS-MIB.my: Altiga MultiLink Statistics MIB.
-- *
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
-- *
-- * Copyright (c) 2002 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
ALTIGA-MULTILINK-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, Gauge32
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
alStatsMultiLink, alMultiLinkGroup
FROM ALTIGA-MIB
alMultiLinkMibModule
FROM ALTIGA-GLOBAL-REG;
altigaMultiLinkStatsMibModule MODULE-IDENTITY
LAST-UPDATED "200209051300Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The Altiga MultiLink Statistics MIB models counters and
objects that are of management interest for multilinks.
Acronyms
The following acronyms are used in this document:
MIB: Management Information Base
MLP: MultiLink Protocol
"
REVISION "200209051300Z"
DESCRIPTION
"Added module compliance."
REVISION "200207100000Z"
DESCRIPTION
"Updated with new header"
::= { alMultiLinkMibModule 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
alStatsMultiLinkGlobal OBJECT IDENTIFIER ::= { alStatsMultiLink 1 }
alMultiLinkStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlMultiLinkStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of active bundles sessions."
::= { alStatsMultiLink 2 }
alMultiLinkStatsEntry OBJECT-TYPE
SYNTAX AlMultiLinkStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alMultiLinkStatsTable."
INDEX { alMultiLinkStatsIndex }
::= { alMultiLinkStatsTable 1 }
AlMultiLinkStatsEntry ::= SEQUENCE {
alMultiLinkStatsRowStatus RowStatus,
alMultiLinkStatsIndex Integer32,
alMultiLinkStatsTxOctets Unsigned32,
alMultiLinkStatsTxPackets Unsigned32,
alMultiLinkStatsTxMlpFragments Unsigned32,
alMultiLinkStatsTxMlpPackets Unsigned32,
alMultiLinkStatsTxNonMlpPackets Unsigned32,
alMultiLinkStatsTxThroughput Gauge32,
alMultiLinkStatsRxOctets Unsigned32,
alMultiLinkStatsRxPackets Unsigned32,
alMultiLinkStatsRxMlpFragments Unsigned32,
alMultiLinkStatsRxMlpPackets Unsigned32,
alMultiLinkStatsRxNonMlpPackets Unsigned32,
alMultiLinkStatsRxThroughput Gauge32,
alMultiLinkStatsRxLostEnd Unsigned32,
alMultiLinkStatsRxStalePackets Unsigned32,
alMultiLinkStatsRxStaleFragments Unsigned32,
alMultiLinkStatsRxDroppedFragments Unsigned32,
alMultiLinkStatsRxOOSFragments Unsigned32,
alMultiLinkStatsIdleTmrCleanup Unsigned32
}
alMultiLinkStatsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of this row."
::= { alMultiLinkStatsEntry 1 }
alMultiLinkStatsIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique MultiLink Bundle index for this row."
::= { alMultiLinkStatsEntry 2 }
alMultiLinkStatsTxOctets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted octets."
::= { alMultiLinkStatsEntry 3 }
alMultiLinkStatsTxPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted packets."
::= { alMultiLinkStatsEntry 4 }
alMultiLinkStatsTxMlpFragments OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted MLP packet fragments."
::= { alMultiLinkStatsEntry 5 }
alMultiLinkStatsTxMlpPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted MLP complete packets."
::= { alMultiLinkStatsEntry 6 }
alMultiLinkStatsTxNonMlpPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted non-MLP complete packets."
::= { alMultiLinkStatsEntry 7 }
alMultiLinkStatsTxThroughput OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transmitted bits per second"
::= { alMultiLinkStatsEntry 8 }
alMultiLinkStatsRxOctets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received octets."
::= { alMultiLinkStatsEntry 9 }
alMultiLinkStatsRxPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received packets."
::= { alMultiLinkStatsEntry 10 }
alMultiLinkStatsRxMlpFragments OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received MLP packet fragments."
::= { alMultiLinkStatsEntry 11 }
alMultiLinkStatsRxMlpPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received MLP complete packets."
::= { alMultiLinkStatsEntry 12 }
alMultiLinkStatsRxNonMlpPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received non-MLP complete packets."
::= { alMultiLinkStatsEntry 13 }
alMultiLinkStatsRxThroughput OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received bits per second"
::= { alMultiLinkStatsEntry 14 }
alMultiLinkStatsRxLostEnd OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of missing MLP packets with no end bit."
::= { alMultiLinkStatsEntry 15 }
alMultiLinkStatsRxStalePackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received MLP packet fragments gone stale."
::= { alMultiLinkStatsEntry 16 }
alMultiLinkStatsRxStaleFragments OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received MLP fragments orphans gone stale."
::= { alMultiLinkStatsEntry 17 }
alMultiLinkStatsRxDroppedFragments OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received MLP packet fragments discarded."
::= { alMultiLinkStatsEntry 18 }
alMultiLinkStatsRxOOSFragments OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received out-of-sequence MLP packet fragments"
::= { alMultiLinkStatsEntry 19 }
alMultiLinkStatsIdleTmrCleanup OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times idle timer forwarded MLP complete packets."
::= { alMultiLinkStatsEntry 20 }
altigaMultiLinkStatsMibConformance OBJECT IDENTIFIER
::= { altigaMultiLinkStatsMibModule 1 }
altigaMultiLinkStatsMibCompliances OBJECT IDENTIFIER
::= { altigaMultiLinkStatsMibConformance 1 }
altigaMultiLinkStatsMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for agents which
implement the Altiga MultiLink Statistics MIB."
MODULE
MANDATORY-GROUPS {
altigaMultiLinkStatsGroup
}
::= { altigaMultiLinkStatsMibCompliances 1 }
altigaMultiLinkStatsGroup OBJECT-GROUP
OBJECTS
{
alMultiLinkStatsRowStatus,
alMultiLinkStatsIndex,
alMultiLinkStatsTxOctets,
alMultiLinkStatsTxPackets,
alMultiLinkStatsTxMlpFragments,
alMultiLinkStatsTxMlpPackets,
alMultiLinkStatsTxNonMlpPackets,
alMultiLinkStatsTxThroughput,
alMultiLinkStatsRxOctets,
alMultiLinkStatsRxPackets,
alMultiLinkStatsRxMlpFragments,
alMultiLinkStatsRxMlpPackets,
alMultiLinkStatsRxNonMlpPackets,
alMultiLinkStatsRxThroughput,
alMultiLinkStatsRxLostEnd,
alMultiLinkStatsRxStalePackets,
alMultiLinkStatsRxStaleFragments,
alMultiLinkStatsRxDroppedFragments,
alMultiLinkStatsRxOOSFragments,
alMultiLinkStatsIdleTmrCleanup
}
STATUS current
DESCRIPTION
"The objects for the MultiLink Bundle statistics."
::= { alMultiLinkGroup 2 }
END