This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
ALTIGA-TELNET-STATS-MIB
585 lines (512 loc) · 19.9 KB
/
ALTIGA-TELNET-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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
-- *------------------------------------------------------------------
-- * ALTIGA-TELNET-STATS-MIB.my: Altiga TELNET Statistics MIB.
-- *
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
-- *
-- * Copyright (c) 2002 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
ALTIGA-TELNET-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Gauge32, Counter32
FROM SNMPv2-SMI
RowStatus, DisplayString
FROM SNMPv2-TC
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
alStatsTelnet, alTelnetGroup
FROM ALTIGA-MIB
alTelnetMibModule
FROM ALTIGA-GLOBAL-REG;
altigaTelnetStatsMibModule 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: cs-cvpn3000@cisco.com"
DESCRIPTION
"The Altiga TELNET Statistics MIB models counters and objects that are
of management interest for telnet sessions.
Acronyms
The following acronyms are used in this document:
MIB: Management Information Base
"
REVISION "200209051300Z"
DESCRIPTION
"Added module compliance."
REVISION "200207100000Z"
DESCRIPTION
"Updated with new header"
::= { alTelnetMibModule 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- MIB Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
alStatsTelnetGlobal OBJECT IDENTIFIER ::= { alStatsTelnet 1 }
alTelnetStatsActiveSessions OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of active Telnet sessions."
::= { alStatsTelnetGlobal 1 }
alTelnetStatsAttemptedSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attempts made to establish Telnet sessions."
::= { alStatsTelnetGlobal 2 }
alTelnetStatsSuccessfulSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of successfully established Telnet sessions."
::= { alStatsTelnetGlobal 3 }
alTelnetStatsInNetPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets that were received from the network
since the system was booted."
::= { alStatsTelnetGlobal 4 }
alTelnetStatsInNetOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets that were received from the network
since the system was booted."
::= { alStatsTelnetGlobal 5 }
alTelnetStatsInNetCmdOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets that contained Telnet commands or options
that were received from the network since the system was booted."
::= { alStatsTelnetGlobal 6 }
-- /* Syncs sequences are not yet supported, but when they are add the following:
-- /* should move it to the bottom to avoid renumbering, but this is it's pos in TNSTATS
-- alTelnetStatsSyncSeqs OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The total number of Telnet sync sequences that were received from
-- the network since the system was booted."
-- ::= { alStatsTelnetGlobal X }
alTelnetStatsInNetDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets from the network that were
dropped during input processing since the system was booted."
::= { alStatsTelnetGlobal 7 }
alTelnetStatsInNetDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets from the network that were
dropped during input processing since the system was booted."
::= { alStatsTelnetGlobal 8 }
-- /* Out Net
alTelnetStatsOutNetPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets that were transmitted to the network
since the system was booted."
::= { alStatsTelnetGlobal 9 }
alTelnetStatsOutNetOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets that were transmitted to the network
since the system was booted."
::= { alStatsTelnetGlobal 10 }
alTelnetStatsOutNetDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets destined for the network that were
dropped during output processing since the system was booted."
::= { alStatsTelnetGlobal 11 }
alTelnetStatsOutNetDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets destined for the network that were
dropped during output processing since the system was booted."
::= { alStatsTelnetGlobal 12 }
-- In Shell
alTelnetStatsInShPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets that were received from the shell
since the system was booted."
::= { alStatsTelnetGlobal 13 }
alTelnetStatsInShOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets that were received from the shell
since the system was booted."
::= { alStatsTelnetGlobal 14 }
alTelnetStatsInShDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets from the shell that were
dropped during input processing since the system was booted."
::= { alStatsTelnetGlobal 15 }
alTelnetStatsInShDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets from the shell that were
dropped during input processing since the system was booted."
::= { alStatsTelnetGlobal 16 }
-- Out Shell
alTelnetStatsOutShPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets that were transmitted to the shell
since the system was booted."
::= { alStatsTelnetGlobal 17 }
alTelnetStatsOutShOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets that were transmitted to the shell
since the system was booted."
::= { alStatsTelnetGlobal 18 }
alTelnetStatsOutShDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet packets destined for the shell that were
dropped during output processing since the system was booted."
::= { alStatsTelnetGlobal 19 }
alTelnetStatsOutShDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Telnet octets destined for the shell that were
dropped during output processing since the system was booted."
::= { alStatsTelnetGlobal 20 }
-- Per session stats
alTelnetStatsSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlTelnetStatsSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of active sessions."
::= { alStatsTelnet 2 }
alTelnetStatsSessionEntry OBJECT-TYPE
SYNTAX AlTelnetStatsSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the alTelnetStatsSessionTable."
INDEX { alTelnetStatsSessionId }
::= { alTelnetStatsSessionTable 1 }
AlTelnetStatsSessionEntry ::= SEQUENCE {
alTelnetStatsSessionRowStatus RowStatus,
alTelnetStatsSessionId Integer32,
alTelnetStatsSessionIpAddr IpAddress,
alTelnetStatsSessionSrcPort Integer32,
alTelnetStatsSessionName DisplayString,
alTelnetStatsSessionInNetPackets Counter32,
alTelnetStatsSessionInNetOctets Counter32,
alTelnetStatsSessionInNetCmdOctets Counter32,
-- alTelnetStatsSessionSyncSeqs Counter32,
alTelnetStatsSessionInNetDropPackets Counter32,
alTelnetStatsSessionInNetDropOctets Counter32,
alTelnetStatsSessionOutNetPackets Counter32,
alTelnetStatsSessionOutNetOctets Counter32,
alTelnetStatsSessionOutNetDropPackets Counter32,
alTelnetStatsSessionOutNetDropOctets Counter32,
alTelnetStatsSessionInShPackets Counter32,
alTelnetStatsSessionInShOctets Counter32,
alTelnetStatsSessionInShDropPackets Counter32,
alTelnetStatsSessionInShDropOctets Counter32,
alTelnetStatsSessionOutShPackets Counter32,
alTelnetStatsSessionOutShOctets Counter32,
alTelnetStatsSessionOutShDropPackets Counter32,
alTelnetStatsSessionOutShDropOctets Counter32
}
alTelnetStatsSessionRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of this row. Used to terminate the session,
cannot be used to create a Session."
::= { alTelnetStatsSessionEntry 1 }
alTelnetStatsSessionId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Telnet session process ID, used as the
index for this row."
::= { alTelnetStatsSessionEntry 2 }
alTelnetStatsSessionIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the remote client."
::= { alTelnetStatsSessionEntry 3 }
alTelnetStatsSessionSrcPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP source port number of the remote client."
::= { alTelnetStatsSessionEntry 4 }
alTelnetStatsSessionName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Telnet session process name, used as the
index for this row."
::= { alTelnetStatsSessionEntry 5 }
alTelnetStatsSessionInNetPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets that were received from the network
since the system was booted."
::= { alTelnetStatsSessionEntry 6 }
alTelnetStatsSessionInNetOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets that were received from the network
since the system was booted."
::= { alTelnetStatsSessionEntry 7 }
alTelnetStatsSessionInNetCmdOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of octets that contained Telnet commands or options
that were received from the network since the system was booted."
::= { alTelnetStatsSessionEntry 8 }
-- Syncs sequences are not yet supported, but when they are add the following:
-- should move it to the bottom to avoid renumbering, but this is it's pos in TNSTATS
-- alTelnetStatsSessionSyncSeqs OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The per session number of Telnet sync sequences that were received from
-- the network since the system was booted."
-- ::= { alTelnetStatsSessionEntry XX }
alTelnetStatsSessionInNetDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets from the network that were
dropped during input processing since the system was booted."
::= { alTelnetStatsSessionEntry 9 }
alTelnetStatsSessionInNetDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets from the network that were
dropped during input processing since the system was booted."
::= { alTelnetStatsSessionEntry 10 }
-- Out Net
alTelnetStatsSessionOutNetPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets that were transmitted to the network
since the system was booted."
::= { alTelnetStatsSessionEntry 11 }
alTelnetStatsSessionOutNetOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets that were transmitted to the network
since the system was booted."
::= { alTelnetStatsSessionEntry 12 }
alTelnetStatsSessionOutNetDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets destined for the network that were
dropped during output processing since the system was booted."
::= { alTelnetStatsSessionEntry 13 }
alTelnetStatsSessionOutNetDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets destined for the network that were
dropped during output processing since the system was booted."
::= { alTelnetStatsSessionEntry 14 }
-- In Shell
alTelnetStatsSessionInShPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets that were received from the shell
since the system was booted."
::= { alTelnetStatsSessionEntry 15 }
alTelnetStatsSessionInShOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets that were received from the shell
since the system was booted."
::= { alTelnetStatsSessionEntry 16 }
alTelnetStatsSessionInShDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets from the shell that were
dropped during input processing since the system was booted."
::= { alTelnetStatsSessionEntry 17 }
alTelnetStatsSessionInShDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets from the shell that were
dropped during input processing since the system was booted."
::= { alTelnetStatsSessionEntry 18 }
-- Out Shell
alTelnetStatsSessionOutShPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets that were transmitted to the shell
since the system was booted."
::= { alTelnetStatsSessionEntry 19 }
alTelnetStatsSessionOutShOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets that were transmitted to the shell
since the system was booted."
::= { alTelnetStatsSessionEntry 20 }
alTelnetStatsSessionOutShDropPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet packets destined for the shell that were
dropped during output processing since the system was booted."
::= { alTelnetStatsSessionEntry 21 }
alTelnetStatsSessionOutShDropOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per session number of Telnet octets destined for the shell that were
dropped during output processing since the system was booted."
::= { alTelnetStatsSessionEntry 22 }
altigaTelnetStatsMibConformance OBJECT IDENTIFIER ::= { altigaTelnetStatsMibModule 1 }
altigaTelnetStatsMibCompliances OBJECT IDENTIFIER ::= { altigaTelnetStatsMibConformance 1 }
altigaTelnetStatsMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for agents which
implement the Altiga Telnet Statistics MIB."
MODULE
MANDATORY-GROUPS {
altigaTelnetStatsGroup
}
::= { altigaTelnetStatsMibCompliances 1 }
altigaTelnetStatsGroup OBJECT-GROUP
OBJECTS
{
alTelnetStatsActiveSessions,
alTelnetStatsAttemptedSessions,
alTelnetStatsSuccessfulSessions,
alTelnetStatsInNetPackets,
alTelnetStatsInNetOctets,
alTelnetStatsInNetCmdOctets,
-- alTelnetStatsSyncSeqs,
alTelnetStatsInNetDropPackets,
alTelnetStatsInNetDropOctets,
alTelnetStatsOutNetPackets,
alTelnetStatsOutNetOctets,
alTelnetStatsOutNetDropPackets,
alTelnetStatsOutNetDropOctets,
alTelnetStatsInShPackets,
alTelnetStatsInShOctets,
alTelnetStatsInShDropPackets,
alTelnetStatsInShDropOctets,
alTelnetStatsOutShPackets,
alTelnetStatsOutShOctets,
alTelnetStatsOutShDropPackets,
alTelnetStatsOutShDropOctets,
alTelnetStatsSessionRowStatus,
alTelnetStatsSessionId,
alTelnetStatsSessionIpAddr,
alTelnetStatsSessionSrcPort,
alTelnetStatsSessionName,
alTelnetStatsSessionInNetPackets,
alTelnetStatsSessionInNetOctets,
alTelnetStatsSessionInNetCmdOctets,
-- alTelnetStatsSessionSyncSeqs,
alTelnetStatsSessionInNetDropPackets,
alTelnetStatsSessionInNetDropOctets,
alTelnetStatsSessionOutNetPackets,
alTelnetStatsSessionOutNetOctets,
alTelnetStatsSessionOutNetDropPackets,
alTelnetStatsSessionOutNetDropOctets,
alTelnetStatsSessionInShPackets,
alTelnetStatsSessionInShOctets,
alTelnetStatsSessionInShDropPackets,
alTelnetStatsSessionInShDropOctets,
alTelnetStatsSessionOutShPackets,
alTelnetStatsSessionOutShOctets,
alTelnetStatsSessionOutShDropPackets,
alTelnetStatsSessionOutShDropOctets
}
STATUS current
DESCRIPTION
"The objects for the Telnet Server statistics."
::= { alTelnetGroup 2 }
END