-
Notifications
You must be signed in to change notification settings - Fork 29
/
ACD-REGULATOR-MIB.mib
1131 lines (1009 loc) · 38.7 KB
/
ACD-REGULATOR-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
--
-- Accedian Enterprise Specific MIB
--
-- Copyright (c) 2005-2016, Accedian Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
ACD-REGULATOR-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Gauge32, Counter32, Counter64, Unsigned32
FROM SNMPv2-SMI
DisplayString, TruthValue, DateAndTime, RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
acdMibs
FROM ACCEDIAN-SMI;
acdRegulator MODULE-IDENTITY
LAST-UPDATED "201702210100Z"
ORGANIZATION "Accedian Networks, Inc."
CONTACT-INFO
"Accedian Technical Assistance Center
Accedian Networks, Inc.
2351 Alfred-Nobel blvd., Suite N-410
Saint-Laurent, Quebec Canada H4S 2A9
E-mail: [email protected]"
DESCRIPTION
"The Regulators database for this Accedian Networks device."
REVISION "201702210100Z" -- 21 February 2017
DESCRIPTION
"Change the Unit of acdRegulatorCbs and acdRegulatorEbs
from Kbytes to KiB."
REVISION "201609230100Z" -- 23 September 2016
DESCRIPTION
"Add acdRegulatorHistStatsID and acdRegulatorHistStatsSampleIndex
to acdRegulatorHistStatsGroup."
REVISION "201605260100Z" -- 26 May 2016
DESCRIPTION
"Set access level to read-only for acdRegulatorHistStatsID,
acdRegulatorHistStatsSampleIndex."
REVISION "201406090000Z" -- 09 Jun 2014
DESCRIPTION
"Added Green, Yellow, Red Stats to acdRegulatorStatsEntry."
REVISION "201312010000Z" -- 01.Dec 2013
DESCRIPTION
"Added CIR-MAX, EIR-MAX to AcdRegulatorEntry."
REVISION "201201100100Z" -- 10 Jan 2012
DESCRIPTION
"Add acdRegulatorWorkingRate entry in acdRegulatorTable."
REVISION "201110100100Z" -- 10 October 2011
DESCRIPTION
"Add acdRegulatorTableLastChangeTid."
REVISION "201011100100Z" -- 10 November 2010
DESCRIPTION
"Add compliance section."
REVISION "200805010100Z" -- 1 May 2008
DESCRIPTION
"Add RowStatus in acdRegulatorTable table."
REVISION "200802060100Z" -- 6 Feb 2008
DESCRIPTION
"Add support for history table."
REVISION "200703280100Z" -- 28 March 2007
DESCRIPTION
"Initial version of MIB module ACD-REGULATOR-MIB."
::= { acdMibs 6 }
acdRegulatorNotifications OBJECT IDENTIFIER ::= { acdRegulator 4 }
acdRegulatorMIBObjects OBJECT IDENTIFIER ::= { acdRegulator 5 }
acdRegulatorConformance OBJECT IDENTIFIER ::= { acdRegulator 6 }
acdRegulatorTableTid OBJECT IDENTIFIER ::= { acdRegulatorMIBObjects 1 }
-----------------------------------------------------------------------
-- The Regulators table
-- This table contains all Regulators.
---------------------------------------------------------------------------
acdRegulatorTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdRegulatorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of all Regulators"
::= { acdRegulator 1 }
acdRegulatorEntry OBJECT-TYPE
SYNTAX AcdRegulatorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Regulator is a two rates three colors engine to regulate a
given traffic."
INDEX { acdRegulatorID }
::= { acdRegulatorTable 1 }
AcdRegulatorEntry ::= SEQUENCE {
acdRegulatorID Unsigned32,
acdRegulatorName DisplayString,
acdRegulatorCir Unsigned32,
acdRegulatorCbs Unsigned32,
acdRegulatorEir Unsigned32,
acdRegulatorEbs Unsigned32,
acdRegulatorIsBlind TruthValue,
acdRegulatorIsCouple TruthValue,
acdRegulatorRowStatus RowStatus,
acdRegulatorWorkingRate INTEGER,
acdRegulatorCirMax Unsigned32,
acdRegulatorEirMax Unsigned32
}
acdRegulatorID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each regulator entry. Its value ranges from 1 to
MAXINT (4 bytes). "
::= { acdRegulatorEntry 1 }
acdRegulatorName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is a string to identify the regulator."
::= { acdRegulatorEntry 2 }
acdRegulatorCir OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The committed information rate."
DEFVAL { 20000 }
::= { acdRegulatorEntry 3 }
acdRegulatorCbs OBJECT-TYPE
SYNTAX Unsigned32
UNITS "KiB"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The committed burst size."
DEFVAL { 8 }
::= { acdRegulatorEntry 4 }
acdRegulatorEir OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The excess information rate."
DEFVAL { 1000 }
::= { acdRegulatorEntry 5 }
acdRegulatorEbs OBJECT-TYPE
SYNTAX Unsigned32
UNITS "KiB"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The excess burst size."
DEFVAL { 8 }
::= { acdRegulatorEntry 6 }
acdRegulatorIsBlind OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable or disable the pre-marking color processing."
DEFVAL { false }
::= { acdRegulatorEntry 7 }
acdRegulatorIsCouple OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable or disable the coupling flag in this regulator."
DEFVAL { false }
::= { acdRegulatorEntry 8 }
acdRegulatorRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"All columns must have a valid value before a row can be activated. To
create a new regulator you shall provide the a unique name for
an empty row with the RowStatus set to Create and Go. To delete the
row you need to set the RowStatus to destroy."
::= { acdRegulatorEntry 9 }
acdRegulatorWorkingRate OBJECT-TYPE
SYNTAX INTEGER {
layer1(1),
layer2(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The layer at which the regulator work. The layer-1 Ethernet Frame
contains all Ethernet Frame fields plus the Inter-Frame Gap (IPG),
Preamble and Start-Frame Delimiter (SFD). The layer-2 Ethernet
Frame contains all Ethernet Frame fields."
DEFVAL { layer1 }
::= { acdRegulatorEntry 10 }
acdRegulatorCirMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum committed information rate."
DEFVAL { 20000 }
::= { acdRegulatorEntry 11 }
acdRegulatorEirMax OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum excess information rate."
DEFVAL { 1000 }
::= { acdRegulatorEntry 12 }
---------------------------------------------------------------------------
-- The Regulator Counters table
-- This table contains all counters associated with each regulator.
---------------------------------------------------------------------------
acdRegulatorStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdRegulatorStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of all counters associated with each regulator."
::= { acdRegulator 2 }
acdRegulatorStatsEntry OBJECT-TYPE
SYNTAX AcdRegulatorStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry consists of statitics related to a regulator entry."
INDEX { acdRegulatorStatsID }
::= { acdRegulatorStatsTable 1 }
AcdRegulatorStatsEntry ::= SEQUENCE {
acdRegulatorStatsID Unsigned32,
acdRegulatorStatsAcceptOctets Counter32,
acdRegulatorStatsAcceptOverflowOctets Counter32,
acdRegulatorStatsAcceptHCOctets Counter64,
acdRegulatorStatsAcceptPkts Counter32,
acdRegulatorStatsAcceptOverflowPkts Counter32,
acdRegulatorStatsAcceptHCPkts Counter64,
acdRegulatorStatsAcceptRate Gauge32,
acdRegulatorStatsDropOctets Counter32,
acdRegulatorStatsDropOverflowOctets Counter32,
acdRegulatorStatsDropHCOctets Counter64,
acdRegulatorStatsDropPkts Counter32,
acdRegulatorStatsDropOverflowPkts Counter32,
acdRegulatorStatsDropHCPkts Counter64,
acdRegulatorStatsDropRate Gauge32,
acdRegulatorStatsGreenHCOctets Counter64,
acdRegulatorStatsGreenHCPkts Counter64,
acdRegulatorStatsYellowHCOctets Counter64,
acdRegulatorStatsYellowHCPkts Counter64,
acdRegulatorStatsRedHCOctets Counter64,
acdRegulatorStatsRedHCPkts Counter64,
acdRegulatorStatsGreenRate Gauge32,
acdRegulatorStatsYellowRate Gauge32,
acdRegulatorStatsRedRate Gauge32
}
acdRegulatorStatsID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each regulator entry. Its value ranges from 1 to
MAXINT (4 bytes)."
::= { acdRegulatorStatsEntry 1 }
acdRegulatorStatsAcceptOctets OBJECT-TYPE
SYNTAX Counter32
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator. This is a
32 bits counter. Combined with acdRegulatorStatsAcceptOverflowOctets,
it provides the equivalent of the 64 bits counter
acdRegulatorStatsAcceptHCOctets."
::= { acdRegulatorStatsEntry 2 }
acdRegulatorStatsAcceptOverflowOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorStatsAcceptOctets
counter has overflowed. This is a 32 bits counter. Combined with
acdRegulatorStatsAcceptOctets, it provides the equivalent of the
64 bits counter acdRegulatorStatsAccpetHCOctets."
::= { acdRegulatorStatsEntry 3 }
acdRegulatorStatsAcceptHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator."
::= { acdRegulatorStatsEntry 4 }
acdRegulatorStatsAcceptPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator. This is a
32 bits counter. Combined with acdRegulatorStatsAcceptOverflowPkts,
it provides the equivalent of the 64 bits counter
acdRegulatorStatsAcceptHCPkts."
::= { acdRegulatorStatsEntry 5 }
acdRegulatorStatsAcceptOverflowPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorStatsAcceptPkts
counter has overflowed. This is a 32 bits counter. Combined with
acdRegulatorStatsAcceptPkts, it provides the equivalent of the
64 bits counter acdRegulatorStatsAcceptHCPkts."
::= { acdRegulatorStatsEntry 6 }
acdRegulatorStatsAcceptHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator."
::= { acdRegulatorStatsEntry 7 }
acdRegulatorStatsAcceptRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The accept rate."
::= { acdRegulatorStatsEntry 8 }
acdRegulatorStatsDropOctets OBJECT-TYPE
SYNTAX Counter32
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator. This is a
32 bits counter. Combined with acdRegulatorStatsDropOverflowOctets,
it provides the equivalent of the 64 bits counter
acdRegulatorStatsDropHCOctets."
::= { acdRegulatorStatsEntry 9 }
acdRegulatorStatsDropOverflowOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorStatsDropOctets
counter has overflowed. This is a 32 bits counter. Combined with
acdRegulatorStatsDropOctets, it provides the equivalent of the
64 bits counter acdRegulatorStatsDropHCOctets."
::= { acdRegulatorStatsEntry 10 }
acdRegulatorStatsDropHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator."
::= { acdRegulatorStatsEntry 11 }
acdRegulatorStatsDropPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator. This is a
32 bits counter. Combined with acdRegulatorStatsDropOverflowPkts,
it provides the equivalent of the 64 bits counter
acdRegulatorStatsDropHCPkts."
::= { acdRegulatorStatsEntry 12 }
acdRegulatorStatsDropOverflowPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorStatsDropPkts
counter has overflowed. This is a 32 bits counter. Combined with
acdRegulatorStatsDropPkts, it provides the equivalent of the
64 bits counter acdRegulatorStatsDropHCPkts."
::= { acdRegulatorStatsEntry 13 }
acdRegulatorStatsDropHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator."
::= { acdRegulatorStatsEntry 14 }
acdRegulatorStatsDropRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The drop rate."
::= { acdRegulatorStatsEntry 15 }
acdRegulatorStatsGreenHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Green octets received by this regulator."
::= { acdRegulatorStatsEntry 16 }
acdRegulatorStatsGreenHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Green packets received by this regulator."
::= { acdRegulatorStatsEntry 17 }
acdRegulatorStatsYellowHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Yellow octets received by this regulator."
::= { acdRegulatorStatsEntry 18 }
acdRegulatorStatsYellowHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Yellow packets received by this regulator."
::= { acdRegulatorStatsEntry 19 }
acdRegulatorStatsRedHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Red octets received by this regulator."
::= { acdRegulatorStatsEntry 20 }
acdRegulatorStatsRedHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Red packets received by this regulator."
::= { acdRegulatorStatsEntry 21 }
acdRegulatorStatsGreenRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Green rate."
::= { acdRegulatorStatsEntry 22 }
acdRegulatorStatsYellowRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Yellow rate."
::= { acdRegulatorStatsEntry 23 }
acdRegulatorStatsRedRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Red rate."
::= { acdRegulatorStatsEntry 24 }
---------------------------------------------------------------------------
-- The Regulator History group
-- The Regulator History group records periodic statistical samples
-- from a regulator and stores them for later retrieval.
---------------------------------------------------------------------------
acdRegulatorHistStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdRegulatorHistStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of all counters associated with each regulator."
::= { acdRegulator 3 }
acdRegulatorHistStatsEntry OBJECT-TYPE
SYNTAX AcdRegulatorHistStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Entry consists of statitics related to a regulator entry."
INDEX { acdRegulatorHistStatsID , acdRegulatorHistStatsSampleIndex }
::= { acdRegulatorHistStatsTable 1 }
AcdRegulatorHistStatsEntry ::= SEQUENCE {
acdRegulatorHistStatsID Unsigned32,
acdRegulatorHistStatsSampleIndex Unsigned32,
acdRegulatorHistStatsStatus INTEGER,
acdRegulatorHistStatsDuration Unsigned32,
acdRegulatorHistStatsIntervalEnd DateAndTime,
acdRegulatorHistStatsAcceptOctets Counter32,
acdRegulatorHistStatsAcceptOverflowOctets Counter32,
acdRegulatorHistStatsAcceptHCOctets Counter64,
acdRegulatorHistStatsAcceptPkts Counter32,
acdRegulatorHistStatsAcceptOverflowPkts Counter32,
acdRegulatorHistStatsAcceptHCPkts Counter64,
acdRegulatorHistStatsAcceptAvgRate Gauge32,
acdRegulatorHistStatsAcceptMinRate Gauge32,
acdRegulatorHistStatsAcceptMaxRate Gauge32,
acdRegulatorHistStatsDropOctets Counter32,
acdRegulatorHistStatsDropOverflowOctets Counter32,
acdRegulatorHistStatsDropHCOctets Counter64,
acdRegulatorHistStatsDropPkts Counter32,
acdRegulatorHistStatsDropOverflowPkts Counter32,
acdRegulatorHistStatsDropHCPkts Counter64,
acdRegulatorHistStatsDropAvgRate Gauge32,
acdRegulatorHistStatsDropMinRate Gauge32,
acdRegulatorHistStatsDropMaxRate Gauge32,
acdRegulatorHistStatsGreenHCOctets Counter64,
acdRegulatorHistStatsGreenHCPkts Counter64,
acdRegulatorHistStatsYellowHCOctets Counter64,
acdRegulatorHistStatsYellowHCPkts Counter64,
acdRegulatorHistStatsRedHCOctets Counter64,
acdRegulatorHistStatsRedHCPkts Counter64,
acdRegulatorHistStatsGreenAvgRate Gauge32,
acdRegulatorHistStatsGreenMinRate Gauge32,
acdRegulatorHistStatsGreenMaxRate Gauge32,
acdRegulatorHistStatsYellowAvgRate Gauge32,
acdRegulatorHistStatsYellowMinRate Gauge32,
acdRegulatorHistStatsYellowMaxRate Gauge32,
acdRegulatorHistStatsRedAvgRate Gauge32,
acdRegulatorHistStatsRedMinRate Gauge32,
acdRegulatorHistStatsRedMaxRate Gauge32
}
acdRegulatorHistStatsID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique value for each regulator entry. Its value ranges from 1 to
MAXINT (4 bytes)."
::= { acdRegulatorHistStatsEntry 1 }
acdRegulatorHistStatsSampleIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index that uniquely identifies the particular sample this entry
represents among all samples associated with the same regulator
instance. This index starts at 1 and increases by one as each new
sample."
::= { acdRegulatorHistStatsEntry 2 }
acdRegulatorHistStatsStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this acdRegulatorHistStats entry."
::= { acdRegulatorHistStatsEntry 3 }
acdRegulatorHistStatsDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interval in seconds over which the data is sampled for this entry."
::= { acdRegulatorHistStatsEntry 4 }
acdRegulatorHistStatsIntervalEnd OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the time of the end of this entry."
::= { acdRegulatorHistStatsEntry 5 }
acdRegulatorHistStatsAcceptOctets OBJECT-TYPE
SYNTAX Counter32
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator during this
sampling interval. This is a 32 bits counter. Combined with
acdRegulatorHistStatsAcceptOverflowOctets, it provides the equivalent
of the 64 bits counter acdRegulatorHistStatsAcceptHCOctets."
::= { acdRegulatorHistStatsEntry 6 }
acdRegulatorHistStatsAcceptOverflowOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorHistStatsAcceptOctets
counter has overflowed during this sampling interval. This is a
32 bits counter. Combined with acdRegulatorHistStatsAcceptOctets,
it provides the equivalent of the 64 bits counter
acdRegulatorHistStatsAcceptHCOctets."
::= { acdRegulatorHistStatsEntry 7 }
acdRegulatorHistStatsAcceptHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 8 }
acdRegulatorHistStatsAcceptPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator during this
sampling interval. This is a 32 bits counter. Combined with
acdRegulatorHistStatsAcceptOverflowPkts, it provides the equivalent
of the 64 bits counter acdRegulatorHistStatsAcceptHCPkts."
::= { acdRegulatorHistStatsEntry 9 }
acdRegulatorHistStatsAcceptOverflowPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorHistStatsAcceptPkts
counter has overflowed during this sampling interval. This is a
32 bits counter. Combined with acdRegulatorHistStatsAcceptPkts, it
provides the equivalent of the 64 bits counter
acdRegulatorHistStatsAcceptHCPkts."
::= { acdRegulatorHistStatsEntry 10 }
acdRegulatorHistStatsAcceptHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 11 }
acdRegulatorHistStatsAcceptAvgRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average accept rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 12 }
acdRegulatorHistStatsAcceptMinRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum accept rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 13 }
acdRegulatorHistStatsAcceptMaxRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum accept rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 14 }
acdRegulatorHistStatsDropOctets OBJECT-TYPE
SYNTAX Counter32
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator during this
sampling interval. This is a 32 bits counter. Combined the overflow,
counter it provides the equivalent of the 64 bits counter
acdRegulatorHistStatsDropHCOctets."
::= { acdRegulatorHistStatsEntry 15 }
acdRegulatorHistStatsDropOverflowOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorHistStatsDropOctets
counter has overflowed during this sampling interval. This is a
32 bits counter. Combined with acdRegulatorHistStatsDropOctets, it
provides the equivalent of the 64 bits counter
acdRegulatorHistStatsDropHCOctets."
::= { acdRegulatorHistStatsEntry 16 }
acdRegulatorHistStatsDropHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 17 }
acdRegulatorHistStatsDropPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator during this
sampling interval. This is a 32 bits counter. Combined with
acdRegulatorHistStatsDropOverflowPkts, it provides the equivalent of
the 64 bits counter acdRegulatorHistStatsDropHCPkts."
::= { acdRegulatorHistStatsEntry 18 }
acdRegulatorHistStatsDropOverflowPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated acdRegulatorHistStatsDropPkts
counter has overflowed during this sampling interval. This is a
32 bits counter. Combined with acdRegulatorHistStatsDropPkts, it
provides the equivalent of the 64 bits counter
acdRegulatorHistStatsDropHCPkts."
::= { acdRegulatorHistStatsEntry 19 }
acdRegulatorHistStatsDropHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 20 }
acdRegulatorHistStatsDropAvgRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average drop rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 21 }
acdRegulatorHistStatsDropMinRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum drop rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 22 }
acdRegulatorHistStatsDropMaxRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum drop rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 23 }
acdRegulatorHistStatsGreenHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Green octets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 24 }
acdRegulatorHistStatsGreenHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Green packets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 25 }
acdRegulatorHistStatsYellowHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Yellow octets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 26 }
acdRegulatorHistStatsYellowHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Yellow packets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 27 }
acdRegulatorHistStatsRedHCOctets OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Red octets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 28 }
acdRegulatorHistStatsRedHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Red packets received by this regulator during this
sampling interval."
::= { acdRegulatorHistStatsEntry 29 }
acdRegulatorHistStatsGreenAvgRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average green rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 30 }
acdRegulatorHistStatsGreenMinRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum green rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 31 }
acdRegulatorHistStatsGreenMaxRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum green rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 32 }
acdRegulatorHistStatsYellowAvgRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average Yellow rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 33 }
acdRegulatorHistStatsYellowMinRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Yellow rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 34 }
acdRegulatorHistStatsYellowMaxRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Yellow rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 35 }
acdRegulatorHistStatsRedAvgRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average Red rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 36 }
acdRegulatorHistStatsRedMinRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Red rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 37 }
acdRegulatorHistStatsRedMaxRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Red rate during this sampling interval."
::= { acdRegulatorHistStatsEntry 38 }
---------------------------------------------------------------------------
-- Transaction ID Information
---------------------------------------------------------------------------
acdRegulatorTableLastChangeTid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the transaction ID of the last change of the acdRegulatorTable
table. If this value is different since the last read this is indicate
a table change."
::= { acdRegulatorTableTid 1 }
---------------------------------------------------------------------------
-- ACD-REGULATOR-MIB Module - Conformance Information
---------------------------------------------------------------------------
acdRegulatorCompliances OBJECT IDENTIFIER ::= { acdRegulatorConformance 1 }
acdRegulatorGroups OBJECT IDENTIFIER ::= { acdRegulatorConformance 2 }