summaryrefslogtreecommitdiff
path: root/MIBS/mrv/NBS-SLA-MIB
blob: 51f445325113f399b77c0a5dd5c253748897de19 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
NBS-SLA-MIB DEFINITIONS ::= BEGIN

IMPORTS
    OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY,
    Unsigned32, Counter32, Counter64
        FROM SNMPv2-SMI

    InterfaceIndex
        FROM IF-MIB

    nbs
        FROM NBS-MIB
    ;

nbsSlaMib  MODULE-IDENTITY
    LAST-UPDATED "201610190000Z" -- October 19, 2016
    ORGANIZATION "NBS"
    CONTACT-INFO
      "For technical support, please contact your service channel"
    DESCRIPTION
      "MIB for representing Service Level Agreement (SLA) information"
    ::= { nbs 216 }


-- *******************************************************************
-- NBS-SLA-MIB local defines
-- *******************************************************************

nbsSlaTrafficGenGrp  OBJECT-IDENTITY
    STATUS    current
    DESCRIPTION
      "Traffic Generation configuration and reporting capabilities"
    ::= { nbsSlaMib 1 }

nbsSlaLossGainGrp  OBJECT-IDENTITY
    STATUS    current
    DESCRIPTION
      "Loss Gain Analysis configuration and reporting capabilities"
    ::= { nbsSlaMib 2 }

nbsSlaPerfMonGrp  OBJECT-IDENTITY
    STATUS    current
    DESCRIPTION
      "Performance Monitoring configuration and reporting capabilities"
    ::= { nbsSlaMib 3 }

-- *******************************************************************
--
-- the nbsSlaTrafficGenTable
--
-- *******************************************************************

nbsSlaTrafficGenTableSize OBJECT-TYPE
        SYNTAX      Unsigned32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
          "The number of entries in nbsSlaTrafficGenTable"
        ::= { nbsSlaTrafficGenGrp 1 }

nbsSlaTrafficGenTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF NbsSlaTrafficGenEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
          "Traffic Generation information."
        ::= { nbsSlaTrafficGenGrp 2 }

NbsSlaTrafficGenEntry ::= SEQUENCE {
        nbsSlaTrafficGenIfIndex            InterfaceIndex,
        nbsSlaTrafficGenAction             INTEGER,
        nbsSlaTrafficGenFrameSize          INTEGER,
        nbsSlaTrafficGenFrameSizeType      INTEGER,
        nbsSlaTrafficGenFrameCount         Unsigned32,
        nbsSlaTrafficGenFrameCountType     INTEGER,
        nbsSlaTrafficGenInterPacketGap     INTEGER,
        nbsSlaTrafficGenMaxHeaders         INTEGER,
        nbsSlaTrafficGenMaxPattern         INTEGER,
        nbsSlaTrafficGenHeaders            OCTET STRING,
        nbsSlaTrafficGenDaType             INTEGER,
        nbsSlaTrafficGenDa                 OCTET STRING,
        nbsSlaTrafficGenSaType             INTEGER,
        nbsSlaTrafficGenSa                 OCTET STRING,
        nbsSlaTrafficGenTagType            INTEGER,
        nbsSlaTrafficGenTag                OCTET STRING,
        nbsSlaTrafficGenPattern            OCTET STRING,
        nbsSlaTrafficGenPatternType        INTEGER
}

nbsSlaTrafficGenEntry      OBJECT-TYPE
        SYNTAX      NbsSlaTrafficGenEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
          "The Traffic Generation port's information"
        INDEX { nbsSlaTrafficGenIfIndex }
        ::= { nbsSlaTrafficGenTable 1 }

nbsSlaTrafficGenIfIndex   OBJECT-TYPE
        SYNTAX      InterfaceIndex
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
          "The Mib2 ifIndex of this Traffic Generation port"
        ::= { nbsSlaTrafficGenEntry 1 }

