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
|
-- MIB created 10/11/99 20:28:38, by
-- SMIC (the next generation) version 1.6.29, November 22, 1994.
IBMFRBRS-MIB DEFINITIONS ::= BEGIN
-- From file: "ibmfrbrs.mi2"
-- Compile options "G A T M"
IMPORTS
Counter32, Integer32, Gauge32, IpAddress
FROM SNMPv2-SMI-v1
OBJECT-TYPE
FROM RFC-1212
enterprises
FROM RFC1155-SMI
DisplayString
FROM SNMPv2-TC-v1
ifIndex
FROM RFC1213-MIB;
ibmfrBRS OBJECT IDENTIFIER ::= { enterprises ibm(2) ibmProd(6) ibmIROC(119) ibmIROCrouting(4) ibmIROCroutingfr(4) 4 }
-- MODULE-IDENTITY
-- LastUpdated
-- 9810271200Z
-- OrgName
-- IBM
-- ContactInfo
-- Randy Worzella
-- IBM Corporation
-- 800 Park Offices Drive
-- V28A/664
-- P.O. Box 12195
-- Research Triangle Park, NC 27709, USA
-- Tel: 1 919 254 2202
-- E-mail: worzella@us.ibm.com
-- Descr
-- MIB for managing the Bandwidth Reservation System (BRS) over
-- Frame Relay links,
ibmfrBRSOperational OBJECT IDENTIFIER ::= { ibmfrBRS 1 }
ibmfrBRSAdministravive OBJECT IDENTIFIER ::= { ibmfrBRS 2 }
ibmfrBRSInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmfrBRSInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"FR BRS interface information."
::= { ibmfrBRSOperational 1 }
ibmfrBRSInterfaceEntry OBJECT-TYPE
SYNTAX IbmfrBRSInterfaceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information related to a particular FR BRS interface."
INDEX { ifIndex }
::= { ibmfrBRSInterfaceTable 1 }
IbmfrBRSInterfaceEntry ::= SEQUENCE {
ibmfrBRSInterfaceMaxQueue Integer32,
ibmfrBRSInterfaceMinQueue Integer32,
ibmfrBRSInterfaceTotalBandwidth Integer32,
ibmfrBRSInterfaceTotalCircuitClasses Integer32,
ibmfrBRSInterfaceDefaultCircuitClassName DisplayString
}
ibmfrBRSInterfaceMaxQueue OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum queue length for each priority queue
of each traffic class that is defined for a virtual
circuit."
::= { ibmfrBRSInterfaceEntry 1 }
ibmfrBRSInterfaceMinQueue OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum queue length for each priority queue
of each traffic class that is defined for a virtual
circuit."
::= { ibmfrBRSInterfaceEntry 2 }
ibmfrBRSInterfaceTotalBandwidth OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total bandwidth which is a sum of the individual
bandwidth allocations for each circuit class defined
for this interface."
::= { ibmfrBRSInterfaceEntry 3 }
ibmfrBRSInterfaceTotalCircuitClasses OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of circuit classes defined for this
interface. This includes the predefined DEFAULT circuit
class."
::= { ibmfrBRSInterfaceEntry 4 }
ibmfrBRSInterfaceDefaultCircuitClassName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the circuit class that is considered the
default circuit class. It is used for virtual circuits
not explicitly assigned to any circuit class."
::= { ibmfrBRSInterfaceEntry 5 }
ibmfrBRSCircuitClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmfrBRSCircuitClassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"FR BRS circuit class information."
::= { ibmfrBRSOperational 2 }
ibmfrBRSCircuitClassEntry OBJECT-TYPE
SYNTAX IbmfrBRSCircuitClassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information related to a particular circuit class
defined for a given FR interface."
INDEX { ifIndex, ibmfrBRSCircuitClassName }
::= { ibmfrBRSCircuitClassTable 1 }
IbmfrBRSCircuitClassEntry ::= SEQUENCE {
ibmfrBRSCircuitClassName DisplayString,
ibmfrBRSCircuitClassBandwidth Integer32,
ibmfrBRSCircuitClassPacketXmit Counter32,
ibmfrBRSCircuitClassBytesXmit Counter32,
ibmfrBRSCircuitClassBytesOverflow Counter32,
ibmfrBRSCircuitClassLastPacketXmit Counter32,
ibmfrBRSCircuitClassLastBytesXmit Counter32,
ibmfrBRSCircuitClassLastBytesOverflow Counter32,
ibmfrBRSCircuitClassClearCounters INTEGER
}
ibmfrBRSCircuitClassName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The name of a circuit class for this interface."
::= { ibmfrBRSCircuitClassEntry 1 }
ibmfrBRSCircuitClassBandwidth OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The designated percent of bandwidth associated with this
circuit class."
::= { ibmfrBRSCircuitClassEntry 2 }
ibmfrBRSCircuitClassPacketXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that have been transmitted
by this circuit class."
::= { ibmfrBRSCircuitClassEntry 3 }
ibmfrBRSCircuitClassBytesXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that have been
transmitted by this circuit class."
::= { ibmfrBRSCircuitClassEntry 4 }
ibmfrBRSCircuitClassBytesOverflow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this circuit class. This can be either
the maximum queue-length was reached for a priority queue
or the packet could not be queued because the priority queue
was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSCircuitClassEntry 5 }
ibmfrBRSCircuitClassLastPacketXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of packets that have been transmitted by
this circuit class before the counter was being cleared."
::= { ibmfrBRSCircuitClassEntry 6 }
ibmfrBRSCircuitClassLastBytesXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of bytes for packets that have been
transmitted by this circuit class before the counter was being cleared."
::= { ibmfrBRSCircuitClassEntry 7 }
ibmfrBRSCircuitClassLastBytesOverflow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of bytes for packets that could not be
transmitted for this circuit class before the counter was being cleared."
::= { ibmfrBRSCircuitClassEntry 8 }
ibmfrBRSCircuitClassClearCounters OBJECT-TYPE
SYNTAX INTEGER(0..0)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Clear all statistics counters associated with this circuit class.
The counter is cleared immediately on completion of the set operation
and the previous counter values are saved."
::= { ibmfrBRSCircuitClassEntry 9 }
ibmfrBRSCircuitTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmfrBRSCircuitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"FR BRS virtual circuit information."
::= { ibmfrBRSOperational 3 }
ibmfrBRSCircuitEntry OBJECT-TYPE
SYNTAX IbmfrBRSCircuitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information related to a particular FR virtual circuit
assigned to a circuit class on this FR interface."
INDEX { ifIndex, ibmfrBRSCircuitClassName, ibmfrBRSCircuitNumber }
::= { ibmfrBRSCircuitTable 1 }
IbmfrBRSCircuitEntry ::= SEQUENCE {
ibmfrBRSCircuitNumber Integer32,
ibmfrBRSCircuitMaxQueue Integer32,
ibmfrBRSCircuitMinQueue Integer32,
ibmfrBRSCircuitTotalBandwidth Integer32,
ibmfrBRSCircuitTotalTrafficClasses Integer32,
ibmfrBRSCircuitDefaultTrafficClassName DisplayString,
ibmfrBRSCircuitDefaultTrafficClassPrio INTEGER,
ibmfrBRSCircuitSpecification INTEGER,
ibmfrBRSCircuitSuperClassName DisplayString,
ibmfrBRSCircuitSVCName DisplayString
}
ibmfrBRSCircuitNumber OBJECT-TYPE
SYNTAX Integer32
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"For PVC circuit this number is the FR DLCI identifying this virtual
circuit.
For SVC circuit this number is the unique identifier number. The
SVC name can be obtained via ibmfrBRSCircuitSVCName,
ibmfrBRSTrafficClassSVCName, or ibmfrBRSProtFiltSVCName."
::= { ibmfrBRSCircuitEntry 1 }
ibmfrBRSCircuitMaxQueue OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum queue length for each priority queue
of each traffic class that is defined for a virtual
circuit. This value overrides the max queue length
specified for the interface and indicated by
ibmfrBRSInterfaceMaxQueue."
::= { ibmfrBRSCircuitEntry 2 }
ibmfrBRSCircuitMinQueue OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum queue length for each priority queue
of each traffic class that is defined for a virtual
circuit. This value overrides the min queue length
specified for the interface and indicated by
ibmfrBRSInterfaceMinQueue."
::= { ibmfrBRSCircuitEntry 3 }
ibmfrBRSCircuitTotalBandwidth OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total bandwidth which is a sum of the individual
bandwidth allocations for each traffic class defined
for this virtual circuit."
::= { ibmfrBRSCircuitEntry 4 }
ibmfrBRSCircuitTotalTrafficClasses OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of traffic classes defined for this
virtual circuit. This includes the predefined LOCAL
and DEFAULT traffic classes."
::= { ibmfrBRSCircuitEntry 5 }
ibmfrBRSCircuitDefaultTrafficClassName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the traffic class that is considered the
default traffic class. It is used for protocols and
filters not explicitly assigned to any traffic class."
::= { ibmfrBRSCircuitEntry 6 }
ibmfrBRSCircuitDefaultTrafficClassPrio OBJECT-TYPE
SYNTAX INTEGER {
low(1),
normal(2),
high(3),
urgent(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The priority of the default traffic class."
::= { ibmfrBRSCircuitEntry 7 }
ibmfrBRSCircuitSpecification OBJECT-TYPE
SYNTAX INTEGER {
defaults(1),
specific(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of which traffic classes are
being used by a virtual circuit.
defaults(1) - No specific traffic classes
have been defined and the virtual
circuit is using the default
traffic class definitions.
specific(2) - Specific traffic classes have
been defined and are being used by
the virtual circuit."
::= { ibmfrBRSCircuitEntry 8 }
ibmfrBRSCircuitSuperClassName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the traffic class that is considered the
super traffic class. The protocols and filters assigned
to the super class have the higher priority than those
assigned to any other traffic classes.
The null string indicates that the super class doesn't
exist."
::= { ibmfrBRSCircuitEntry 9 }
ibmfrBRSCircuitSVCName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the SVC. This only applies to SVC circuit.
A null string indicates that this circuit is a PVC."
::= { ibmfrBRSCircuitEntry 10 }
ibmfrBRSTrafficClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmfrBRSTrafficClassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"FR BRS traffic class information."
::= { ibmfrBRSOperational 4 }
ibmfrBRSTrafficClassEntry OBJECT-TYPE
SYNTAX IbmfrBRSTrafficClassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information related to a specific traffic class
defined for a particular virtual circuit."
INDEX { ifIndex, ibmfrBRSCircuitClassName, ibmfrBRSCircuitNumber, ibmfrBRSTrafficClassName }
::= { ibmfrBRSTrafficClassTable 1 }
IbmfrBRSTrafficClassEntry ::= SEQUENCE {
ibmfrBRSTrafficClassName DisplayString,
ibmfrBRSTrafficClassBandwidth Integer32,
ibmfrBRSTrafficClassTotalPacketXmit Counter32,
ibmfrBRSTrafficClassPacketXmitLow Counter32,
ibmfrBRSTrafficClassPacketXmitNormal Counter32,
ibmfrBRSTrafficClassPacketXmitHigh Counter32,
ibmfrBRSTrafficClassPacketXmitUrgent Counter32,
ibmfrBRSTrafficClassTotalBytesXmit Counter32,
ibmfrBRSTrafficClassBytesXmitLow Counter32,
ibmfrBRSTrafficClassBytesXmitNormal Counter32,
ibmfrBRSTrafficClassBytesXmitHigh Counter32,
ibmfrBRSTrafficClassBytesXmitUrgent Counter32,
ibmfrBRSTrafficClassTotalBytesOverflow Counter32,
ibmfrBRSTrafficClassBytesOverflowLow Counter32,
ibmfrBRSTrafficClassBytesOverflowNormal Counter32,
ibmfrBRSTrafficClassBytesOverflowHigh Counter32,
ibmfrBRSTrafficClassBytesOverflowUrgent Counter32,
ibmfrBRSTrafficClassTotalPacketOverflow Counter32,
ibmfrBRSTrafficClassPacketOverflowLow Counter32,
ibmfrBRSTrafficClassPacketOverflowNormal Counter32,
ibmfrBRSTrafficClassPacketOverflowHigh Counter32,
ibmfrBRSTrafficClassPacketOverflowUrgent Counter32,
ibmfrBRSTrafficClassTotalLastPacketXmit Counter32,
ibmfrBRSTrafficClassLastPacketXmitLow Counter32,
ibmfrBRSTrafficClassLastPacketXmitNormal Counter32,
ibmfrBRSTrafficClassLastPacketXmitHigh Counter32,
ibmfrBRSTrafficClassLastPacketXmitUrgent Counter32,
ibmfrBRSTrafficClassTotalLastBytesXmit Counter32,
ibmfrBRSTrafficClassLastBytesXmitLow Counter32,
ibmfrBRSTrafficClassLastBytesXmitNormal Counter32,
ibmfrBRSTrafficClassLastBytesXmitHigh Counter32,
ibmfrBRSTrafficClassLastBytesXmitUrgent Counter32,
ibmfrBRSTrafficClassTotalLastBytesOverflow Counter32,
ibmfrBRSTrafficClassLastBytesOverflowLow Counter32,
ibmfrBRSTrafficClassLastBytesOverflowNmal Counter32,
ibmfrBRSTrafficClassLastBytesOverflowHigh Counter32,
ibmfrBRSTrafficClassLastBytesOverflowUgent Counter32,
ibmfrBRSTrafficClassTotalLastPacketOverflow Counter32,
ibmfrBRSTrafficClassLastPacketOverflowLow Counter32,
ibmfrBRSTrafficClassLastPacketOverflowNmal Counter32,
ibmfrBRSTrafficClassLastPacketOverflowHigh Counter32,
ibmfrBRSTrafficClassLastPacketOverflowUgent Counter32,
ibmfrBRSTrafficClassClearCounters INTEGER,
ibmfrBRSTrafficClassSVCName DisplayString
}
ibmfrBRSTrafficClassName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The name of a traffic class for this virtual
circuit."
::= { ibmfrBRSTrafficClassEntry 1 }
ibmfrBRSTrafficClassBandwidth OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The designated percent of bandwidth associated with this
traffic class.
Since the super class has higher priority than any other traffic
class, the percent of bandwidth is indicated by zero"
::= { ibmfrBRSTrafficClassEntry 2 }
ibmfrBRSTrafficClassTotalPacketXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that have been transmitted
by this traffic class."
::= { ibmfrBRSTrafficClassEntry 3 }
ibmfrBRSTrafficClassPacketXmitLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that have been transmitted
by this traffic class at priority level of low."
::= { ibmfrBRSTrafficClassEntry 4 }
ibmfrBRSTrafficClassPacketXmitNormal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that have been transmitted
by this traffic class at priority level of normal."
::= { ibmfrBRSTrafficClassEntry 5 }
ibmfrBRSTrafficClassPacketXmitHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that have been transmitted
by this traffic class at priority level of high."
::= { ibmfrBRSTrafficClassEntry 6 }
ibmfrBRSTrafficClassPacketXmitUrgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that have been transmitted
by this traffic class at priority level of urgent."
::= { ibmfrBRSTrafficClassEntry 7 }
ibmfrBRSTrafficClassTotalBytesXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that have been
transmitted by this traffic class."
::= { ibmfrBRSTrafficClassEntry 8 }
ibmfrBRSTrafficClassBytesXmitLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes that have been transmitted
by this traffic class at priority level of low."
::= { ibmfrBRSTrafficClassEntry 9 }
ibmfrBRSTrafficClassBytesXmitNormal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes that have been transmitted
by this traffic class at priority level of normal."
::= { ibmfrBRSTrafficClassEntry 10 }
ibmfrBRSTrafficClassBytesXmitHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes that have been transmitted
by this traffic class at priority level of high."
::= { ibmfrBRSTrafficClassEntry 11 }
ibmfrBRSTrafficClassBytesXmitUrgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes that have been transmitted
by this traffic class at priority level of urgent."
::= { ibmfrBRSTrafficClassEntry 12 }
ibmfrBRSTrafficClassTotalBytesOverflow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class. This can be either
the maximum queue-length was reached for a priority queue
or the packet could not be queued because the priority queue
was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 13 }
ibmfrBRSTrafficClassBytesOverflowLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority level of
low. This can be either the maximum queue-length was reached
for a priority queue or the packet could not be queued because
the priority queue was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 14 }
ibmfrBRSTrafficClassBytesOverflowNormal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority level of
normal. This can be either the maximum queue-length was reached
for a priority queue or the packet could not be queued because
the priority queue was at the minimum queue length threshold and
the packet came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 15 }
ibmfrBRSTrafficClassBytesOverflowHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority level of
high. This can be either the maximum queue-length was reached
for a priority queue or the packet could not be queued because
the priority queue was at the minimum queue length threshold and
the packet came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 16 }
ibmfrBRSTrafficClassBytesOverflowUrgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority level of
urgent. This can be either the maximum queue-length was reached
for a priority queue or the packet could not be queued because
the priority queue was at the minimum queue length threshold and
the packet came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 17 }
ibmfrBRSTrafficClassTotalPacketOverflow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be
transmitted for this traffic class. This can be either
the maximum queue-length was reached for a priority queue
or the packet could not be queued because the priority queue
was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 18 }
ibmfrBRSTrafficClassPacketOverflowLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be transmitted for
this traffic class at priority level of low. This can be either
the maximum queue-length was reached for a priority queue
or the packet could not be queued because the priority queue
was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 19 }
ibmfrBRSTrafficClassPacketOverflowNormal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be transmitted for
this traffic class at priority level of normal. This can be either
the maximum queue-length was reached for a priority queue
or the packet could not be queued because the priority queue
was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 20 }
ibmfrBRSTrafficClassPacketOverflowHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be transmitted for
this traffic class at priority level of high. This can be either
the maximum queue-length was reached for a priority queue
or the packet could not be queued because the priority queue
was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 21 }
ibmfrBRSTrafficClassPacketOverflowUrgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be transmitted for
this traffic class at priority level of urgent. This can be either
the maximum queue-length was reached for a priority queue
or the packet could not be queued because the priority queue
was at the minimum queue length threshold and the packet
came from an interface that was running low on receive buffers."
::= { ibmfrBRSTrafficClassEntry 22 }
ibmfrBRSTrafficClassTotalLastPacketXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of packets that have been transmitted
by this traffic class before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 23 }
ibmfrBRSTrafficClassLastPacketXmitLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of packets that have been transmitted
by this traffic class at priority level of low before the
counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 24 }
ibmfrBRSTrafficClassLastPacketXmitNormal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of packets that have been transmitted
by this traffic class at priority level of normal before the
counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 25 }
ibmfrBRSTrafficClassLastPacketXmitHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of packets that have been transmitted
by this traffic class at priority level of high before the
counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 26 }
ibmfrBRSTrafficClassLastPacketXmitUrgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last total number of packets that have been transmitted
by this traffic class at priority level of urgent before the
counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 27 }
ibmfrBRSTrafficClassTotalLastBytesXmit OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that have been
transmitted by this traffic class before the counter
was being cleared."
::= { ibmfrBRSTrafficClassEntry 28 }
ibmfrBRSTrafficClassLastBytesXmitLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that have been
transmitted by this traffic class at priority level
of low before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 29 }
ibmfrBRSTrafficClassLastBytesXmitNormal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that have been
transmitted by this traffic class at priority level
of normal before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 30 }
ibmfrBRSTrafficClassLastBytesXmitHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that have been
transmitted by this traffic class at priority level
of high before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 31 }
ibmfrBRSTrafficClassLastBytesXmitUrgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that have been
transmitted by this traffic class at priority level
of urgent before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 32 }
ibmfrBRSTrafficClassTotalLastBytesOverflow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class before the counter
was being cleared."
::= { ibmfrBRSTrafficClassEntry 33 }
ibmfrBRSTrafficClassLastBytesOverflowLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority level of
low before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 34 }
ibmfrBRSTrafficClassLastBytesOverflowNmal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority levle of
normal before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 35 }
ibmfrBRSTrafficClassLastBytesOverflowHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority levle of
high before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 36 }
ibmfrBRSTrafficClassLastBytesOverflowUgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes for packets that could not be
transmitted for this traffic class at priority levle of
urgent before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 37 }
ibmfrBRSTrafficClassTotalLastPacketOverflow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be
transmitted for this traffic class before the counter
was being cleared."
::= { ibmfrBRSTrafficClassEntry 38 }
ibmfrBRSTrafficClassLastPacketOverflowLow OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be
transmitted for this traffic class at priority level of
low before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 39 }
ibmfrBRSTrafficClassLastPacketOverflowNmal OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be
transmitted for this traffic class at priority level of
low before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 40 }
ibmfrBRSTrafficClassLastPacketOverflowHigh OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be
transmitted for this traffic class at priority level of
high before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 41 }
ibmfrBRSTrafficClassLastPacketOverflowUgent OBJECT-TYPE
SYNTAX Counter32
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets that could not be
transmitted for this traffic class at priority level of
urgent before the counter was being cleared."
::= { ibmfrBRSTrafficClassEntry 42 }
ibmfrBRSTrafficClassClearCounters OBJECT-TYPE
SYNTAX INTEGER(0..0)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Clear all the statistics counters associated with this traffic class.
The counters are cleared immediately on completion of the set operation
and the previous counter values are saved."
::= { ibmfrBRSTrafficClassEntry 43 }
ibmfrBRSTrafficClassSVCName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the SVC. This only applies to SVC circuit.
A null string indicates that this circuit is a PVC."
::= { ibmfrBRSTrafficClassEntry 44 }
ibmfrBRSProtFiltTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmfrBRSProtFiltEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"FR BRS protocol/filter information."
::= { ibmfrBRSOperational 5 }
ibmfrBRSProtFiltEntry OBJECT-TYPE
SYNTAX IbmfrBRSProtFiltEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information related to a protocol/filter related
to a particular traffic class.
Note that the LOCAL traffic class will never appear
in this table since it never has a protocol/filter
associated with it."
INDEX { ifIndex, ibmfrBRSCircuitClassName, ibmfrBRSCircuitNumber, ibmfrBRSTrafficClassName, ibmfrBRSProtFiltId }
::= { ibmfrBRSProtFiltTable 1 }
IbmfrBRSProtFiltEntry ::= SEQUENCE {
ibmfrBRSProtFiltId DisplayString,
ibmfrBRSProtFiltPrio INTEGER,
ibmfrBRSProtFiltDE INTEGER,
ibmfrBRSProtFiltSVCName DisplayString
}
ibmfrBRSProtFiltId OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The idenitifer for a protocol/filter."
::= { ibmfrBRSProtFiltEntry 1 }
ibmfrBRSProtFiltPrio OBJECT-TYPE
SYNTAX INTEGER {
low(1),
normal(2),
high(3),
urgent(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The priority of the protocol/filter within
the particular traffic class."
::= { ibmfrBRSProtFiltEntry 2 }
ibmfrBRSProtFiltDE OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of whether this traffic type should
be considered discard eligible from a frame relay
point of view."
::= { ibmfrBRSProtFiltEntry 3 }
ibmfrBRSProtFiltSVCName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the SVC. This only applies to SVC circuit.
A null string indicates that this circuit is a PVC."
::= { ibmfrBRSProtFiltEntry 4 }
END
|