forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ACD-PORT-MIB.mib
2972 lines (2703 loc) · 113 KB
/
ACD-PORT-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- Accedian Enterprise Specific MIB
--
-- Copyright (c) 2005-2016, Accedian Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
ACD-PORT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32, Counter64, Gauge32
FROM SNMPv2-SMI
DisplayString, TruthValue, MacAddress, DateAndTime
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
acdMibs
FROM ACCEDIAN-SMI;
acdPort MODULE-IDENTITY
LAST-UPDATED "201609230100Z"
ORGANIZATION "Accedian Networks, Inc."
CONTACT-INFO
"Accedian Technical Assistance Center
Accedian Networks, Inc.
2351 Alfred-Nobel blvd., Suite N-410
Saint-Laurent, Quebec Canada H4S 2A9
E-mail: [email protected]"
DESCRIPTION
"The Port statistics for this Accedian Networks device."
REVISION "201609230100Z" -- 23 September 2016
DESCRIPTION
"Add acdPortTxHistStatsIndex and acdPortTxHistStatsSampleIndex
to acdPortTxHistStatsGroup.
Add acdPortRxHistStatsIndex and acdPortRxHistStatsSampleIndex
to acdPortRxHistStatsGroup."
REVISION "201605260100Z" -- 26 May 2016
DESCRIPTION
"Set access level to read-only for acdPortTxHistStatsIndex,
acdPortTxHistStatsSampleIndex, acdPortRxHistStatsIndex,
acdPortRxHistStatsSampleIndex."
REVISION "201603150100Z" -- 15 March 2016
DESCRIPTION
"Added acdPortConfigLaserMode to acdPortConfigTable."
REVISION "201411130100Z" -- 13 November 2014
DESCRIPTION
"Added acdPortConfigForceTxOn to acdPortConfigTable."
REVISION "201406230100Z" -- 23 June 2014
DESCRIPTION
"Added support for history tables."
REVISION "201110100100Z" -- 10 October 2011
DESCRIPTION
"Add acdPortConfigTableLastChangeTid."
REVISION "201010010100Z" -- 1 October 2010
DESCRIPTION
"..."
REVISION "200805010100Z" -- 1 May 2008
DESCRIPTION
"Initial version of MIB module ACD-PORT-MIB."
::= { acdMibs 9 }
acdPortMIBObjects OBJECT IDENTIFIER ::= { acdPort 1 }
acdPortConformance OBJECT IDENTIFIER ::= { acdPort 2 }
acdPortConfig OBJECT IDENTIFIER ::= { acdPortMIBObjects 1 }
acdPortStatus OBJECT IDENTIFIER ::= { acdPortMIBObjects 2 }
acdPortStats OBJECT IDENTIFIER ::= { acdPortMIBObjects 3 }
acdPortTableTid OBJECT IDENTIFIER ::= { acdPortMIBObjects 4 }
acdPortHistStats OBJECT IDENTIFIER ::= { acdPortMIBObjects 5 }
-------------------------------------------------------------------------------
-- The port configuration table.
-- This table contains all port configuration parameters
-------------------------------------------------------------------------------
acdPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of port configuration attributes"
::= { acdPortConfig 1 }
acdPortConfigEntry OBJECT-TYPE
SYNTAX AcdPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port configuration."
INDEX { acdPortConfigIndex }
::= { acdPortConfigTable 1 }
AcdPortConfigEntry ::= SEQUENCE {
acdPortConfigIndex Unsigned32,
acdPortConfigName DisplayString,
acdPortConfigAlias DisplayString,
acdPortConfigMacAddress MacAddress,
acdPortConfigConnectorId OBJECT IDENTIFIER,
acdPortConfigState TruthValue,
acdPortConfigMtu Unsigned32,
acdPortConfigAutoNegoState TruthValue,
acdPortConfigSpeed Unsigned32,
acdPortConfigDuplex INTEGER,
acdPortConfigMdi INTEGER,
acdPortConfigPauseMode INTEGER,
acdPortConfigAdvertisement BITS,
acdPortConfigForceTxOn TruthValue,
acdPortConfigLaserMode INTEGER
}
acdPortConfigIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object uniquely identifies this acdPortConfig
entry."
::= { acdPortConfigEntry 1 }
acdPortConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a string to identify the port."
::= { acdPortConfigEntry 2 }
acdPortConfigAlias OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a string to give the port an alias."
::= { acdPortConfigEntry 3 }
acdPortConfigMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the port."
::= { acdPortConfigEntry 4 }
acdPortConfigConnectorId OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the connector ID of the port. This object
shall identify the acdDescConnectorID object, defined in the
ACD-DESC-MIB."
::= { acdPortConfigEntry 5 }
acdPortConfigState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the port."
::= { acdPortConfigEntry 6 }
acdPortConfigMtu OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured MTU of the port. The value ranges from 1518 to 10240."
::= { acdPortConfigEntry 7 }
acdPortConfigAutoNegoState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the auto negociation on the port."
::= { acdPortConfigEntry 8 }
acdPortConfigSpeed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured speed of the port in Mbps. The valid values are 10, 100,
1000 and 10000."
::= { acdPortConfigEntry 9 }
acdPortConfigDuplex OBJECT-TYPE
SYNTAX INTEGER {
halfDuplex(1),
fullDuplex(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured duplex mode for this port."
::= { acdPortConfigEntry 10 }
acdPortConfigMdi OBJECT-TYPE
SYNTAX INTEGER {
autoMdi(1),
mdi(2),
mdix(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured MDI mode for this port."
::= { acdPortConfigEntry 11 }
acdPortConfigPauseMode OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
local(2),
forward(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured pause mode for this port."
::= { acdPortConfigEntry 12 }
acdPortConfigAdvertisement OBJECT-TYPE
SYNTAX BITS {
bHalfDuplex10Mbps(0), -- Capable of Half Duplex 10Mbps
bFullDuplex10Mbps(1), -- Capable of Full Duplex 10Mbps
bHalfDuplex100Mbps(2), -- Capable of Half Duplex 100Mbps
bFullDuplex100Mbps(3), -- Capable of Full Duplex 100Mbps
bHalfDuplex1Gbps(4), -- Capable of Half Duplex 1Gbps
bFullDuplex1Gbps(5), -- Capable of Full Duplex 1Gbps
bPauseSymmetric(6), -- Capable of full-duplex pause
bPauseAsymmetric(7) -- Capable of asymetric pause
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A value that identifies the set of port capabilities
to advertise during auto-negociation. Each bit indicates whether
or not the specific capability is valid on the system."
::= { acdPortConfigEntry 13 }
acdPortConfigForceTxOn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the Force tx on for this port."
::= { acdPortConfigEntry 14 }
acdPortConfigLaserMode OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the SFP TX laser mode for this port to on or off."
::= { acdPortConfigEntry 15 }
-------------------------------------------------------------------------------
-- The port status table.
-------------------------------------------------------------------------------
acdPortStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for port status"
::= { acdPortStatus 1 }
acdPortStatusEntry OBJECT-TYPE
SYNTAX AcdPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port status."
INDEX { acdPortStatusIndex }
::= { acdPortStatusTable 1 }
AcdPortStatusEntry ::= SEQUENCE {
acdPortStatusIndex Unsigned32,
acdPortStatusSpeed Unsigned32,
acdPortStatusDuplex INTEGER,
acdPortStatusMdi INTEGER,
acdPortStatusTxPause TruthValue,
acdPortStatusRxPause TruthValue,
acdPortStatusLinkPartnerAbility BITS,
acdPortStatusLinkStatus TruthValue,
acdPortStatusMedia BITS,
acdPortStatusIsMonitor TruthValue,
acdPortStatusIsManagement TruthValue,
acdPortStatusIsSFP TruthValue,
acdPortStatusIsFiber TruthValue
}
acdPortStatusIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object uniquely identifies this acdPortStatus
entry."
::= { acdPortStatusEntry 1 }
acdPortStatusSpeed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed of the port in Mbps. The valid values are 10, 100
1000 and 10000."
::= { acdPortStatusEntry 2 }
acdPortStatusDuplex OBJECT-TYPE
SYNTAX INTEGER {
halfDuplex(1),
fullDuplex(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current duplex mode of the port."
::= { acdPortStatusEntry 3 }
acdPortStatusMdi OBJECT-TYPE
SYNTAX INTEGER {
mdi(1),
mdix(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current MDI mode of the port."
::= { acdPortStatusEntry 4 }
acdPortStatusTxPause OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether or not the port is transmitting pause frames."
::= { acdPortStatusEntry 5 }
acdPortStatusRxPause OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether or not the port is receiving pause frames."
::= { acdPortStatusEntry 6 }
acdPortStatusLinkPartnerAbility OBJECT-TYPE
SYNTAX BITS {
bHalfDuplex10Mbps(0), -- Capable of Half Duplex 10Mbps
bFullDuplex10Mbps(1), -- Capable of Full Duplex 10Mbps
bHalfDuplex100Mbps(2), -- Capable of Half Duplex 100Mbps
bFullDuplex100Mbps(3), -- Capable of Full Duplex 100Mbps
bHalfDuplex1Gbps(4), -- Capable of Half Duplex 1Gbps
bFullDuplex1Gbps(5), -- Capable of Full Duplex 1Gbps
bPauseSymmetric(6), -- Capable of full-duplex pause
bPauseAsymmetric(7) -- Capable of asymetric pause
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A value that identifies the set of port capabilities
advertised by the link partner. Each bit indicates whether
or not the specific capability is valid on the link partner
system."
::= { acdPortStatusEntry 7 }
acdPortStatusLinkStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the port link is Up or Down.
Down(FALSE),
Up(TRUE)"
::= { acdPortStatusEntry 8 }
acdPortStatusMedia OBJECT-TYPE
SYNTAX BITS {
bOther(0), -- other or unknown
bAUI(1), -- AUI
b10base5(2), -- 10BASE-5
bFoirl(3), -- FOIRL
b10base2(4), -- 10BASE-2
b10baseT(5), -- 10BASE-T duplex mode unknown
b10baseFP(6), -- 10BASE-FP
b10baseFB(7), -- 10BASE-FB
b10baseFL(8), -- 10BASE-FL duplex mode unknown
b10broad36(9), -- 10BROAD36
b10baseTHD(10), -- 10BASE-T half duplex mode
b10baseTFD(11), -- 10BASE-T full duplex mode (Supported)
b10baseFLHD(12), -- 10BASE-FL half duplex mode
b10baseFLFD(13), -- 10BASE-FL full duplex mode
b100baseT4(14), -- 100BASE-T4
b100baseTXHD(15), -- 100BASE-TX half duplex mode
b100baseTXFD(16), -- 100BASE-TX full duplex mode (Supported)
b100baseFXHD(17), -- 100BASE-FX half duplex mode
b100baseFXFD(18), -- 100BASE-FX full duplex mode (Supported)
b100baseT2HD(19), -- 100BASE-T2 half duplex mode
b100baseT2FD(20), -- 100BASE-T2 full duplex mode
b1000baseXHD(21), -- 1000BASE-X half duplex mode
b1000baseXFD(22), -- 1000BASE-X full duplex mode (Supported)
b1000baseLXHD(23), -- 1000BASE-LX half duplex mode
b1000baseLXFD(24), -- 1000BASE-LX full duplex mode (Supported)
b1000baseSXHD(25), -- 1000BASE-SX half duplex mode
b1000baseSXFD(26), -- 1000BASE-SX full duplex mode (Supported)
b1000baseCXHD(27), -- 1000BASE-CX half duplex mode
b1000baseCXFD(28), -- 1000BASE-CX full duplex mode (Supported)
b1000baseTHD(29), -- 1000BASE-T half duplex mode
b1000baseTFD(30) -- 1000BASE-T full duplex mode (Supported - Copper SFP)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A value that uniquely identifies the selected media type."
::= { acdPortStatusEntry 9 }
acdPortStatusIsMonitor OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the port is a monitor port.
No(FALSE),
Yes(TRUE)"
::= { acdPortStatusEntry 10 }
acdPortStatusIsManagement OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the port is a management port.
No(FALSE),
Yes(TRUE)"
::= { acdPortStatusEntry 11 }
acdPortStatusIsSFP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the port has an SFP.
No(FALSE),
Yes(TRUE)"
::= { acdPortStatusEntry 12 }
acdPortStatusIsFiber OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the port is connected to fiber.
No(FALSE),
Yes(TRUE)"
::= { acdPortStatusEntry 13 }
-------------------------------------------------------------------------------
-- The port transmit statistics table.
-- This table contains all port transmit statistics.
-------------------------------------------------------------------------------
acdPortTxStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdPortTxStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of port transmit statistics"
::= { acdPortStats 1 }
acdPortTxStatsEntry OBJECT-TYPE
SYNTAX AcdPortTxStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"port transmit statistics."
INDEX { acdPortTxStatsIndex }
::= { acdPortTxStatsTable 1 }
AcdPortTxStatsEntry ::= SEQUENCE {
acdPortTxStatsIndex Unsigned32,
acdPortTxStatsSupportBits BITS,
acdPortTxStatsBytesGood Counter64,
acdPortTxStatsBytesTotal Counter64,
acdPortTxStatsUnicastPkts Counter64,
acdPortTxStatsMulticastPkts Counter64,
acdPortTxStatsBroadcastPkts Counter64,
acdPortTxStatsPauseFrames Counter64,
acdPortTxStatsTaggedFrames Counter64,
acdPortTxStatsCRCErrors Counter64,
acdPortTxStatsDeferred Counter64,
acdPortTxStatsExcessiveDeferrals Counter64,
acdPortTxStatsSingleCollisions Counter64,
acdPortTxStatsMultipleCollisions Counter64,
acdPortTxStatsExcessiveCollisions Counter64,
acdPortTxStatsLateCollisions Counter64,
acdPortTxStatsNormalCollisions Counter64,
acdPortTxStatsFifoErrors Counter64,
acdPortTxStatsPkts64 Counter64,
acdPortTxStatsPkts65to127 Counter64,
acdPortTxStatsPkts128to255 Counter64,
acdPortTxStatsPkts256to511 Counter64,
acdPortTxStatsPkts512to1023 Counter64,
acdPortTxStatsPkts1024to1518 Counter64,
acdPortTxStatsPkts1519to2047 Counter64,
acdPortTxStatsPkts2048to4095 Counter64,
acdPortTxStatsPkts4096to8191 Counter64,
acdPortTxStatsPkts8192andMore Counter64,
acdPortTxStatsPktsLarge Counter64,
acdPortTxL1Rate Gauge32,
acdPortTxL1Percent Gauge32,
acdPortTxL2Rate Gauge32
}
acdPortTxStatsIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object uniquely identifies this acdPortTxStats
entry."
::= { acdPortTxStatsEntry 1 }
acdPortTxStatsSupportBits OBJECT-TYPE
SYNTAX BITS {
bBytesGood(0), -- acdPortTxStatsBytesGood validity flag
bBytesTotal(1), -- acdPortTxStatsBytesTotal validity flag
bUnicastPkts(2), -- acdPortTxStatsUnicastPkts validity flag
bMulticastPkts(3), -- acdPortTxStatsMulticastPkts validity flag
bBroadcastPkts(4), -- acdPortTxStatsBroadcastPkts validity flag
bPauseFrames(5), -- acdPortTxStatsPauseFrames validity flag
bTaggedFrames(6), -- acdPortTxStatsTaggedFrames validity flag
bCRCErrors(7), -- acdPortTxStatsCRCErrors validity flag
bDeferred(8), -- acdPortTxStatsDeferred validity flag
bExcessiveDeferrals(9), -- acdPortTxStatsExcessiveDeferrals validity flag
bSingleCollisions(10), -- acdPortTxStatsSingleCollisions validity flag
bMultipleCollisions(11), -- acdPortTxStatsMultipleCollisions validity flag
bExcessiveCollisions(12),-- acdPortTxStatsExcessiveCollisions validity flag
bLateCollisions(13), -- acdPortTxStatsLateCollisions validity flag
bNormalCollisions(14), -- acdPortTxStatsNormalCollisions validity flag
bFifoErrors(15), -- acdPortTxStatsFifoErrors validity flag
bPkts64(16), -- acdPortTxStatsPkts64 validity flag
bPkts65to127(17), -- acdPortTxStatsPkts65to127 validity flag
bPkts128to255(18), -- acdPortTxStatsPkts128to255 validity flag
bPkts256to511(19), -- acdPortTxStatsPkts256to511 validity flag
bPkts512to1023(20), -- acdPortTxStatsPkts512to1023 validity flag
bPkts1024to1518(21), -- acdPortTxStatsPkts1024to1518 validity flag
bPkts1519to2047(22), -- acdPortTxStatsPkts1519to2047 validity flag
bPkts2048to4095(23), -- acdPortTxStatsPkts2048to4095 validity flag
bPkts4096to8191(24), -- acdPortTxStatsPkts4096to8191 validity flag
bPkts8192andMore(25), -- acdPortTxStatsPkts8192andMore validity flag
bPktsLarge(26), -- acdPortTxStatsPktsLarge validity flag
bL1Rate(27), -- acdPortTxL1Rate validity flag
bL1Percent(28), -- acdPortTxL1Percent validity flag
bL2Rate(29) -- acdPortTxL2Rate validity flag
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A value that identifies the set of TX statistics
supported by the device. Each bit indicates whether
or not the specific statistic value is valid on the
system."
::= { acdPortTxStatsEntry 2 }
acdPortTxStatsBytesGood OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the total number of bytes transmitted by the port
in good packets. The count includes the 4 CRC bytes but does not
include the preamble or SFD bytes. A good packet is one that has been
transmitted successfully (not aborted) with a good CRC. It is assumed
that all transmit packets are properly sized, 64 bytes (after any
padding) to maxsize bytes long."
::= { acdPortTxStatsEntry 3 }
acdPortTxStatsBytesTotal OBJECT-TYPE
SYNTAX Counter64
UNITS "Octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the total number of bytes transmitted by the port
in good and bad packets. The count includes the 4 CRC bytes but does
not include the preamble or SFD bytes. Bad packets include normal
collisions, late collisions, and FIFO underflows. For collisions,
all bytes transmitted before the start of the collision as well as
the colliding and jam bytes are counted. For FIFO underflows, all
bytes actually transmitted are counted."
::= { acdPortTxStatsEntry 4 }
acdPortTxStatsUnicastPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the good unicast packets transmitted by this port.
Good unicast packets are packets that are not dropped and have a good
CRC. Unicast packets are identified by having a 0 in the least
significant bit of the first byte of the destination address (i.e.
the first bit transmitted is a 0)."
::= { acdPortTxStatsEntry 5 }
acdPortTxStatsMulticastPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the good multicast packets transmitted by this
port (good means not dropped and valid CRC). Multicast packets are
identified by having a 1 in the least significant bit of the first
byte of the destination address (i.e. the first bit transmitted is
a 1). Broadcast packets are not included in this count."
::= { acdPortTxStatsEntry 6 }
acdPortTxStatsBroadcastPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the good broadcast packets transmitted by this
port (good means not dropped and valid CRC). Broadcast packets are
identified by a destination address of all 1."
::= { acdPortTxStatsEntry 7 }
acdPortTxStatsPauseFrames OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the good flow control pause packets transmitted
by this port (good means not dropped and valid CRC). Flow control
pause packets are identified by a type of 0x8808 and an opcode field
of 0x0001."
::= { acdPortTxStatsEntry 8 }
acdPortTxStatsTaggedFrames OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the good VLAN packets transmitted by this port
(good means not dropped and valid CRC). VLAN packets are identified
by a type field equal to 0x8100 in the outer VLAN tag."
::= { acdPortTxStatsEntry 9 }
acdPortTxStatsCRCErrors OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the transmitted packets with a bad non-appended
CRC field. This count doesn't include any packets with a bad CRC due
to a FIFO underflow."
::= { acdPortTxStatsEntry 10 }
acdPortTxStatsDeferred OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the number of packets that were deferred on the
first transmit attempt due to the medium being busy. Packets with
subsequent deferrals (for instance, after a collision back off) are
not counted. Whether the packet is eventually transmitted successfully
or not is irrelevant to this counter. Packets dropped due to excess
deferral that occur during the initial transmit attempt are not
counted."
::= { acdPortTxStatsEntry 11 }
acdPortTxStatsExcessiveDeferrals OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the number of packets dropped by this port due to
excessive deferral. The deferral time starts at the beginning of each
transmission attempt and ends when the transmission starts (regardless
of collisions). The deferral is excessive if more than 3036 byte times
have passed without the transmission starting."
::= { acdPortTxStatsEntry 12 }
acdPortTxStatsSingleCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the number of times a packet is successfully
transmitted from this port after experiencing a single collision.
This count does not include erroneous (dropped) packets."
::= { acdPortTxStatsEntry 13 }
acdPortTxStatsMultipleCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the number of times a packet is successfully
transmitted from this port after experiencing multiple collisions.
This count does not include erroneous (dropped) packets and also does
not include packets dropped due to excess collisions."
::= { acdPortTxStatsEntry 14 }
acdPortTxStatsExcessiveCollisions OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the number of packets dropped by this port due
to excess collisions (number of collisions equals MaxRetry+1). This
count does not include packets dropped due to FIFO underflow or
late collisions (even if the late collision is also an excessive
collision)."
::= { acdPortTxStatsEntry 15 }
acdPortTxStatsLateCollisions OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the number of packets dropped by this port due
to late collisions. A late collision is a collision that occurs
after the collision window time (normally 512-bit times). This count
does not include packets dropped due to FIFO underflow. Late
collisions are not retried."
::= { acdPortTxStatsEntry 16 }
acdPortTxStatsNormalCollisions OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the total number of normal collisions that have
occurred on this port during all transmission attempts. FIFO
underflows, late collisions and collisions that occur while this
port is not trying to transmit are not counted. This count does not
include collisions during half-duplex back pressure."
::= { acdPortTxStatsEntry 17 }
acdPortTxStatsFifoErrors OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a count of the number of packets dropped by this port due to
an underflow in the transmit FIFO. When an underflow is detected,
transmission is immediately aborted after sending a known bad
(inverted) CRC sequence. The FIFO underflow error takes precedence
over all other errors if this counter is incremented, then none of
the other packet type counters are incremented."
::= { acdPortTxStatsEntry 18 }
acdPortTxStatsPkts64 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were exactly 64 bytes in length (excluding preamble and SFD but
including CRC)."
::= { acdPortTxStatsEntry 19 }
acdPortTxStatsPkts65to127 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 65 to 127 bytes in length inclusive (excluding preamble
and SFD but including CRC)."
::= { acdPortTxStatsEntry 20 }
acdPortTxStatsPkts128to255 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 128 to 255 bytes in length inclusive (excluding preamble
and SFD but including CRC)."
::= { acdPortTxStatsEntry 21 }
acdPortTxStatsPkts256to511 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 256 to 511 bytes in length inclusive (excluding preamble
and SFD but including CRC)."
::= { acdPortTxStatsEntry 22 }
acdPortTxStatsPkts512to1023 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 512 to 1023 bytes in length inclusive (excluding preamble
and SFD but including CRC)."
::= { acdPortTxStatsEntry 23 }
acdPortTxStatsPkts1024to1518 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 1024 to 1518 bytes in length (excluding preamble and SFD
but including CRC)."
::= { acdPortTxStatsEntry 24 }
acdPortTxStatsPkts1519to2047 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 1519 to 2047 bytes in length inclusive (excluding preamble
and SFD but including CRC)."
::= { acdPortTxStatsEntry 25 }
acdPortTxStatsPkts2048to4095 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 2048 to 4095 bytes in length inclusive (excluding preamble
and SFD but including CRC)."
::= { acdPortTxStatsEntry 26 }
acdPortTxStatsPkts4096to8191 OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were 4096 to 8191 bytes in length inclusive (excluding preamble
and SFD but including CRC)."
::= { acdPortTxStatsEntry 27 }
acdPortTxStatsPkts8192andMore OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets, good or bad, transmitted by this port
that were greater than 8192 bytes in length (excluding preamble and
SFD but including CRC)."
::= { acdPortTxStatsEntry 28 }
acdPortTxStatsPktsLarge OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of large packets transmitted by this port. Define
the size of large packets on the Port configuration."
::= { acdPortTxStatsEntry 29 }
acdPortTxL1Rate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Mbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Layer 1 rate"
::= { acdPortTxStatsEntry 30 }
acdPortTxL1Percent OBJECT-TYPE
SYNTAX Gauge32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Layer 1 bandwidth utilization"
::= { acdPortTxStatsEntry 31 }
acdPortTxL2Rate OBJECT-TYPE
SYNTAX Gauge32
UNITS "Mbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Layer 2 rate"
::= { acdPortTxStatsEntry 32 }
-------------------------------------------------------------------------------
-- The port receive statistics table.
-- This table contains all port receive statistics.
-------------------------------------------------------------------------------
acdPortRxStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdPortRxStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of port receive statistics"
::= { acdPortStats 2 }
acdPortRxStatsEntry OBJECT-TYPE
SYNTAX AcdPortRxStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"port receive statistics."
INDEX { acdPortRxStatsIndex }
::= { acdPortRxStatsTable 1 }
AcdPortRxStatsEntry ::= SEQUENCE {
acdPortRxStatsIndex Unsigned32,
acdPortRxStatsSupportBits BITS,
acdPortRxStatsBytesGood Counter64,
acdPortRxStatsBytesTotal Counter64,
acdPortRxStatsShortOk Counter64,
acdPortRxStatsShortBad Counter64,
acdPortRxStatsLongOk Counter64,
acdPortRxStatsLongBad Counter64,
acdPortRxStatsUnicastPkts Counter64,
acdPortRxStatsMulticastPkts Counter64,
acdPortRxStatsBroadcastPkts Counter64,
acdPortRxStatsPauseFrames Counter64,
acdPortRxStatsTaggedFrames Counter64,
acdPortRxStatsCRCErrors Counter64,
acdPortRxStatsAlignErrors Counter64,
acdPortRxStatsRuntFrames Counter64,
acdPortRxStatsLengthErrors Counter64,
acdPortRxStatsFalseCRS Counter64,
acdPortRxStatsPhyErrors Counter64,
acdPortRxStatsFifoErrors Counter64,
acdPortRxStatsIgnored Counter64,
acdPortRxStatsBadOpcode Counter64,
acdPortRxStatsPkts64 Counter64,
acdPortRxStatsPkts65to127 Counter64,
acdPortRxStatsPkts128to255 Counter64,
acdPortRxStatsPkts256to511 Counter64,
acdPortRxStatsPkts512to1023 Counter64,
acdPortRxStatsPkts1024to1518 Counter64,
acdPortRxStatsPkts1519to2047 Counter64,
acdPortRxStatsPkts2048to4095 Counter64,
acdPortRxStatsPkts4096to8191 Counter64,
acdPortRxStatsPkts8192andMore Counter64,
acdPortRxStatsPktsLarge Counter64,
acdPortRxL1Rate Gauge32,
acdPortRxL1Percent Gauge32,