nbsSlaTrafficGenAction OBJECT-TYPE
        SYNTAX      INTEGER{
        notSupported    (1),
        start           (2),
        stop            (3)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Different actions to activate the traffic generation. There
        are three frame generation activities: specify, start, and
        stop. Specifying and actually starting traffic may be done
        together or separately. In fact, it is reasonable to specify
        once, then start (and stop) many times."
        DEFVAL { stop }
        ::= { nbsSlaTrafficGenEntry 2 }

nbsSlaTrafficGenFrameSize  OBJECT-TYPE
        SYNTAX      INTEGER (64..9600)
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Frame Size range from 64 to 9600"
        DEFVAL { 64 }
        ::= { nbsSlaTrafficGenEntry 3 }

nbsSlaTrafficGenFrameSizeType OBJECT-TYPE
        SYNTAX      INTEGER{
        notSupported    (1),
        random          (2),
        fixed           (3)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies the size of generated frames: random, or per
        'nbsSlaTrafficGenFrameSize' bytes. The random value range is limited
        by ANDing it with (the mask value) 'nbsSlaTrafficGenFrameSize'; a
        zero result is treated as 64."
        DEFVAL { fixed }
        ::= { nbsSlaTrafficGenEntry 4 }

nbsSlaTrafficGenFrameCount  OBJECT-TYPE
        SYNTAX      Unsigned32 (1..4294967294)
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Number of frames to generate when a fixed count is desired."
        DEFVAL { 1 }
        ::= { nbsSlaTrafficGenEntry 5 }

nbsSlaTrafficGenFrameCountType OBJECT-TYPE
        SYNTAX      INTEGER{
        notSupported    (1),
        continuous      (2),
        fixed           (3)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies how many frames to generate: a continuous stream that is
        manually stopped, or a fixed count."
        DEFVAL { continuous }
        ::= { nbsSlaTrafficGenEntry 6 }

nbsSlaTrafficGenInterPacketGap  OBJECT-TYPE
        SYNTAX      INTEGER (12..134217727)
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies the number of bytes between generated frames;
        this determines the traffic rate. The default (1249928)
        sets an approx rate of 100/10/1 fps at 1000/100/10 Mbps."
        DEFVAL { 1249928 }
        ::= { nbsSlaTrafficGenEntry 7 }

nbsSlaTrafficGenMaxHeaders  OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "Maximum number of bytes supported in nbsSlaTrafficGenHeaders;
        zero if not supported"
        ::= { nbsSlaTrafficGenEntry 8 }

nbsSlaTrafficGenMaxPattern  OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "Maximum number of bytes supported in nbsSlaTrafficGenPattern;
        zero if not supported"
        ::= { nbsSlaTrafficGenEntry 9 }

nbsSlaTrafficGenHeaders OBJECT-TYPE
        SYNTAX      OCTET STRING (SIZE(48))
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies the 48 bytes following the first 64 bytes of generated
        frames. The remainder of the frame is filled with Pattern bytes."
        DEFVAL { '000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'h }
        ::= { nbsSlaTrafficGenEntry 10 }

nbsSlaTrafficGenDa OBJECT-TYPE
        SYNTAX      OCTET STRING (SIZE(6))
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
          "Destination Address - MAC address"
        DEFVAL { '000000000000'h }
        ::= { nbsSlaTrafficGenEntry 11 }

nbsSlaTrafficGenDaType OBJECT-TYPE
        SYNTAX      INTEGER{
        notSupported    (1),
        random          (2),
        fixed           (3),
        increment       (4)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies the handling of the DA in the Header bytes:
        generate a random value for each frame, use the same
        value for each frame, or increment the initial value
        by 1 for each frame."
        DEFVAL { random }
        ::= { nbsSlaTrafficGenEntry 12 }

nbsSlaTrafficGenSa OBJECT-TYPE
        SYNTAX      OCTET STRING (SIZE(6))
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
          "Source Address - MAC address"
        DEFVAL { '000000000000'h }
        ::= { nbsSlaTrafficGenEntry 13 }

nbsSlaTrafficGenSaType OBJECT-TYPE
        SYNTAX      INTEGER{
        notSupported    (1),
        random          (2),
        fixed           (3),
        increment       (4)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies the handling of the SA in the Header bytes:
        generate a random value for each frame, use the same
        value for each frame, or increment the initial value
        by 1 for each frame."
        DEFVAL { random }
        ::= { nbsSlaTrafficGenEntry 14 }

nbsSlaTrafficGenTag  OBJECT-TYPE
        SYNTAX      OCTET STRING (SIZE(4))
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
          "VLAN tag or e-type plus initial data If VLAN tagging is not
           specified (i.e. Tag does not begin as 81-00), then the first
           two bytes of Tag define the frame type, and the last two Tag
           bytes are the first two data bytes"
        DEFVAL { '00000000'h }
        ::= { nbsSlaTrafficGenEntry 15 }

nbsSlaTrafficGenTagType OBJECT-TYPE
        SYNTAX      INTEGER{
        notSupported    (1),
        random          (2),
        fixed           (3),
        increment       (4)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies the handling of the Tag in the Header bytes:
        generate a random value for each frame, use the same
        value for each frame, or increment the initial value
        by 1 for each frame."
        DEFVAL { random }
        ::= { nbsSlaTrafficGenEntry 16 }

nbsSlaTrafficGenPattern OBJECT-TYPE
        SYNTAX      OCTET STRING (SIZE(4))
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "The one to four Pattern bytes are replicated as needed to fill-out
        the frame to the specified size"
        DEFVAL { '00000000'h }
        ::= { nbsSlaTrafficGenEntry 17 }

nbsSlaTrafficGenPatternType OBJECT-TYPE
        SYNTAX      INTEGER{
        notSupported    (1),
        random          (2),
        fixed           (3)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Specifies the handling of the Pattern bytes that fill-out
        generated frames: generate a random value for each frame,
        or use the same value for each frame."
        DEFVAL { random }
        ::= { nbsSlaTrafficGenEntry 18 }

-- ********************************************************************
-- Loss/Gain Analysis (LGA)
-- ********************************************************************

nbsSlaLossGainTableSize OBJECT-TYPE
        SYNTAX      Unsigned32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
          "The number of entries in nbsSlaLossGainTable"
        ::= { nbsSlaLossGainGrp 1 }

nbsSlaLossGainTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF NbsSlaLossGainEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
        "Contains a description of Loss/Gain Traffic Analysis information."
        ::= { nbsSlaLossGainGrp 2 }

NbsSlaLossGainEntry ::= SEQUENCE {
        nbsSlaLossGainIfIndex            InterfaceIndex,
        nbsSlaLossGainAction             INTEGER,
        nbsSlaLossGainInterval           INTEGER,
        nbsSlaLossGainEthMax             INTEGER,

        -- Discrepancies in the most recent interval,
        -- between select counters on two modules (Tx - Rx);
        -- while these deltas are declared as 'Counter64',
        -- they are actually signed 64-bit integer values
        nbsSlaLossGainRdAllFrames        Counter64, -- Integer64,
        nbsSlaLossGainRdBadFrames        Counter64, -- Integer64,
        nbsSlaLossGainRdDiscards         Counter64, -- Integer64,
        nbsSlaLossGainRdUcastFrames      Counter64, -- Integer64,
        nbsSlaLossGainRdMcastFrames      Counter64, -- Integer64,
        nbsSlaLossGainRdBcastFrames      Counter64, -- Integer64,
        nbsSlaLossGainRdSize64           Counter64, -- Integer64,
        nbsSlaLossGainRdSize65to127      Counter64, -- Integer64,
        nbsSlaLossGainRdSize128to255     Counter64, -- Integer64,
        nbsSlaLossGainRdSize256to511     Counter64, -- Integer64,
        nbsSlaLossGainRdSize512to1023    Counter64, -- Integer64,
        nbsSlaLossGainRdSize1024toEthMax Counter64, -- Integer64,
        nbsSlaLossGainRdSizeEthMaxto2047 Counter64, -- Integer64,
        nbsSlaLossGainRdSize2048to4095   Counter64, -- Integer64,
        nbsSlaLossGainRdSize4096to8191   Counter64, -- Integer64,
        nbsSlaLossGainRdSize8192orMore   Counter64, -- Integer64,
        nbsSlaLossGainRdFrameDivisor     Counter64,
        nbsSlaLossGainRdAllOctets        Counter64, -- Integer64,
        nbsSlaLossGainRdBadOctets        Counter64, -- Integer64,
        nbsSlaLossGainRdOctetDivisor     Counter64,
        nbsSlaLossGainRdTimeSpan         Counter32,

        -- Discrepancies accumulated over all intervals,
        -- between select counters on two modules (Tx - Rx);
        -- while these deltas are declared as 'Counter64',
        -- they are actually signed 64-bit integer values
        nbsSlaLossGainAdAllFrames        Counter64, -- Integer64,
        nbsSlaLossGainAdBadFrames        Counter64, -- Integer64,
        nbsSlaLossGainAdDiscards         Counter64, -- Integer64,
        nbsSlaLossGainAdUcastFrames      Counter64, -- Integer64,
        nbsSlaLossGainAdMcastFrames      Counter64, -- Integer64,
        nbsSlaLossGainAdBcastFrames      Counter64, -- Integer64,
        nbsSlaLossGainAdSize64           Counter64, -- Integer64,
        nbsSlaLossGainAdSize65to127      Counter64, -- Integer64,
        nbsSlaLossGainAdSize128to255     Counter64, -- Integer64,
        nbsSlaLossGainAdSize256to511     Counter64, -- Integer64,
        nbsSlaLossGainAdSize512to1023    Counter64, -- Integer64,
        nbsSlaLossGainAdSize1024toEthMax Counter64, -- Integer64,
        nbsSlaLossGainAdSizeEthMaxto2047 Counter64, -- Integer64,
        nbsSlaLossGainAdSize2048to4095   Counter64, -- Integer64,
        nbsSlaLossGainAdSize4096to8191   Counter64, -- Integer64,
        nbsSlaLossGainAdSize8192orMore   Counter64, -- Integer64,
        nbsSlaLossGainAdFrameDivisor     Counter64,
        nbsSlaLossGainAdAllOctets        Counter64, -- Integer64,
        nbsSlaLossGainAdBadOctets        Counter64, -- Integer64,
        nbsSlaLossGainAdOctetDivisor     Counter64,
        nbsSlaLossGainAdTimeSpan         Counter32
}

nbsSlaLossGainEntry  OBJECT-TYPE
        SYNTAX      NbsSlaLossGainEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
        "Loss/Gain Traffic Analysis entry"
        INDEX { nbsSlaLossGainIfIndex }
        ::= { nbsSlaLossGainTable 1 }

-- Objects for table support

nbsSlaLossGainIfIndex   OBJECT-TYPE
        SYNTAX      InterfaceIndex
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
          "The Mib2 ifIndex of this Loss Gain Analysis port"
        ::= { nbsSlaLossGainEntry 1 }

nbsSlaLossGainAction   OBJECT-TYPE
        SYNTAX      INTEGER {
        notSupported    (1),
        inactive        (2),
        start           (3),
        stop            (4),
        inProgress      (5)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Traffic Analysis (loss/gain) activity status."
        DEFVAL { notSupported }
        ::= { nbsSlaLossGainEntry 2 }

nbsSlaLossGainInterval OBJECT-TYPE
        SYNTAX      INTEGER (10..86400)
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Traffic Analysis (loss/gain) sampling time interval (sec).
        Practical range allowed is 10 seconds to 1 day."
        DEFVAL { 60 }
        ::= { nbsSlaLossGainEntry 3 }

nbsSlaLossGainEthMax OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum size of normal Ethernet frames used when tabulating frames
        by size, to divide the range 1024-2047 in two: 1024 to EthMax, and
        EthMax+1 to 2047. It is typically 1518, or 1522 for tagged frames."
        DEFVAL { 1518 }
        ::= { nbsSlaLossGainEntry 4 }

nbsSlaLossGainRdAllFrames  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all frames (good+bad) lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 5 }

nbsSlaLossGainRdBadFrames  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all bad frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 6 }

nbsSlaLossGainRdDiscards  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all bad frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 7 }

nbsSlaLossGainRdUcastFrames   OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of good unicast frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 8 }

nbsSlaLossGainRdMcastFrames  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of good multicast frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 9 }

nbsSlaLossGainRdBcastFrames   OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of good broadcast frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 10 }

nbsSlaLossGainRdSize64     OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 64 byte frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 11 }

nbsSlaLossGainRdSize65to127 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 65-127 byte frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 12 }

