-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFORCE10-MONITORING-MIB
1656 lines (1457 loc) · 47.7 KB
/
FORCE10-MONITORING-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *****************************************************************
-- 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
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