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
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
|
-- *****************************************************************
-- FORCE10-MONITORING-MIB
--
--
-- Copyright (c) 2003-2004 by Force10 Networks, Inc.
-- All rights reserved.
-- *****************************************************************
--
FORCE10-MONITORING-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter64,
Unsigned32
FROM SNMPv2-SMI
OBJECT-GROUP
FROM SNMPv2-CONF
TruthValue,
TEXTUAL-CONVENTION,
DisplayString,
MacAddress
FROM SNMPv2-TC
ifIndex
FROM RFC1213-MIB
f10Mgmt
FROM FORCE10-SMI
F10VlanID, F10QueueID, F10PortPipeID, F10SlotID,
F10CycloneVersion, F10ProcessorModuleType
FROM FORCE10-TC
;
f10MonitoringMib MODULE-IDENTITY
LAST-UPDATED "200812181200Z"
ORGANIZATION "Force10 Networks, Inc."
CONTACT-INFO
"Force10 Networks, Inc
1440 McCarthy Blvd
Milpitas, CA 95035
(408) 571-3500
support@force10networks.com
http://www.force10networks.com"
DESCRIPTION
"Force10 Monitoring MIB provides statistics and accounting for
various Force10 products.
"
-- revision history
REVISION "200812181200Z"
DESCRIPTION
"Force10 Monitoring MIB version 1.3
Added CPU Ingress Queue Unicast Statistics table.
"
REVISION "0601200000Z"
DESCRIPTION
"Force10 Monitoring MIB version 1.2
Added IP and ARP statistic objects that are not available in RFC1213.
"
REVISION "200011021030Z"
DESCRIPTION
"Force10 Monitoring MIB version 1.1"
::= { f10Mgmt 3 }
f10MonGroup OBJECT IDENTIFIER ::= { f10MonitoringMib 1 }
f10MonQueue OBJECT IDENTIFIER ::= { f10MonitoringMib 2 }
f10MonMac OBJECT IDENTIFIER ::= { f10MonitoringMib 3 }
f10MonIfQueue OBJECT IDENTIFIER ::= { f10MonitoringMib 4 }
f10NetworkStat OBJECT IDENTIFIER ::= { f10MonitoringMib 5 }
f10IpStatistic OBJECT IDENTIFIER ::= { f10NetworkStat 1 }
f10ArpStatistic OBJECT IDENTIFIER ::= { f10NetworkStat 2 }
--
-- The F10MonGroup
--
f10MonMibVersion OBJECT-TYPE
SYNTAX INTEGER {
version1(1),
version1dot1(2),
version1dot2(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
version1(1) - initial version, define QOS Queue Statistics table.
version1dot1(2) - support MAC Accounting (f10MonMac).
version1dot2(3) - support Interface Queue Statistics Tables (f10MonIfQueue).
"
::= { f10MonGroup 1 }
--
-- The Force10 QOS Queue Group
--
f10MonQueueGroup OBJECT IDENTIFIER ::= { f10MonQueue 1 }
f10MonMaxQueue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum number of Force10 QOS queue supported by Force10
Interfaces.
"
::= { f10MonQueueGroup 1 }
--
-- QOS Input Queue Statistics Table
--
f10InQueueStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10InQueueStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Force10 QOS Input Queue Statistics Table.
This table provides Input Queue statistics for Force10 Interfaces.
"
::= { f10MonQueue 2 }
f10InQueueStatisticsEntry OBJECT-TYPE
SYNTAX F10InQueueStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the Force10 QOS Input Queue table.
The Input Queue Statistics Table is indexed by the Interface and
the Queue ID. The Interface index should be an valid ifIndex as defined
in the RFC1213 MIB II Interface Table and the Queue ID should be a
valid Force10 Queue ID.
"
INDEX { ifIndex, f10InQueueId }
::= { f10InQueueStatisticsTable 1 }
F10InQueueStatisticsEntry ::= SEQUENCE {
f10InQueueId
F10QueueID,
f10InQueueDropPackets
Counter64,
f10InQueueBytes
Counter64,
f10InQueueMatchPackets
Counter64,
f10InQueueMatchBytes
Counter64,
f10InQueueMatchBps
Counter64,
f10InQueueCycloneVersion
F10CycloneVersion,
f10InQueueBytesCount
Counter64,
f10InQueuePktsCount
Counter64
}
f10InQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the second index of this table, it must be a valid
Force10 QOS Queue ID.
"
::= { f10InQueueStatisticsEntry 1 }
f10InQueueDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10InQueueStatisticsEntry 2 }
f10InQueueBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10InQueueStatisticsEntry 3 }
f10InQueueMatchPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10InQueueStatisticsEntry 4 }
f10InQueueMatchBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10InQueueStatisticsEntry 5 }
f10InQueueMatchBps OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10InQueueStatisticsEntry 6 }
f10InQueueCycloneVersion OBJECT-TYPE
SYNTAX F10CycloneVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The linecard Cyclone hardware version.
"
::= { f10InQueueStatisticsEntry 7 }
f10InQueueBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of bytes data passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) hardware only.
"
::= { f10InQueueStatisticsEntry 8 }
f10InQueuePktsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of packets passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) hardware only.
"
::= { f10InQueueStatisticsEntry 9 }
--
-- QOS Output Queue Statistics Table
--
f10OutQueueStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10OutQueueStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Force10 QOS Output Queue Statistics Table.
This table provides Output Queue statistics for Force10 Interfaces.
"
::= { f10MonQueue 3 }
f10OutQueueStatisticsEntry OBJECT-TYPE
SYNTAX F10OutQueueStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the Output Queue table.
The Output Queue Statistics Table is indexed by the Interface and
the Queue ID. The Interface index should be an valid ifIndex as defined
in the RFC1213 MIB II Interface Table and the the Queue ID should be a
valid Force10 Queue ID.
"
INDEX { ifIndex, f10OutQueueId }
::= { f10OutQueueStatisticsTable 1 }
F10OutQueueStatisticsEntry ::= SEQUENCE {
f10OutQueueId
F10QueueID,
f10OutQueuePackets
Counter64,
f10OutQueueBytes
Counter64,
f10OutQueueBps
Counter64,
f10OutQueueCycloneVersion
F10CycloneVersion,
f10OutQueueBytesCount
Counter64
}
f10OutQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the second index of this table, it must be a valid
Force10 QOS Queue ID.
"
::= { f10OutQueueStatisticsEntry 1 }
f10OutQueuePackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10OutQueueStatisticsEntry 2 }
f10OutQueueBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes in the queue.
This object is available on Cyclone version 1.5 (CjTj) hardware only.
"
::= { f10OutQueueStatisticsEntry 3 }
f10OutQueueBps OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10OutQueueStatisticsEntry 4 }
f10OutQueueCycloneVersion OBJECT-TYPE
SYNTAX F10CycloneVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The linecard Cyclone hardware version.
"
::= { f10OutQueueStatisticsEntry 5 }
f10OutQueueBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of bytes data passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) hardware only.
"
::= { f10OutQueueStatisticsEntry 6 }
--
-- QOS WRED Statistics Table
--
f10WredStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10WredStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "QOS WRED Statistics Table
This table provides QOS WRED statistics for the Force10 Interfaces.
"
::= { f10MonQueue 4 }
f10WredStatisticsEntry OBJECT-TYPE
SYNTAX F10WredStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the WRED Statistics table.
The WRED Statistics Table is indexed by the Interface and
the Queue ID. The Interface index should be an valid ifIndex as defined
in the RFC1213 MIB II Interface Table and the Queue ID should be a
valid Force10 Queue ID.
"
INDEX { ifIndex, f10WredQueueId }
::= { f10WredStatisticsTable 1 }
F10WredStatisticsEntry ::= SEQUENCE {
f10WredQueueId
F10QueueID,
f10WredGreenName
DisplayString,
f10WredGreenThresholdLow
Unsigned32,
f10WredGreenThresholdHigh
Unsigned32,
f10WredGreenDropPackets
Counter64,
f10WredGreenReserve1
Counter64,
f10WredGreenReserve2
Counter64,
f10WredYellowName
DisplayString,
f10WredYellowThresholdLow
Unsigned32,
f10WredYellowThresholdHigh
Unsigned32,
f10WredYellowDropPackets
Counter64,
f10WredYellowReserve1
Counter64,
f10WredYellowReserve2
Counter64,
f10WredRedName
DisplayString,
f10WredRedThresholdLow
Unsigned32,
f10WredRedThresholdHigh
Unsigned32,
f10WredRedDropPackets
Counter64,
f10WredRedReserve1
Counter64,
f10WredRedReserve2
Counter64
}
f10WredQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the second index of this table, it must be a valid
Force10 QOS Queue ID.
"
::= { f10WredStatisticsEntry 1 }
f10WredGreenName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 2 }
f10WredGreenThresholdLow OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 3 }
f10WredGreenThresholdHigh OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 4 }
f10WredGreenDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 5 }
f10WredGreenReserve1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 6 }
f10WredGreenReserve2 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 7 }
f10WredYellowName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 8 }
f10WredYellowThresholdLow OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 9 }
f10WredYellowThresholdHigh OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 10 }
f10WredYellowDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 11 }
f10WredYellowReserve1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 12 }
f10WredYellowReserve2 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 13 }
f10WredRedName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 14 }
f10WredRedThresholdLow OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 15 }
f10WredRedThresholdHigh OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 16 }
f10WredRedDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 17 }
f10WredRedReserve1 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 18 }
f10WredRedReserve2 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
"
::= { f10WredStatisticsEntry 19 }
--
-- The MAC Group
--
f10MacGroup OBJECT IDENTIFIER ::= { f10MonMac 1 }
--
-- The MAC Accounting Group
--
f10MacAccounting OBJECT IDENTIFIER ::= { f10MonMac 2 }
--
-- The MAC Accounting Destination Table
--
f10MacAccountingDestTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10MacAccountingDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The MAC Accounting Destination Table.
Each entry in the table provides the MAC accounting statistics from a
specific Interface, VLAN ID, and the desired destination MAC Address.
"
::= { f10MacAccounting 1 }
f10MacAccountingDestEntry OBJECT-TYPE
SYNTAX F10MacAccountingDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the MAC Accounting Destination Table.
The MAC Accounting Destination table is indexed by the input Interface,
VLAN ID, and the destination MAC Address.
"
INDEX { f10MacAccInIfIndex, f10MacAccVlan, f10MacAccMacAddr }
::= { f10MacAccountingDestTable 1 }
F10MacAccountingDestEntry ::= SEQUENCE {
f10MacAccInIfIndex
INTEGER,
f10MacAccMacAddr
MacAddress,
f10MacAccVlan
F10VlanID,
f10MacAccOutIfIndex
INTEGER,
f10MacAccPackets
Counter64,
f10MacAccBytes
Counter64
}
f10MacAccInIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The input Interface of this entry of the table.
The value should be a valid ifIndex in the MIB II Interface Table.
"
::= { f10MacAccountingDestEntry 1 }
f10MacAccVlan OBJECT-TYPE
SYNTAX F10VlanID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The VLAN ID.
"
::= { f10MacAccountingDestEntry 2 }
f10MacAccMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC Address that identifies this entry of the table.
This is the destination MAC Address of the packets that's going through
the Interface identified by f10MacAccInIfIndex.
"
::= { f10MacAccountingDestEntry 3 }
f10MacAccOutIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The output Interface of this entry of the table.
The value should be a valid ifIndex in the MIB II Interface Table.
"
::= { f10MacAccountingDestEntry 4 }
f10MacAccPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of packets going through this entry of the
the table, identified by the Interface/MAC/VLAN.
"
::= { f10MacAccountingDestEntry 5 }
f10MacAccBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes traffic going through this entry of
the table, identified by the Interface/MAC/VLAN.
"
::= { f10MacAccountingDestEntry 6 }
--
-- The Force10 Interface Queue Group
--
-- The Interface Queue Statistics Tables shows Queue Statistics of all Force10
-- linecard/interfaces. Please note this is different from the QOS Queue
-- Statistics Table which shows the Egress Unicast Statistics and hit counters
-- only when a QOS profile is created for the interface.
f10MonIfQueueGroup OBJECT IDENTIFIER ::= { f10MonIfQueue 1 }
--
-- Ingress Queue Unicast Statistics Table
--
f10IngQueueUnicastStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10IngQueueUnicastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Ingress Queue Unicast Statistics Table.
This table provides Queue statistics for Ingress Unicast packets
between Force10 linecards.
"
::= { f10MonIfQueue 2 }
f10IngQueueUnicastStatEntry OBJECT-TYPE
SYNTAX F10IngQueueUnicastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the Ingress Queue Unicast Statistics table.
The Ingress Queue Unicast Statistics Table is indexed by the source
and destination linecard/portpipe and Queue ID.
"
INDEX { f10IngUnicastSrcCard,
f10IngUnicastDestCard,
f10IngUnicastSrcPortPipe,
f10IngUnicastDestPortPipe,
f10IngUnicastQueueId }
::= { f10IngQueueUnicastStatTable 1 }
F10IngQueueUnicastStatEntry ::= SEQUENCE {
f10IngUnicastSrcCard
F10SlotID,
f10IngUnicastDestCard
F10SlotID,
f10IngUnicastSrcPortPipe
F10PortPipeID,
f10IngUnicastDestPortPipe
F10PortPipeID,
f10IngUnicastQueueId
F10QueueID,
f10IngUnicastCycloneVersion
F10CycloneVersion,
f10IngUnicastBytes
Counter64,
f10IngUnicastBytesCount
Counter64,
f10IngUnicastPacketCount
Counter64,
f10IngUnicastGreenMin
Unsigned32,
f10IngUnicastGreenMax
Unsigned32,
f10IngUnicastGreenDrop
Counter64,
f10IngUnicastYellowMin
Unsigned32,
f10IngUnicastYellowMax
Unsigned32,
f10IngUnicastYellowDrop
Counter64,
f10IngUnicastRedDrop
Counter64
}
f10IngUnicastSrcCard OBJECT-TYPE
SYNTAX F10SlotID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the source linecard number.
This is the first index of this table entry.
"
::= { f10IngQueueUnicastStatEntry 1 }
f10IngUnicastDestCard OBJECT-TYPE
SYNTAX F10SlotID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the destination linecard number.
This is the 3rd index of this table entry.
"
::= { f10IngQueueUnicastStatEntry 2 }
f10IngUnicastSrcPortPipe OBJECT-TYPE
SYNTAX F10PortPipeID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Force10 Cyclone PortPipe number of the source
linecard.
This is the 2nd index of this table entry.
"
::= { f10IngQueueUnicastStatEntry 3 }
f10IngUnicastDestPortPipe OBJECT-TYPE
SYNTAX F10PortPipeID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Force10 Cyclone PortPipe number of the destination
linecard.
This is the 4th index of this table entry.
"
::= { f10IngQueueUnicastStatEntry 4 }
f10IngUnicastQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Queue ID of this entry.
This is the 5th index of this table entry.
"
::= { f10IngQueueUnicastStatEntry 5 }
f10IngUnicastCycloneVersion OBJECT-TYPE
SYNTAX F10CycloneVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The linecard Cyclone hardware version.
"
::= { f10IngQueueUnicastStatEntry 6 }
f10IngUnicastBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes in the queue.
This object is available on Cyclone version 1.5 (CjTj) hardware only.
"
::= { f10IngQueueUnicastStatEntry 7 }
f10IngUnicastBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of bytes data passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10IngQueueUnicastStatEntry 8 }
f10IngUnicastPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of packets passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10IngQueueUnicastStatEntry 9 }
f10IngUnicastGreenMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Green packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10IngQueueUnicastStatEntry 10 }
f10IngUnicastGreenMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Green packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10IngQueueUnicastStatEntry 11 }
f10IngUnicastGreenDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Green packets being dropped in this queue.
"
::= { f10IngQueueUnicastStatEntry 12 }
f10IngUnicastYellowMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Yellow packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10IngQueueUnicastStatEntry 13 }
f10IngUnicastYellowMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Yellow packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10IngQueueUnicastStatEntry 14 }
f10IngUnicastYellowDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Yellow packets being dropped in this queue.
"
::= { f10IngQueueUnicastStatEntry 15 }
f10IngUnicastRedDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Red packets being dropped in this queue.
"
::= { f10IngQueueUnicastStatEntry 16 }
--
-- Ingress Queue Multicast Statistics Table
--
f10IngQueueMulticastStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10IngQueueMulticastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Ingress Queue Multicast Statistics Table.
This table provides Queue statistics for Ingress Multicast packets
at Force10 linecards.
"
::= { f10MonIfQueue 3 }
f10IngQueueMulticastStatEntry OBJECT-TYPE
SYNTAX F10IngQueueMulticastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the Ingress Queue Multicast Statistics table.
The Ingress Queue Multicast Statistics Table is indexed by the source
linecard/portpipe and Queue ID.
"
INDEX { f10IngMulticastSrcCard,
f10IngMulticastSrcPortPipe,
f10IngMulticastQueueId }
::= { f10IngQueueMulticastStatTable 1 }
F10IngQueueMulticastStatEntry ::= SEQUENCE {
f10IngMulticastSrcCard
F10SlotID,
f10IngMulticastSrcPortPipe
F10PortPipeID,
f10IngMulticastQueueId
F10QueueID,
f10IngMulticastCycloneVersion
F10CycloneVersion,
f10IngMulticastBytes
Counter64,
f10IngMulticastBytesCount
Counter64,
f10IngMulticastPacketCount
Counter64,
f10IngMulticastGreenMin
Unsigned32,
f10IngMulticastGreenMax
Unsigned32,
f10IngMulticastGreenDrop
Counter64,
f10IngMulticastYellowMin
Unsigned32,
f10IngMulticastYellowMax
Unsigned32,
f10IngMulticastYellowDrop
Counter64,
f10IngMulticastRedDrop
Counter64
}
f10IngMulticastSrcCard OBJECT-TYPE
SYNTAX F10SlotID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the source linecard number.
This is the first index of this table entry.
"
::= { f10IngQueueMulticastStatEntry 1 }
f10IngMulticastSrcPortPipe OBJECT-TYPE
SYNTAX F10PortPipeID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Force10 Cyclone PortPipe number of the source
linecard.
This is the 2nd index of this table entry.
"
::= { f10IngQueueMulticastStatEntry 2 }
f10IngMulticastQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Queue ID of this entry.
This is the 3rd index of this table entry.
"
::= { f10IngQueueMulticastStatEntry 3 }
f10IngMulticastCycloneVersion OBJECT-TYPE
SYNTAX F10CycloneVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The linecard Cyclone hardware version.
"
::= { f10IngQueueMulticastStatEntry 4 }
f10IngMulticastBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes in the queue.
This object is available on Cyclone version 1.5 (CjTj) hardware only.
"
::= { f10IngQueueMulticastStatEntry 5 }
f10IngMulticastBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of bytes data passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10IngQueueMulticastStatEntry 6 }
f10IngMulticastPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of packets passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10IngQueueMulticastStatEntry 7 }
f10IngMulticastGreenMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Green packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10IngQueueMulticastStatEntry 8 }
f10IngMulticastGreenMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Green packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10IngQueueMulticastStatEntry 9 }
f10IngMulticastGreenDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Green packets being dropped in this queue.
"
::= { f10IngQueueMulticastStatEntry 10 }
f10IngMulticastYellowMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Yellow packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10IngQueueMulticastStatEntry 11 }
f10IngMulticastYellowMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Yellow packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10IngQueueMulticastStatEntry 12 }
f10IngMulticastYellowDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Yellow packets being dropped in this queue.
"
::= { f10IngQueueMulticastStatEntry 13 }
f10IngMulticastRedDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Red packets being dropped in this queue.
"
::= { f10IngQueueMulticastStatEntry 14 }
--
-- Egress Queue Unicast Statistics Table
--
f10EgQueueUnicastStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10EgQueueUnicastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Egress Queue Unicast Statistics Table.
This table provides Queue statistics for Egress Unicast packets
at Force10 Interface.
"
::= { f10MonIfQueue 4 }
f10EgQueueUnicastStatEntry OBJECT-TYPE
SYNTAX F10EgQueueUnicastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the Egress Queue Unicast Statistics table.
The Egress Queue Unicast Statistics Table is indexed by the ifIndex
and Queue ID.
The IfIndex should be an valid Interface Index as defined in the
RFC1213 MIB II Interface Table.
"
INDEX { ifIndex,
f10EgUnicastQueueId }
::= { f10EgQueueUnicastStatTable 1 }
F10EgQueueUnicastStatEntry ::= SEQUENCE {
f10EgUnicastQueueId
F10QueueID,
f10EgUnicastCycloneVersion
F10CycloneVersion,
f10EgUnicastBytes
Counter64,
f10EgUnicastBytesCount
Counter64,
f10EgUnicastPacketCount
Counter64,
f10EgUnicastGreenMin
Unsigned32,
f10EgUnicastGreenMax
Unsigned32,
f10EgUnicastGreenDrop
Counter64,
f10EgUnicastYellowMin
Unsigned32,
f10EgUnicastYellowMax
Unsigned32,
f10EgUnicastYellowDrop
Counter64,
f10EgUnicastRedDrop
Counter64
}
f10EgUnicastQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Queue ID of this entry.
This is the 2nd index of this table entry.
"
::= { f10EgQueueUnicastStatEntry 1 }
f10EgUnicastCycloneVersion OBJECT-TYPE
SYNTAX F10CycloneVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The linecard Cyclone hardware version.
"
::= { f10EgQueueUnicastStatEntry 2 }
f10EgUnicastBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes in the queue.
This object is available on Cyclone version 1.5 (CjTj) hardware only.
"
::= { f10EgQueueUnicastStatEntry 3 }
f10EgUnicastBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of bytes data passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10EgQueueUnicastStatEntry 4 }
f10EgUnicastPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of packets passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10EgQueueUnicastStatEntry 5 }
f10EgUnicastGreenMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Green packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10EgQueueUnicastStatEntry 6 }
f10EgUnicastGreenMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Green packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10EgQueueUnicastStatEntry 7 }
f10EgUnicastGreenDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Green packets being dropped in this queue.
"
::= { f10EgQueueUnicastStatEntry 8 }
f10EgUnicastYellowMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Yellow packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10EgQueueUnicastStatEntry 9 }
f10EgUnicastYellowMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Yellow packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10EgQueueUnicastStatEntry 10 }
f10EgUnicastYellowDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Yellow packets being dropped in this queue.
"
::= { f10EgQueueUnicastStatEntry 11 }
f10EgUnicastRedDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Red packets being dropped in this queue.
"
::= { f10EgQueueUnicastStatEntry 12 }
--
-- Egress Queue Multicast Statistics Table
--
f10EgQueueMulticastStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10EgQueueMulticastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Egress Queue Multicast Statistics Table.
This table provides Queue statistics for Egress Multicast packets
at Force10 Interface.
"
::= { f10MonIfQueue 5 }
f10EgQueueMulticastStatEntry OBJECT-TYPE
SYNTAX F10EgQueueMulticastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the Egress Queue Multicast Statistics table.
The Egress Queue Multicast Statistics Table is indexed by the ifIndex
and Queue ID.
The IfIndex should be an valid Interface Index as defined in the
RFC1213 MIB II Interface Table.
"
INDEX { ifIndex,
f10EgMulticastQueueId }
::= { f10EgQueueMulticastStatTable 1 }
F10EgQueueMulticastStatEntry ::= SEQUENCE {
f10EgMulticastQueueId
F10QueueID,
f10EgMulticastCycloneVersion
F10CycloneVersion,
f10EgMulticastBytes
Counter64,
f10EgMulticastBytesCount
Counter64,
f10EgMulticastPacketCount
Counter64,
f10EgMulticastGreenMin
Unsigned32,
f10EgMulticastGreenMax
Unsigned32,
f10EgMulticastGreenDrop
Counter64,
f10EgMulticastYellowMin
Unsigned32,
f10EgMulticastYellowMax
Unsigned32,
f10EgMulticastYellowDrop
Counter64,
f10EgMulticastRedDrop
Counter64
}
f10EgMulticastQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Queue ID of this entry.
This is the 2nd index of this table entry.
"
::= { f10EgQueueMulticastStatEntry 1 }
f10EgMulticastCycloneVersion OBJECT-TYPE
SYNTAX F10CycloneVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The linecard Cyclone hardware version.
"
::= { f10EgQueueMulticastStatEntry 2 }
f10EgMulticastBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes in the queue.
This object is available on Cyclone version 1.5 (CjTj) hardware only.
"
::= { f10EgQueueMulticastStatEntry 3 }
f10EgMulticastBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of bytes data passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10EgQueueMulticastStatEntry 4 }
f10EgMulticastPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of packets passing through this queue.
This object is available on Cyclone version 2.0 (C2T2) and Cyclone version 3.0 (X3) hardwares only.
"
::= { f10EgQueueMulticastStatEntry 5 }
f10EgMulticastGreenMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Green packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10EgQueueMulticastStatEntry 6 }
f10EgMulticastGreenMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Green packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10EgQueueMulticastStatEntry 7 }
f10EgMulticastGreenDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Green packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10EgQueueMulticastStatEntry 8 }
f10EgMulticastYellowMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Yellow packets. The min threshold
identifies the queue size percentage at which the WRED dropping starts
to be applied with a given configured probability.
"
::= { f10EgQueueMulticastStatEntry 9 }
f10EgMulticastYellowMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Yellow packets. The max threshold
identifies the queue size level at which tail drops occurs.
"
::= { f10EgQueueMulticastStatEntry 10 }
f10EgMulticastYellowDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Yellow packets being dropped in this queue.
"
::= { f10EgQueueMulticastStatEntry 11 }
f10EgMulticastRedDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Red packets being dropped in this queue.
"
::= { f10EgQueueMulticastStatEntry 12 }
--
-- CPU Ingress Queue Unicast Statistics Table - Applicable only for Cyclone version 3.0 and above
--
f10CpuIngQueueUnicastStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF F10CpuIngQueueUnicastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The CPU Ingress Queue Unicast Statistics Table.
This table provides Queue statistics for Ingress Unicast packets
destined for CPU."
::= { f10MonIfQueue 6 }
f10CpuIngQueueUnicastStatEntry OBJECT-TYPE
SYNTAX F10CpuIngQueueUnicastStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the CPU Ingress Queue Unicast Statistics Table.
The CPU Ingress Queue Unicast Statistics Table is indexed by the
source linecard/portpipe, cpu port and Queue ID."
INDEX { f10CpuIngUnicastSrcCard,
f10CpuIngUnicastSrcPortPipe,
f10CpuIngUnicastDestCpu,
f10CpuIngUnicastQueueId }
::= { f10CpuIngQueueUnicastStatTable 1 }
F10CpuIngQueueUnicastStatEntry ::= SEQUENCE {
f10CpuIngUnicastSrcCard
F10SlotID,
f10CpuIngUnicastSrcPortPipe
F10PortPipeID,
f10CpuIngUnicastDestCpu
F10ProcessorModuleType,
f10CpuIngUnicastQueueId
F10QueueID,
f10CpuIngUnicastCycloneVersion
F10CycloneVersion,
f10CpuIngUnicastBytesCount
Counter64,
f10CpuIngUnicastPacketCount
Counter64,
f10CpuIngUnicastGreenMin
Unsigned32,
f10CpuIngUnicastGreenMax
Unsigned32,
f10CpuIngUnicastGreenDrop
Counter64,
f10CpuIngUnicastYellowMin
Unsigned32,
f10CpuIngUnicastYellowMax
Unsigned32,
f10CpuIngUnicastYellowDrop
Counter64,
f10CpuIngUnicastRedDrop
Counter64
}
f10CpuIngUnicastSrcCard OBJECT-TYPE
SYNTAX F10SlotID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is the source linecard number.
This is the first index of this table entry."
::= { f10CpuIngQueueUnicastStatEntry 1 }
f10CpuIngUnicastSrcPortPipe OBJECT-TYPE
SYNTAX F10PortPipeID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is the Force10 Cyclone PortPipe number of the source
linecard.This is the 2nd index of this table entry."
::= { f10CpuIngQueueUnicastStatEntry 2 }
f10CpuIngUnicastDestCpu OBJECT-TYPE
SYNTAX F10ProcessorModuleType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is the destination CPU port of this entry.
This is the 3rd index of this table entry."
::= { f10CpuIngQueueUnicastStatEntry 3 }
f10CpuIngUnicastQueueId OBJECT-TYPE
SYNTAX F10QueueID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is the Queue ID of this entry.
This is the 4th index of this table entry."
::= { f10CpuIngQueueUnicastStatEntry 4 }
f10CpuIngUnicastCycloneVersion OBJECT-TYPE
SYNTAX F10CycloneVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The linecard Cyclone hardware version."
::= { f10CpuIngQueueUnicastStatEntry 5 }
f10CpuIngUnicastBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of bytes data passing through this queue.
This object is available on Cyclone version 3.0 (X3) hardware only."
::= { f10CpuIngQueueUnicastStatEntry 6 }
f10CpuIngUnicastPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cumulative number of packets passing through this queue.
This object is available on Cyclone version 3.0 (X3) hardware only."
::= { f10CpuIngQueueUnicastStatEntry 7 }
f10CpuIngUnicastGreenMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Green packets. The min threshold
identifies the queue size percentage at which the WRED
dropping starts to be applied with a given configured
probability."
::= { f10CpuIngQueueUnicastStatEntry 8 }
f10CpuIngUnicastGreenMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Green packets. The max threshold
identifies the queue size level at which tail drops occurs."
::= { f10CpuIngQueueUnicastStatEntry 9 }
f10CpuIngUnicastGreenDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Green packets being dropped in this queue."
::= { f10CpuIngQueueUnicastStatEntry 10 }
f10CpuIngUnicastYellowMin OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The min threshold for Yellow packets. The min threshold
identifies the queue size percentage at which the WRED
dropping starts to be applied with a given configured
probability."
::= { f10CpuIngQueueUnicastStatEntry 11 }
f10CpuIngUnicastYellowMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max threshold for Yellow packets. The max threshold
identifies the queue size level at which tail drops occurs."
::= { f10CpuIngQueueUnicastStatEntry 12 }
f10CpuIngUnicastYellowDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Yellow packets being dropped in this queue."
::= { f10CpuIngQueueUnicastStatEntry 13 }
f10CpuIngUnicastRedDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Red packets being dropped in this queue."
::= { f10CpuIngQueueUnicastStatEntry 14 }
--
-- Force10 IP Statistic
--
f10BcastPktRecv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total broadcast packet received.
"
::= { f10IpStatistic 1 }
f10BcastPktSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total broadcast packet sent.
"
::= { f10IpStatistic 2 }
f10McastPktRecv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total multicast packet received.
"
::= { f10IpStatistic 3 }
f10McastPktSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total multicast packet sent.
"
::= { f10IpStatistic 4 }
--
-- Force10 ARP Statistic
--
f10ArpReqRecv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total ARP request received.
"
::= { f10ArpStatistic 1 }
f10ArpReqSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total ARP request sent.
"
::= { f10ArpStatistic 2 }
f10ArpReplyRecv OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total ARP reply received.
"
::= { f10ArpStatistic 3 }
f10ArpReplySent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total ARP reply sent.
"
::= { f10ArpStatistic 4 }
f10ArpProxySent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total ARP proxy sent.
"
::= { f10ArpStatistic 5 }
END
|