nbsSlaLossGainRdSize128to255 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 128-255 byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 13 }

nbsSlaLossGainRdSize256to511 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 256-511 byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 14 }

nbsSlaLossGainRdSize512to1023 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 512-1023 byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 15 }

nbsSlaLossGainRdSize1024toEthMax OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 1024-'EthMax' byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 16 }

nbsSlaLossGainRdSizeEthMaxto2047 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 'EthMax'+1-2047 byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 17 }

nbsSlaLossGainRdSize2048to4095 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 2048-4095 byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 18 }

nbsSlaLossGainRdSize4096to8191 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 4096-8191 byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 19 }

nbsSlaLossGainRdSize8192orMore OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all 2048-plus byte frames lost/gained (-/+) in
        the most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 20 }

nbsSlaLossGainRdFrameDivisor OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The divisor to calculate frame loss/gain ratios for the most
        recent interval."
        ::= { nbsSlaLossGainEntry 21 }

nbsSlaLossGainRdAllOctets OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all frame octets lost/gained (-/+) in the most
        recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 22 }

nbsSlaLossGainRdBadOctets OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of bad frame octets observed in the most
        recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 23 }

nbsSlaLossGainRdOctetDivisor OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The divisor to calculate octet loss/gain ratios for the most
        recent interval."
        ::= { nbsSlaLossGainEntry 24 }

