forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ATM-RMON-MIB.mib
2271 lines (1923 loc) · 82.7 KB
/
ATM-RMON-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
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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *****************************************************************
-- ATM-RMON MIB
--
-- Feb 1997, Andy Bierman
--
-- Copyright (c) 1996-1997 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
-- This mib was extracted from an ATM Forum Draft.
-- It currently uses a ciscoExperiment number.
ATM-RMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32,
Counter64, Gauge32, TimeTicks
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus, DisplayString,
TimeStamp
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
ifIndex, OwnerString
FROM IF-MIB
ciscoExperiment
FROM CISCO-SMI;
-- This TC is not imported from the RMON MIB because that MIB is on
-- the SNMPv1-only list, not compiled with SNMPv2 SMI
-- It's imported from IF-MIB just so this MIB will compile
-- since IF-MIB must be included for ifIndex
--
-- OwnerString
-- FROM RMON-MIB
--
-- These TCs are not imported from RMON-2, because our tools
-- would not compile RMON-2 and RMON-1 together, and the Token Ring
-- RMON MIB must also be imported by RMON-2
--
-- ZeroBasedCounter32, LastCreateTime
-- FROM RMON2-MIB
--
-- This TC is not imported from the CISCO-ATM-ADDR-MIB.my, or
-- the AtomMIB WG ATM-TC-MIB. This copy will change when the
-- ATM-TC-MIB is standardized.
--
-- AtmAddr
-- FROM ATM-TC-MIB;
--
-- Remote Network Monitoring MIB for ATM Networks
atmRmon MODULE-IDENTITY
LAST-UPDATED "9701240000Z"
ORGANIZATION "IETF" -- should this be Cisco instead?
CONTACT-INFO
"Andy Bierman
Cisco Systems, Inc.
Phone: +1 408 527-3711
Email: abierman@cisco.com
Keith McCloghrie
Cisco Systems, Inc.
Phone: +1 408 526-5260
Email: kzm@cisco.com"
DESCRIPTION
"The MIB module for managing remote monitoring device
implementations for ATM networks."
::= { ciscoExperiment 16 }
-- ATM-RMON MIB groups
atmRmonMIBObjects OBJECT IDENTIFIER ::= { atmRmon 1 }
atmRmonNotifications OBJECT IDENTIFIER ::= { atmRmon 2 }
atmRmonConformance OBJECT IDENTIFIER ::= { atmRmon 3 }
-- ATM-RMON MIB object groups
portSelect OBJECT IDENTIFIER ::= { atmRmonMIBObjects 1 }
atmStats OBJECT IDENTIFIER ::= { atmRmonMIBObjects 2 }
atmHost OBJECT IDENTIFIER ::= { atmRmonMIBObjects 3 }
atmMatrix OBJECT IDENTIFIER ::= { atmRmonMIBObjects 4 }
-- cisco extensions
atmConfig OBJECT IDENTIFIER ::= { atmRmonMIBObjects 5 }
-- Textual Conventions:
-- temp: copied from RMON-2:
ZeroBasedCounter32 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object which counts events with the
following semantics: objects of this type will be set to
zero(0) on creation and will thereafter count appropriate
events, wrapping back to zero(0) when the value 2^32 is
reached.
Provided that an application discovers the new object within
the minimum time to wrap it can use the initial value as a
delta since it last polled the table of which this object is
part. It is important for a management station to be aware of
this minimum time and the actual time between polls, and to
discard data if the actual time is too long or there is no
defined minimum time.
Typically this TC is used in tables where the INDEX space is
constantly changing and/or the TimeFilter mechanism is in use."
SYNTAX Gauge32
-- temp: copied from RMON-2
LastCreateTime ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object that stores the last time its
entry was created.
This can be used for polling applications to determine that an
entry has been deleted and re-created between polls, causing
an otherwise undetectable discontinuity in the data."
SYNTAX TimeTicks
-- temp: copied from the ATM-TC-MIB
AtmAddr ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The ATM address used by the network entity. The
address types are: no address (0 octets), E.164 (8
octets), network prefix (13 octets), and NSAP (20
octets). Note: The E.164 address is encoded in
BCD format."
SYNTAX OCTET STRING (SIZE(0|8|13|20))
ServiceClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object that identifies the cell
delivery class-of-service classification, associated with a
particular statistics collection. In order to conserve
agent resources, the classifications are limited to two
enumerations which distinguish delay-guarantee.
Statistics gathered on behalf on collections identified by
the 'cbrAndVbr(1)' enumeration represent constant-bit-rate
(CBR), real-time and non-real-time variable bit rate (VBR)
traffic.
Statistics gathered on behalf on collections identified by
the 'abrAndUbr(2)' enumeration represent available-bit-rate
(ABR) and unspecified-bit-rate (UBR) traffic."
SYNTAX INTEGER {
cbrAndVbr(1), -- constant and variable bit rate
abrAndUbr(2) -- available and unspecified bit rate
}
ResourcePriority ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object which indicates the desired
resource priority of the entire entry. Lower priorities
indicate a lesser requirement to retain resources than
higher priority values.
A management station can use the resource priority to
provide a probe with additional information for managing
memory allocation. A probe is strongly encouraged, but not
required, to honor all priority requests, all of the time.
Objects declared with this TC should be contained within a
conceptual control table entry. The indicated resource
priority applies to the control entry, all internal data
structures maintained on behalf of the control entry, and
all external MIB data represented by the control entry.
A probe should honor the priority requests in an
implementation-dependent way. The data allocation
granularity (i.e., shared data structures) may vary greatly
for different implementations, so a particular
implementation strategy is not mandated. However, the
following guidelines are suggested for those agents which
implement garbage-collection based on 'least-recently used'
(LRU) or other criteria:
In the event that the probe runs short of resources, and
data entries are to be removed from particular tables to
reclaim resources, then entries associated with lower
ResourcePriority values should be deleted before entries
associated with higher ResourcePriority values, regardless
of the resource reclamation algorithm in use. In addition,
entries associated with a higher AddressCollectScope value
should be deleted before entries with a lower
AddressCollectScope value.
Note that the priority ordering of entries with the same
ResourcePriority and addressCollectScope values is
unspecified."
SYNTAX INTEGER {
lowPriority(1),
normalPriority(2),
highPriority(3)
}
AddressCollectScope ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object which indicates the granularity
of the addresses represented in associated ATM-RMON
collections.
Addresses gathered on behalf of collections identified by
the 'prefix(1)' enumeration will be cleared to zero in bytes
13 through 20, for indexing and counting purposes.
Addresses gathered on behalf of collections identified by
the 'prefixAndEsi(2)' enumeration will be cleared to zero in
byte 20, for indexing and counting purposes.
Addresses gathered on behalf of collections identified by
the 'entireAddr(3)' enumeration will be unmodified, for
indexing and counting purposes."
SYNTAX INTEGER {
prefix(1),
prefixAndEsi(2),
entireAddr(3)
}
ConnectTime ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object which indicates the sum of the
elapsed times of all connections associated with a
particular collection. This is a cumulative total and
includes all connections which currently exist and all
connections which have been released.
Elapsed connection time begins when the call attempt is
detected, and ends when the call is released. It is an
implementation-specific matter whether call attempts which
do not result in successful connections are represented in
this total.
Call duration is maintained in units of seconds, and are
rounded to the nearest second when counted."
SYNTAX Gauge32
--
-- Port Selection (portSelect Group)
--
-- Defines the ports to be included or excluded in
-- a particular stats, host or matrix collection
--
-- portSelGrpTable
-- portSelTable
portSelGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortSelGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Controls the setup of port and ATM connection selection
criteria used on behalf of any collection associated with
entries in this table (e.g., atmHostTable).
This table allows portSelTable entries with the same value
of the portSelCollectGroup object to be grouped together to
form port select groups.
Note that an agent implementation may restrict the actual
number of portSelGrp entries, due to resource limitations."
::= { portSelect 1 }
portSelGrpEntry OBJECT-TYPE
SYNTAX PortSelGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the portSelGrpTable.
An example of the indexing of this entry is
portSelGrpCreateTime.7 ."
INDEX { portSelGrpIndex }
::= { portSelGrpTable 1 }
PortSelGrpEntry ::= SEQUENCE {
portSelGrpIndex Integer32,
portSelGrpDescr DisplayString,
portSelGrpCreateTime LastCreateTime,
portSelGrpOwner OwnerString,
portSelGrpStatus RowStatus
}
portSelGrpIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary and unique index for this portSelGrpEntry. If
portSelGrpTable entries are recreated by the agent after a
restart, then the portSelGrpIndex value must be retained
across a restart as well."
::= { portSelGrpEntry 1 }
portSelGrpDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An administratively-assigned descriptive label for this
portSelGrp entry."
::= { portSelGrpEntry 2 }
portSelGrpCreateTime OBJECT-TYPE
SYNTAX LastCreateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this portSelGrp entry was
activated. This can be used by the management station to
ensure that the table has not been deleted and recreated
between polls."
::= { portSelGrpEntry 3 }
portSelGrpOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The entity that configured this entry and is therefore
using the resources assigned to it."
::= { portSelGrpEntry 4 }
portSelGrpStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row.
An entry may not exist in the active state unless all
objects in the entry have an appropriate value. No objects
are required to be written prior to the row being set to
active(1). However, all portSelTable entries which are to
be included in collections on behalf of this
portSelectGroup, must be completely configured and activated
before this object is set to active(1), since the associated
instances of portSelStatus cannot be modified once this
object has been set to active(1).
If this object is not equal to active(1), all associated
data collections shall be deleted (e.g., any associated
collections in the atmStats, atmHostTable or
atmMatrixSDTable).
Note that associated portSelTable and any configured
collection control entries (e.g., atmHostControlTable) are
not deleted when this entry leaves the active state."
::= { portSelGrpEntry 5 }
--
-- portSelTable: used to specify the collection configuration
-- for a single ATM port
--
portSelTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortSelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Controls the setup of selection criteria for a single ATM
port, used on behalf of any collections identified with the
associated portSelectGroup (identified by its
portSelGrpIndex value).
This table identifies the collection characteristics for the
ATM port indicated by the ifIndex value in the index.
Note that an agent implementation may restrict the actual
number of portSelTable entries, due to resource
limitations."
::= { portSelect 2 }
portSelEntry OBJECT-TYPE
SYNTAX PortSelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the portSelTable.
Entries may only be created on behalf of ATM interfaces.
That is, the ifType value associated with each ifIndex value
must be equal to atm(37) or atmLogicalPort(80).
An example of the indexing of this entry is
portSelCreateTime.7 ."
INDEX { ifIndex }
::= { portSelTable 1 }
PortSelEntry ::= SEQUENCE {
portSelCollectGroup Integer32,
portSelCreateTime LastCreateTime,
portSelOwner OwnerString,
portSelStatus RowStatus
}
portSelCollectGroup OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object identifies the associated instance of
portSelGrpIndex, which indicates the portSelectGroup to
which this port is assigned.
This object may not be modified if the associated instance
of portSelStatus is equal to active(1)."
::= { portSelEntry 1 }
portSelCreateTime OBJECT-TYPE
SYNTAX LastCreateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this entry was activated. This
can be used by the management station to ensure that the
table has not been deleted and recreated between polls."
::= { portSelEntry 2 }
portSelOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The entity that configured this entry and is therefore
using the resources assigned to it."
::= { portSelEntry 3 }
portSelStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row.
An entry may not exist in the active state unless all
objects in the entry have an appropriate value.
Specifically, an appropriate value for the
portSelCollectGroup object must be set before this object
may be set to active(1). An agent may wish to allow
portSelTable entries to exist which reference non-existent
portSelGrpTable entries, in order to reduce row creation
order dependencies.
All portSelTable entries which are to be included in a
particular collection (as indicated by the
portSelCollectGroup object), should be completely configured
and activated before the associated portSelGrpStatus object
is set to active(1). Configuration of a portSelectGroup
cannot be modified once collections on its behalf have been
started.
This object may not be modified if the associated
portSelGroupStatus in in the active(1) state, indicated by a
portSelGrpIndex value identical to the value of the
portSelCollectGroup object in this entry."
::= { portSelEntry 4 }
--
-- ATM Stats Group
--
-- Counts the total amount of traffic
-- counted on behalf of one or more portSelectGroups
atmStatsControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmStatsControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ATM basic statistic collection table control
entries. These entries will enable the collection of
statistical totals for an entire portSelectGroup."
::= { atmStats 1 }
atmStatsControlEntry OBJECT-TYPE
SYNTAX AtmStatsControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the atmStatsControlTable. Entries in
this table are identified and indexed by the portSelGrpIndex
object. At most one atmStats collection is done per
portSelectGroup.
An example of the indexing of this entry is
atmStatsDropEvents.1 ."
INDEX { portSelGrpIndex }
::= { atmStatsControlTable 1 }
AtmStatsControlEntry ::= SEQUENCE {
atmStatsControlDropEvents Counter32,
atmStatsControlOwner OwnerString,
atmStatsControlStatus RowStatus
}
atmStatsControlDropEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of events in which cells which should have
been counted in the associated atmStatsEntry, but were
dropped by the probe due to lack of resources. Note that
this number is not necessarily the number of cells or calls
dropped; it is just the number of times this condition has
been detected."
::= { atmStatsControlEntry 1 }
atmStatsControlOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The entity that configured this entry and is therefore
using the resources assigned to it."
::= { atmStatsControlEntry 2 }
atmStatsControlStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this atmStatsControlEntry.
This control entry may be created and destroyed
independently of the associated portSelGrpEntry, however its
associated atmStatsTable can exist only when the
portSelGrpEntry controlling this collection is active.
If this object is not equal to active(1), all associated
entries in the atmStatsTable shall be deleted."
::= { atmStatsControlEntry 3 }
-- atmStatsTable
-- call and traffic basic statistics collected on behalf of specific
-- portSelectGroups
atmStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of statistical totals for all ATM addresses
that have been discovered on behalf of the portSelectGroup
associated with this entry."
::= { atmStats 2 }
atmStatsEntry OBJECT-TYPE
SYNTAX AtmStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the atmStatsTable.
The portSelGrpIndex value in the index identifies the
portSelectGroup on whose behalf this entry was created.
An example of the indexing of this entry is
atmStatsCells.8.1"
INDEX { portSelGrpIndex, atmStatsSClass }
::= { atmStatsTable 1 }
AtmStatsEntry ::= SEQUENCE {
atmStatsSClass ServiceClass,
atmStatsCreateTime LastCreateTime,
atmStatsCells Counter32,
atmStatsCellsRollovers Counter32,
atmStatsHCCells Counter64,
atmStatsNumCallAttempts Counter32,
atmStatsNumCalls Counter32,
atmStatsConnTime ConnectTime
}
atmStatsSClass OBJECT-TYPE
SYNTAX ServiceClass
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The quality of service classification for this entry. See
the ServiceClass textual convention for details and specific
class-of-service values."
::= { atmStatsEntry 1 }
atmStatsCreateTime OBJECT-TYPE
SYNTAX LastCreateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this entry was created. This
can be used by the management station to ensure that the
entry has not been deleted and recreated between polls."
::= { atmStatsEntry 2 }
atmStatsCells OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error-free cells detected on all ATM
connections on behalf of this portSelectGroup collection.
Note that a particular cell may only cause this counter to
increment once, even if multiple criteria is met for
inclusion in this portSelectGroup."
::= { atmStatsEntry 3 }
atmStatsCellsRollovers OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that the associated instance of the
atmStatsCells object has transitioned from the value 2^^32-1
to zero."
::= { atmStatsEntry 4 }
atmStatsHCCells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The high capacity version of the atmStatsCells object."
::= { atmStatsEntry 5 }
atmStatsNumCallAttempts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of call attempts detected on all signalled ATM
connections on behalf of this portSelectGroup collection. A
probe should increment this counter each time a connection
setup attempt (identified with this portSelectGroup) is
detected. For point-to-multipoint connections, this counter
is incremented once per counted connection, regardless of
the number of leafs identified in the connection."
::= { atmStatsEntry 6 }
atmStatsNumCalls OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of successfully established calls detected on
all signalled ATM connections on behalf of this
portSelectGroup collection. Note that this value includes
successfully established calls that are currently in
progress. A probe should increment this counter each time a
valid connection (identified with this portSelectGroup) is
successfully established. For point-to-multipoint ATM
connections, this counter is incremented once per counted
connection, regardless of the number of leafs identified in
the connection. Note that when a point-to-point connection
setup enters on one port and leaves on another port in the
same port select group, it is counted only once."
::= { atmStatsEntry 7 }
atmStatsConnTime OBJECT-TYPE
SYNTAX ConnectTime
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The elapsed time of all calls identified by the associated
instance of the atmStatsNumCallAttempts object. Note that
point-to-multipoint calls are counted only once, regardless
of the number of leafs participating in the call."
::= { atmStatsEntry 8 }
--
-- ATM Host Group
--
-- Counts the amount of traffic sent on behalf of each ATM address
-- discovered by the probe, according to associated portSelectGroup
-- criteria
atmHostControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmHostControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ATM host table control entries.
These entries will enable the collection of ATM host
information in the atmHostTable.
Entries in the atmHostTable will be created on behalf of
each entry in this table. A probe is required to support at
most one atmHost collection per instance of an associated
portSelectGroup, therefore the table is indexed by the
portSelGrpIndex."
::= { atmHost 1 }
atmHostControlEntry OBJECT-TYPE
SYNTAX AtmHostControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the atmHostControlTable. Entries in
this table are identified and indexed by the portSelGrpIndex
object. At most one atmHost collection is done per
portSelectGroup.
An example of the indexing of this entry is
atmHostControlInserts.1"
INDEX { portSelGrpIndex }
::= { atmHostControlTable 1 }
AtmHostControlEntry ::= SEQUENCE {
atmHostControlInserts Counter32,
atmHostControlDeletes Counter32,
atmHostControlMaxDesiredEntries Integer32,
atmHostControlPriority ResourcePriority,
atmHostControlAddrCollectScope AddressCollectScope,
atmHostControlDropEvents Counter32,
atmHostControlOwner OwnerString,
atmHostControlStatus RowStatus
}
atmHostControlInserts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times an atmHost entry has been inserted into
the atmHost table. If an entry is inserted, then deleted,
and then inserted, this counter will be incremented by 2.
To allow for efficient implementation strategies, agents may
delay updating this object for short periods of time. For
example, an implementation strategy may allow internal data
structures to differ from those visible via SNMP for short
periods of time. This counter may reflect the internal data
structures for those short periods of time.
Note that the table size can be determined by subtracting
atmHostControlDeletes from atmHostControlInserts."
::= { atmHostControlEntry 1 }
atmHostControlDeletes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times an atmHost entry has been deleted from
the atmHost table (for any reason). If an entry is deleted,
then inserted, and then deleted, this counter will be
incremented by 2.
To allow for efficient implementation strategies, agents may
delay updating this object for short periods of time. For
example, an implementation strategy may allow internal data
structures to differ from those visible via SNMP for short
periods of time. This counter may reflect the internal data
structures for those short periods of time.
Note that the table size can be determined by subtracting
atmHostControlDeletes from atmHostControlInserts."
::= { atmHostControlEntry 2 }
atmHostControlMaxDesiredEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of entries that are desired in the
atmHostTable on behalf of this control entry. The probe will
not create more than this number of associated entries in
the table, but may choose to create fewer entries in this
table for any reason including the lack of resources.
If this value is set to -1, the probe may create any number
of entries in this table.
If the associated instance of atmHostControlStatus object is
equal to active(1), this object may not be modified."
DEFVAL { -1 }
::= { atmHostControlEntry 3 }
atmHostControlPriority OBJECT-TYPE
SYNTAX ResourcePriority
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The priority this collection should be given to retain
resources, in the event the probe must reclaim some
resources in order to add new entries to an existing atmHost
collection or add new collections of other types.
If the associated instance of atmHostControlStatus object is
equal to active(1), this object may not be modified."
DEFVAL { normalPriority }
::= { atmHostControlEntry 4 }
atmHostControlAddrCollectScope OBJECT-TYPE
SYNTAX AddressCollectScope
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object controls the granularity of address collection
in atmHostTable entries created on behalf of this control
entry, according to the rules specified by the
AddressCollectScope textual convention.
If the associated instance of atmHostControlStatus object is
equal to active(1), this object may not be modified."
DEFVAL { prefixAndEsi }
::= { atmHostControlEntry 5 }
atmHostControlDropEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of events in which cells which should have
been counted in the associated atmHostEntry, but were
dropped by the probe due to lack of resources. Note that
this number is not necessarily the number of cells or calls
dropped; it is just the number of times this condition has
been detected."
::= { atmHostControlEntry 6 }
atmHostControlOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The entity that configured this entry and is therefore
using the resources assigned to it."
::= { atmHostControlEntry 7 }
atmHostControlStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this atmHostControlEntry.
An entry may not exist in the active state unless all
objects in the entry have an appropriate value.
Specifically, appropriate values for the associated
instances of atmHostControlMaxDesiredEntries,
atmHostControlPriority, and atmHostControlAddrCollectScope
must be set before this object may be set to active(1).
This control entry may be created and destroyed
independently of the associated portSelGrpEntry, however its
associated atmHostTable can exist only when the
portSelGrpEntry controlling this collection is active.
If this object is not equal to active(1), all associated
entries in the atmHostTable shall be deleted."
::= { atmHostControlEntry 8 }
--
-- ATM Host Table
--
atmHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtmHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of statistics for a particular ATM host
address that has been discovered on behalf of the
portSelectGroup associated with this entry.
The probe will add to this table all addresses seen as the
source or destination address in all calls, on all ports
configured in the portSelGrpEntry controlling this
collection."
::= { atmHost 2 }
atmHostEntry OBJECT-TYPE
SYNTAX AtmHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the atmHostTable.
The portSelGrpIndex value in the index identifies the
portSelectGroup on whose behalf this entry was created.
An example of the indexing of this entry is
atmHostInCells.4.20.<NSAP>.2"
INDEX { portSelGrpIndex, atmHostAddress, atmHostSClass }
::= { atmHostTable 1 }
AtmHostEntry ::= SEQUENCE {
atmHostAddress AtmAddr,
atmHostSClass ServiceClass,
atmHostCreateTime LastCreateTime,
atmHostInCells ZeroBasedCounter32,
atmHostInCellsRollovers ZeroBasedCounter32,
atmHostInHCCells Counter64,
atmHostOutCells ZeroBasedCounter32,
atmHostOutCellsRollovers ZeroBasedCounter32,
atmHostOutHCCells Counter64,
atmHostInNumCallAttempts ZeroBasedCounter32,
atmHostInNumCalls ZeroBasedCounter32,
atmHostOutNumCallAttempts ZeroBasedCounter32,
atmHostOutNumCalls ZeroBasedCounter32,
atmHostInConnTime ConnectTime,
atmHostOutConnTime ConnectTime
}
atmHostAddress OBJECT-TYPE
SYNTAX AtmAddr
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ATM address for this atmHostEntry.
This is represented as an octet string with specific
semantics and length as identified by the AtmAddr textual
convention.
Note that only 20 octet 'AtmAddr' addresses are collected in
this table."
::= { atmHostEntry 1 }
atmHostSClass OBJECT-TYPE
SYNTAX ServiceClass
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The quality of service classification for this entry. See
the ServiceClass textual convention for details and specific
class-of-service values."
::= { atmHostEntry 2 }
atmHostCreateTime OBJECT-TYPE
SYNTAX LastCreateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this entry was activated. This
can be used by the management station to ensure that the
entry has not been deleted and recreated between polls."
::= { atmHostEntry 3 }
atmHostInCells OBJECT-TYPE
SYNTAX ZeroBasedCounter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of error-free cells detected on ATM connections
associated with this portSelectGroup, in which this ATM
address was identified as the receiver address, or one of
the leaf addresses on a point-to-multipoint ATM connection."
::= { atmHostEntry 4 }
atmHostInCellsRollovers OBJECT-TYPE
SYNTAX ZeroBasedCounter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that the associated instance of the
atmHostInCells object has transitioned from the value
2^^32-1 to zero."
::= { atmHostEntry 5 }
atmHostInHCCells OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The high capacity version of the atmHostInCells object."
::= { atmHostEntry 6 }