nbsSlaLossGainRdTimeSpan OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The time span (tenths of a sec) for the most recent
        interval."
        ::= { nbsSlaLossGainEntry 25 }

nbsSlaLossGainAdAllFrames  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all frames (good+bad) lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 26 }

nbsSlaLossGainAdBadFrames  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all bad frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 27 }

nbsSlaLossGainAdDiscards  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all bad frames lost/gained (-/+) in the
        most recent interval.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 28 }

nbsSlaLossGainAdUcastFrames   OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of good unicast frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 29 }

nbsSlaLossGainAdMcastFrames  OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of good multicast frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 30 }

nbsSlaLossGainAdBcastFrames   OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of good broadcast frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 31 }

nbsSlaLossGainAdSize64     OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 64 byte frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 32 }

nbsSlaLossGainAdSize65to127 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 65-127 byte frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 33 }

nbsSlaLossGainAdSize128to255 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 128-255 byte frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 34 }

nbsSlaLossGainAdSize256to511 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 256-511 byte frames lost/gained
        (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 35 }

nbsSlaLossGainAdSize512to1023 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 512-1023 byte frames
        lost/gained (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 36 }

nbsSlaLossGainAdSize1024toEthMax OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 1024-'EthMax' byte frames
        lost/gained (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 37 }

nbsSlaLossGainAdSizeEthMaxto2047 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 'EthMax'+1-2047 byte frames
        lost/gained (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 38 }

nbsSlaLossGainAdSize2048to4095 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 2048-4095 byte frames
        lost/gained (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 39 }

nbsSlaLossGainAdSize4096to8191 OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 4096-8191 byte frames
        lost/gained (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 40 }

nbsSlaLossGainAdSize8192orMore OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all 8192-plus byte frames
        lost/gained (-/+) over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 41 }

nbsSlaLossGainAdFrameDivisor OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The divisor to calculate frame loss/gain ratios over all intervals."
        ::= { nbsSlaLossGainEntry 42 }

nbsSlaLossGainAdAllOctets OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all frame octets lost/gained (-/+)
        over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 43 }

nbsSlaLossGainAdBadOctets OBJECT-TYPE
        SYNTAX      Counter64 -- Integer64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated count of all bad octets observed
        over all intervals.

        Not supported value: 0x80000000"
        ::= { nbsSlaLossGainEntry 44 }

nbsSlaLossGainAdOctetDivisor OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The divisor to calculate octet loss/gain ratios over all intervals."
        ::= { nbsSlaLossGainEntry 45 }

nbsSlaLossGainAdTimeSpan OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The accumulated time span (tenths of a sec) for all intervals."
        ::= { nbsSlaLossGainEntry 46 }

-- ********************************************************************
-- Performance Monitoring (PM)
-- ********************************************************************

nbsSlaPerfMonTableSize OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
          "The number of entries in nbsSlaPerfMonTable"
        ::= { nbsSlaPerfMonGrp 1 }

nbsSlaPerfMonTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF NbsSlaPerfMonEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
        "Contains a description of Performance Monitoring information."
        ::= { nbsSlaPerfMonGrp 2 }

NbsSlaPerfMonEntry ::= SEQUENCE {

        nbsSlaPerfMonIfIndex             InterfaceIndex,
        nbsSlaPerfMonAction              INTEGER,
        nbsSlaPerfMonSize                INTEGER,
        nbsSlaPerfMonDuration            INTEGER,
        nbsSlaPerfMonTimeLeft            INTEGER,
        nbsSlaPerfMonEthMax              INTEGER,

        -- Average
        nbsSlaPerfMonAvgAllSizes         Counter32,
        nbsSlaPerfMonAvg64               Counter32,
        nbsSlaPerfMonAvg65to127          Counter32,
        nbsSlaPerfMonAvg128to255         Counter32,
        nbsSlaPerfMonAvg256to511         Counter32,
        nbsSlaPerfMonAvg512to1023        Counter32,
        nbsSlaPerfMonAvg1024toEthMax     Counter32,
        nbsSlaPerfMonAvgEthMaxto2047     Counter32,
        nbsSlaPerfMonAvg2048to4095       Counter32,
        nbsSlaPerfMonAvg4096to8191       Counter32,
        nbsSlaPerfMonAvg8192orMore       Counter32,

        -- Minimum
        nbsSlaPerfMonMinAllSizes         Counter32,
        nbsSlaPerfMonMin64               Counter32,
        nbsSlaPerfMonMin65to127          Counter32,
        nbsSlaPerfMonMin128to255         Counter32,
        nbsSlaPerfMonMin256to511         Counter32,
        nbsSlaPerfMonMin512to1023        Counter32,
        nbsSlaPerfMonMin1024toEthMax     Counter32,
        nbsSlaPerfMonMinEthMaxto2047     Counter32,
        nbsSlaPerfMonMin2048to4095       Counter32,
        nbsSlaPerfMonMin4096to8191       Counter32,
        nbsSlaPerfMonMin8192orMore       Counter32,

        -- Maximum
        nbsSlaPerfMonMaxAllSizes         Counter32,
        nbsSlaPerfMonMax64               Counter32,
        nbsSlaPerfMonMax65to127          Counter32,
        nbsSlaPerfMonMax128to255         Counter32,
        nbsSlaPerfMonMax256to511         Counter32,
        nbsSlaPerfMonMax512to1023        Counter32,
        nbsSlaPerfMonMax1024toEthMax     Counter32,
        nbsSlaPerfMonMaxEthMaxto2047     Counter32,
        nbsSlaPerfMonMax2048to4095       Counter32,
        nbsSlaPerfMonMax4096to8191       Counter32,
        nbsSlaPerfMonMax8192orMore       Counter32,

        -- Count of frames
        nbsSlaPerfMonFramesAllSizes      Counter64,
        nbsSlaPerfMonFrames64            Counter64,
        nbsSlaPerfMonFrames65to127       Counter64,
        nbsSlaPerfMonFrames128to255      Counter64,
        nbsSlaPerfMonFrames256to511      Counter64,
        nbsSlaPerfMonFrames512to1023     Counter64,
        nbsSlaPerfMonFrames1024toEthMax  Counter64,
        nbsSlaPerfMonFramesEthMaxto2047  Counter64,
        nbsSlaPerfMonFrames2048to4095    Counter64,
        nbsSlaPerfMonFrames4096to8191    Counter64,
        nbsSlaPerfMonFrames8192orMore    Counter64,

        -- Count of octets
        nbsSlaPerfMonOctetsAllSizes      Counter64,
        nbsSlaPerfMonOctets64            Counter64,
        nbsSlaPerfMonOctets65to127       Counter64,
        nbsSlaPerfMonOctets128to255      Counter64,
        nbsSlaPerfMonOctets256to511      Counter64,
        nbsSlaPerfMonOctets512to1023     Counter64,
        nbsSlaPerfMonOctets1024toEthMax  Counter64,
        nbsSlaPerfMonOctetsEthMaxto2047  Counter64,
        nbsSlaPerfMonOctets2048to4095    Counter64,
        nbsSlaPerfMonOctets4096to8191    Counter64,
        nbsSlaPerfMonOctets8192orMore    Counter64
}

nbsSlaPerfMonEntry  OBJECT-TYPE
        SYNTAX      NbsSlaPerfMonEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
        "Performance Monitoring entry"
        INDEX { nbsSlaPerfMonIfIndex }
        ::= { nbsSlaPerfMonTable 1 }

nbsSlaPerfMonIfIndex   OBJECT-TYPE
        SYNTAX      InterfaceIndex
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
          "The Mib2 ifIndex of this Performance Monitoring port"
        ::= { nbsSlaPerfMonEntry 1 }

nbsSlaPerfMonAction   OBJECT-TYPE
        SYNTAX      INTEGER {
        notSupported    (1),
        inactive        (2),
        start           (3),
        stop            (4),
        reflect         (5),
        forward         (6),
        inProgress      (7),
        complete        (8),
        stopping        (9)
        }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Traffic Analysis (performance monitoring) activity status."
        DEFVAL { inactive }
        ::= { nbsSlaPerfMonEntry 2 }

nbsSlaPerfMonSize   OBJECT-TYPE
        SYNTAX      INTEGER (1..9600)
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Performance Monitoring frame size specification:
        1 = random-sized frames in the range 64-127 bytes
        2 = random-sized frames in the range 64-255 bytes
        3 = random-sized frames in the range 64-511 bytes
        4 = random-sized frames in the range 64-1023 bytes
        5 = random-sized frames in the range 64-2047 bytes
        6 = random-sized frames in the range 64-4095 bytes
        7 = random-sized frames in the range 64-8191 bytes
        64..9600 = fixed-size frames of specified byte count."
        DEFVAL { 5 }
        ::= { nbsSlaPerfMonEntry 3 }

nbsSlaPerfMonDuration OBJECT-TYPE
        SYNTAX      INTEGER (60..604800)
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
        "Performance Monitoring time duration (sec). Practical range
        allowed is 1 minute to 1 week."
        DEFVAL { 60 }
        ::= { nbsSlaPerfMonEntry 4 }

nbsSlaPerfMonTimeLeft OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "Amount of time remaining in the monitoring duration (sec); a negative
        value means not available."
        DEFVAL { 60 }
        ::= { nbsSlaPerfMonEntry 5 }

nbsSlaPerfMonEthMax OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum size of normal Ethernet frames used when tabulating frames
        by size, to divide the range 1024-2047 in two: 1024 to EthMax, and
        EthMax+1 to 2047. It is typically 1518, or 1522 for tagged frames."
        DEFVAL { 1518 }
        ::= { nbsSlaPerfMonEntry 6 }

nbsSlaPerfMonAvgAllSizes OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored frames."
        ::= { nbsSlaPerfMonEntry 7 }

nbsSlaPerfMonAvg64 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 64 byte
        frames."
        ::= { nbsSlaPerfMonEntry 8 }

nbsSlaPerfMonAvg65to127  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 65-127 byte
        frames."
        ::= { nbsSlaPerfMonEntry 9 }

nbsSlaPerfMonAvg128to255 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 128-255
        byte frames."
        ::= { nbsSlaPerfMonEntry 10 }

nbsSlaPerfMonAvg256to511  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 256-511
        byte frames."
        ::= { nbsSlaPerfMonEntry 11 }

nbsSlaPerfMonAvg512to1023 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 512-1023
        byte frames."
        ::= { nbsSlaPerfMonEntry 12 }

nbsSlaPerfMonAvg1024toEthMax  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 1024-'EthMax'
        byte frames."
        ::= { nbsSlaPerfMonEntry 13 }

nbsSlaPerfMonAvgEthMaxto2047 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 'EthMax'+1-2047
        byte frames."
        ::= { nbsSlaPerfMonEntry 14 }

nbsSlaPerfMonAvg2048to4095 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 2048-4095
        byte frames."
        ::= { nbsSlaPerfMonEntry 15 }

nbsSlaPerfMonAvg4096to8191 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 4096-8191
        byte frames."
        ::= { nbsSlaPerfMonEntry 16 }

nbsSlaPerfMonAvg8192orMore  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The average transit time (nanosec) for monitored 8192-plus
        byte frames."
        ::= { nbsSlaPerfMonEntry 17 }

nbsSlaPerfMonMinAllSizes OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored frames."
        ::= { nbsSlaPerfMonEntry 18 }

nbsSlaPerfMonMin64 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 64
        byte frames."
        ::= { nbsSlaPerfMonEntry 19 }

nbsSlaPerfMonMin65to127  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 65-127
        byte frames."
        ::= { nbsSlaPerfMonEntry 20 }

nbsSlaPerfMonMin128to255 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 128-255
        byte frames."
        ::= { nbsSlaPerfMonEntry 21 }

nbsSlaPerfMonMin256to511  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 256-511
        byte frames."
        ::= { nbsSlaPerfMonEntry 22 }

nbsSlaPerfMonMin512to1023 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 512-1023
        byte frames."
        ::= { nbsSlaPerfMonEntry 23 }

nbsSlaPerfMonMin1024toEthMax  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 1024-'EthMax'
        byte frames."
        ::= { nbsSlaPerfMonEntry 24 }

nbsSlaPerfMonMinEthMaxto2047 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 'EthMax'+1-2047
        byte frames."
        ::= { nbsSlaPerfMonEntry 25 }

nbsSlaPerfMonMin2048to4095 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 2048-4095
        byte frames."
        ::= { nbsSlaPerfMonEntry 26 }

nbsSlaPerfMonMin4096to8191 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 4096-8191
        byte frames."
        ::= { nbsSlaPerfMonEntry 27 }

nbsSlaPerfMonMin8192orMore  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The minimum transit time (nanosec) for monitored 8192-plus
        byte frames."
        ::= { nbsSlaPerfMonEntry 28 }

nbsSlaPerfMonMaxAllSizes OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored frames."
        ::= { nbsSlaPerfMonEntry 29 }

nbsSlaPerfMonMax64 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 64
        byte frames."
        ::= { nbsSlaPerfMonEntry 30 }

nbsSlaPerfMonMax65to127  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 65-127
        byte frames."
        ::= { nbsSlaPerfMonEntry 31 }

nbsSlaPerfMonMax128to255 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 128-255
        byte frames."
        ::= { nbsSlaPerfMonEntry 32 }

nbsSlaPerfMonMax256to511  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 256-511
        byte frames."
        ::= { nbsSlaPerfMonEntry 33 }

nbsSlaPerfMonMax512to1023 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 512-1023
        byte frames."
        ::= { nbsSlaPerfMonEntry 34 }

nbsSlaPerfMonMax1024toEthMax  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 1024-'EthMax'
        byte frames."
        ::= { nbsSlaPerfMonEntry 35 }

nbsSlaPerfMonMaxEthMaxto2047 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 'EthMax'+1-2047
        byte frames."
        ::= { nbsSlaPerfMonEntry 36 }

nbsSlaPerfMonMax2048to4095 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 4096-8191
        byte frames."
        ::= { nbsSlaPerfMonEntry 37 }

nbsSlaPerfMonMax4096to8191 OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 4096-8191
        byte frames."
        ::= { nbsSlaPerfMonEntry 38 }

nbsSlaPerfMonMax8192orMore  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The maximum transit time (nanosec) for monitored 8192-plus
        byte frames."
        ::= { nbsSlaPerfMonEntry 39 }

nbsSlaPerfMonFramesAllSizes OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored frames."
        ::= { nbsSlaPerfMonEntry 40 }

nbsSlaPerfMonFrames64 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 64 byte frames."
        ::= { nbsSlaPerfMonEntry 41 }

nbsSlaPerfMonFrames65to127  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 65-127 byte frames."
        ::= { nbsSlaPerfMonEntry 42 }

nbsSlaPerfMonFrames128to255 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 128-255 byte frames."
        ::= { nbsSlaPerfMonEntry 43 }

nbsSlaPerfMonFrames256to511  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 256-511 byte frames."
        ::= { nbsSlaPerfMonEntry 44 }

nbsSlaPerfMonFrames512to1023 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 512-1023 byte frames."
        ::= { nbsSlaPerfMonEntry 45 }

nbsSlaPerfMonFrames1024toEthMax  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 1024-'EthMax' byte frames."
        ::= { nbsSlaPerfMonEntry 46 }

nbsSlaPerfMonFramesEthMaxto2047 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 'EthMax'+1-2047 byte frames."
        ::= { nbsSlaPerfMonEntry 47 }

nbsSlaPerfMonFrames2048to4095  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 2048-4095 byte frames."
        ::= { nbsSlaPerfMonEntry 48 }

nbsSlaPerfMonFrames4096to8191  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 4096-8191 byte frames."
        ::= { nbsSlaPerfMonEntry 49 }

nbsSlaPerfMonFrames8192orMore  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of all monitored 8192-plus byte frames."
        ::= { nbsSlaPerfMonEntry 50 }

nbsSlaPerfMonOctetsAllSizes OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored frames."
        ::= { nbsSlaPerfMonEntry 51 }

nbsSlaPerfMonOctets64 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 64 byte frames."
        ::= { nbsSlaPerfMonEntry 52 }

nbsSlaPerfMonOctets65to127  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 65-127 byte frames."
        ::= { nbsSlaPerfMonEntry 53 }

nbsSlaPerfMonOctets128to255 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 128-255 byte frames."
        ::= { nbsSlaPerfMonEntry 54 }

nbsSlaPerfMonOctets256to511  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 256-511 byte frames."
        ::= { nbsSlaPerfMonEntry 55 }

nbsSlaPerfMonOctets512to1023 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 512-1023 byte frames."
        ::= { nbsSlaPerfMonEntry 56 }

nbsSlaPerfMonOctets1024toEthMax  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 1024-'EthMax' byte frames."
        ::= { nbsSlaPerfMonEntry 57 }

nbsSlaPerfMonOctetsEthMaxto2047 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 'EthMax'+1-2047 byte frames."
        ::= { nbsSlaPerfMonEntry 58 }

nbsSlaPerfMonOctets2048to4095  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 2048-4095 byte frames."
        ::= { nbsSlaPerfMonEntry 59 }

nbsSlaPerfMonOctets4096to8191 OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 4096-8191 byte frames."
        ::= { nbsSlaPerfMonEntry 60 }

nbsSlaPerfMonOctets8192orMore  OBJECT-TYPE
        SYNTAX      Counter64
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
        "The count of octets in all monitored 8192-plus byte frames."
        ::= { nbsSlaPerfMonEntry 61 }



END