forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ACD-ERP-MIB.mib
1196 lines (1059 loc) · 39.6 KB
/
ACD-ERP-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-ERP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue, TEXTUAL-CONVENTION, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
acdMibs
FROM ACCEDIAN-SMI;
acdErp 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 ERP database for this Accedian Networks device."
REVISION "201609230100Z" -- 23 SEP 2016
DESCRIPTION
"Remove AcdErpVlanType out of MIB file."
REVISION "201201110100Z" -- 11 JAN 2012
DESCRIPTION
"Initial version of MIB module ACD-ERP-MIB."
::= { acdMibs 15 }
acdErpMIBObjects OBJECT IDENTIFIER ::= { acdErp 0 }
acdErpConformance OBJECT IDENTIFIER ::= { acdErp 1 }
acdErpConfig OBJECT IDENTIFIER ::= { acdErpMIBObjects 1 }
acdErpCounter OBJECT IDENTIFIER ::= { acdErpMIBObjects 2 }
acdErpStatus OBJECT IDENTIFIER ::= { acdErpMIBObjects 3 }
acdErpVlanFdb OBJECT IDENTIFIER ::= { acdErpMIBObjects 4 }
---------------------------------------------------------------------------
-- Textual conventions
---------------------------------------------------------------------------
AcdErpPortStateType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status of the port's forwarding."
SYNTAX INTEGER {
forwarding(0),
blocked(1)
}
AcdErpStateType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The state of the ERP instance."
SYNTAX INTEGER {
idle(1),
prot(2),
ms(3),
fs(4),
pending(5)
}
AcdErpPortStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The state of the port's signal."
SYNTAX INTEGER {
ok(1),
sd(2),
sf(3)
}
---------------------------------------------------------------------------
-- The Erp configuration table
-- This table contains all Service entry configurations.
---------------------------------------------------------------------------
acdErpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdErpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of ERP of this unit."
::= { acdErpConfig 1 }
acdErpConfigEntry OBJECT-TYPE
SYNTAX AcdErpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all settings for an instance."
INDEX { acdErpIndex }
::= { acdErpConfigTable 1 }
AcdErpConfigEntry ::= SEQUENCE {
acdErpIndex Unsigned32,
acdErpConfigRowStatus RowStatus,
acdErpConfigName DisplayString,
acdErpConfigRPLRole DisplayString,
acdErpConfigRPLPort Unsigned32,
acdErpConfigHoldOffTimer Unsigned32,
acdErpConfigRevertive TruthValue,
acdErpConfigGuardTimer Unsigned32,
acdErpConfigWTRTimer Unsigned32,
acdErpConfigMDLevel Unsigned32,
acdErpConfigAPSVid Unsigned32,
acdErpConfigVids0to1023 OCTET STRING,
acdErpConfigVids1024to2047 OCTET STRING,
acdErpConfigVids2048to3071 OCTET STRING,
acdErpConfigVids3072to4095 OCTET STRING,
acdErpConfigLAGPort DisplayString,
acdErpConfigMep0Idx Unsigned32,
acdErpConfigMep1Idx Unsigned32
}
acdErpIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each instance."
::= { acdErpConfigEntry 1 }
acdErpConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"All columns must have a valid value before a row can be activated. To
create a new Service you shall provide a unique name for an empty
row with the RowStatus set to Create and Go."
::= { acdErpConfigEntry 2 }
acdErpConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A unique name used to identify the instance"
::= { acdErpConfigEntry 3 }
acdErpConfigRPLRole OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RPL role (Owner, Neighbor or None)."
::= { acdErpConfigEntry 4 }
acdErpConfigRPLPort OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The index of the port used as RPL."
DEFVAL { 0 }
::= { acdErpConfigEntry 5 }
acdErpConfigHoldOffTimer OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The hold off timer duration in ms."
::= { acdErpConfigEntry 6 }
acdErpConfigRevertive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This indicates if the ERP is in revertive state."
DEFVAL { 1 }
::= { acdErpConfigEntry 7 }
acdErpConfigGuardTimer OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The guard timer duration in ms."
DEFVAL { 500 }
::= { acdErpConfigEntry 8 }
acdErpConfigWTRTimer OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The WTR timer duration in minutes."
DEFVAL { 5 }
::= { acdErpConfigEntry 9 }
acdErpConfigMDLevel OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maintenance domain level."
DEFVAL { 0 }
::= { acdErpConfigEntry 10 }
acdErpConfigAPSVid OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The APS VID."
::= { acdErpConfigEntry 11 }
acdErpConfigVids0to1023 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpConfigEntry 12 }
acdErpConfigVids1024to2047 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpConfigEntry 13 }
acdErpConfigVids2048to3071 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpConfigEntry 14 }
acdErpConfigVids3072to4095 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpConfigEntry 15 }
acdErpConfigLAGPort OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The LAG port name"
::= { acdErpConfigEntry 16 }
acdErpConfigMep0Idx OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MEP0 port index."
::= { acdErpConfigEntry 17 }
acdErpConfigMep1Idx OBJECT-TYPE
SYNTAX Unsigned32 (0 .. 1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MEP1 port index."
::= { acdErpConfigEntry 18 }
---------------------------------------------------------------------------
-- The instance counters table
-- This table contains all ERP counters.
---------------------------------------------------------------------------
acdErpCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdErpCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of ERP of this unit."
::= { acdErpCounter 1 }
acdErpCounterEntry OBJECT-TYPE
SYNTAX AcdErpCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all counters for an instance."
INDEX { acdErpCounterIndex }
::= { acdErpCounterTable 1 }
AcdErpCounterEntry ::= SEQUENCE {
acdErpCounterIndex Unsigned32,
acdErpCounterPort0LocalClear Unsigned32,
acdErpCounterPort0LocalFs Unsigned32,
acdErpCounterPort0LocalSf Unsigned32,
acdErpCounterPort0LocalMs Unsigned32,
acdErpCounterPort0RxAps Unsigned32,
acdErpCounterPort0RxApsFs Unsigned32,
acdErpCounterPort0RxApsSf Unsigned32,
acdErpCounterPort0RxApsMs Unsigned32,
acdErpCounterPort0RxApsNrRb Unsigned32,
acdErpCounterPort0RxApsNr Unsigned32,
acdErpCounterPort0TxAps Unsigned32,
acdErpCounterPort0TxApsFs Unsigned32,
acdErpCounterPort0TxApsSf Unsigned32,
acdErpCounterPort0TxApsMs Unsigned32,
acdErpCounterPort0TxApsNrRb Unsigned32,
acdErpCounterPort0TxApsNr Unsigned32,
acdErpCounterPort0DropGuard Unsigned32,
acdErpCounterPort0DropUnknown Unsigned32,
acdErpCounterPort0DropMismatch Unsigned32,
acdErpCounterPort1LocalClear Unsigned32,
acdErpCounterPort1LocalFs Unsigned32,
acdErpCounterPort1LocalSf Unsigned32,
acdErpCounterPort1LocalMs Unsigned32,
acdErpCounterPort1RxAps Unsigned32,
acdErpCounterPort1RxApsFs Unsigned32,
acdErpCounterPort1RxApsSf Unsigned32,
acdErpCounterPort1RxApsMs Unsigned32,
acdErpCounterPort1RxApsNrRb Unsigned32,
acdErpCounterPort1RxApsNr Unsigned32,
acdErpCounterPort1TxAps Unsigned32,
acdErpCounterPort1TxApsFs Unsigned32,
acdErpCounterPort1TxApsSf Unsigned32,
acdErpCounterPort1TxApsMs Unsigned32,
acdErpCounterPort1TxApsNrRb Unsigned32,
acdErpCounterPort1TxApsNr Unsigned32,
acdErpCounterPort1DropGuard Unsigned32,
acdErpCounterPort1DropUnknown Unsigned32,
acdErpCounterPort1DropMismatch Unsigned32
}
acdErpCounterIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely identifies this instance."
::= { acdErpCounterEntry 1 }
acdErpCounterPort0LocalClear OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local clear event processed."
::= { acdErpCounterEntry 2 }
acdErpCounterPort0LocalFs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local force switch event processed."
::= { acdErpCounterEntry 3 }
acdErpCounterPort0LocalSf OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local signal failed event processed."
::= { acdErpCounterEntry 4 }
acdErpCounterPort0LocalMs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local manual switch event processed."
::= { acdErpCounterEntry 5 }
acdErpCounterPort0RxAps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of APS messages received."
::= { acdErpCounterEntry 6 }
acdErpCounterPort0RxApsFs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of force switch messages received."
::= { acdErpCounterEntry 7 }
acdErpCounterPort0RxApsSf OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of signal failed messages received."
::= { acdErpCounterEntry 8 }
acdErpCounterPort0RxApsMs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of manual switch messages received."
::= { acdErpCounterEntry 9 }
acdErpCounterPort0RxApsNrRb OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request RPL blocked messages received."
::= { acdErpCounterEntry 10 }
acdErpCounterPort0RxApsNr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request messages received."
::= { acdErpCounterEntry 11 }
acdErpCounterPort0TxAps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of APS messages transmitted."
::= { acdErpCounterEntry 12 }
acdErpCounterPort0TxApsFs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of force switch messages transmitted."
::= { acdErpCounterEntry 13 }
acdErpCounterPort0TxApsSf OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of signal failed messages transmitted."
::= { acdErpCounterEntry 14 }
acdErpCounterPort0TxApsMs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of manual switch messages transmitted."
::= { acdErpCounterEntry 15 }
acdErpCounterPort0TxApsNrRb OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request RPL blocked messages transmitted."
::= { acdErpCounterEntry 16 }
acdErpCounterPort0TxApsNr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request messages transmitted."
::= { acdErpCounterEntry 17 }
acdErpCounterPort0DropGuard OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of messages dropped because of the guard timer."
::= { acdErpCounterEntry 18 }
acdErpCounterPort0DropUnknown OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of messages dropped because of unrecognized op codes."
::= { acdErpCounterEntry 19 }
acdErpCounterPort0DropMismatch OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of messages dropped because of erp version mismatch."
::= { acdErpCounterEntry 20 }
acdErpCounterPort1LocalClear OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local clear event processed."
::= { acdErpCounterEntry 21 }
acdErpCounterPort1LocalFs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local force switch event processed."
::= { acdErpCounterEntry 22 }
acdErpCounterPort1LocalSf OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local signal failed event processed."
::= { acdErpCounterEntry 23 }
acdErpCounterPort1LocalMs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local manual switch event processed."
::= { acdErpCounterEntry 24 }
acdErpCounterPort1RxAps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of APS messages received."
::= { acdErpCounterEntry 25 }
acdErpCounterPort1RxApsFs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of force switch messages received."
::= { acdErpCounterEntry 26 }
acdErpCounterPort1RxApsSf OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of signal failed messages received."
::= { acdErpCounterEntry 27 }
acdErpCounterPort1RxApsMs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of manual switch messages received."
::= { acdErpCounterEntry 28 }
acdErpCounterPort1RxApsNrRb OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request RPL blocked messages received."
::= { acdErpCounterEntry 29 }
acdErpCounterPort1RxApsNr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request messages received."
::= { acdErpCounterEntry 30 }
acdErpCounterPort1TxAps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of APS messages transmitted."
::= { acdErpCounterEntry 31 }
acdErpCounterPort1TxApsFs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of force switch messages transmitted."
::= { acdErpCounterEntry 32 }
acdErpCounterPort1TxApsSf OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of signal failed messages transmitted."
::= { acdErpCounterEntry 33 }
acdErpCounterPort1TxApsMs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of manual switch messages transmitted."
::= { acdErpCounterEntry 34 }
acdErpCounterPort1TxApsNrRb OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request RPL blocked messages transmitted."
::= { acdErpCounterEntry 35 }
acdErpCounterPort1TxApsNr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of no request messages transmitted."
::= { acdErpCounterEntry 36 }
acdErpCounterPort1DropGuard OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of messages dropped because of the guard timer."
::= { acdErpCounterEntry 37 }
acdErpCounterPort1DropUnknown OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of messages dropped because of unrecognized op codes."
::= { acdErpCounterEntry 38 }
acdErpCounterPort1DropMismatch OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of messages dropped because of erp version mismatch."
::= { acdErpCounterEntry 39 }
---------------------------------------------------------------------------
-- The status table
-- This table contains all erp entry status.
---------------------------------------------------------------------------
acdErpStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdErpStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of ERP of this unit."
::= { acdErpStatus 1 }
acdErpStatusEntry OBJECT-TYPE
SYNTAX AcdErpStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all status for an instance"
INDEX { acdErpStatusIdx }
::= { acdErpStatusTable 1 }
AcdErpStatusEntry ::= SEQUENCE {
acdErpStatusIdx Unsigned32,
acdErpStatusName DisplayString,
acdErpStatusNodeId MacAddress,
acdErpStatusRPLNodeId MacAddress,
acdErpStatusState AcdErpStateType,
acdErpStatusRequestNodeId MacAddress,
acdErpStatusRequest Unsigned32,
acdErpPort0Status AcdErpPortStatusType,
acdErpPort0State AcdErpPortStateType,
acdErpPort1Status AcdErpPortStatusType,
acdErpPort1State AcdErpPortStateType
}
acdErpStatusIdx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique index for each service instance."
::= { acdErpStatusEntry 1 }
acdErpStatusName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique name used to identify the instance."
::= { acdErpStatusEntry 2 }
acdErpStatusNodeId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The instance node ID."
::= { acdErpStatusEntry 3 }
acdErpStatusRPLNodeId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPL node ID."
::= { acdErpStatusEntry 4 }
acdErpStatusState OBJECT-TYPE
SYNTAX AcdErpStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP state."
::= { acdErpStatusEntry 5 }
acdErpStatusRequestNodeId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP latest top priority request node ID."
::= { acdErpStatusEntry 6 }
acdErpStatusRequest OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ERP latest top priority request."
::= { acdErpStatusEntry 7 }
acdErpPort0Status OBJECT-TYPE
SYNTAX AcdErpPortStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of Port 0."
::= { acdErpStatusEntry 8 }
acdErpPort0State OBJECT-TYPE
SYNTAX AcdErpPortStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of Port 0."
::= { acdErpStatusEntry 9 }
acdErpPort1Status OBJECT-TYPE
SYNTAX AcdErpPortStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of Port 1."
::= { acdErpStatusEntry 10 }
acdErpPort1State OBJECT-TYPE
SYNTAX AcdErpPortStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of Port 1."
::= { acdErpStatusEntry 11 }
---------------------------------------------------------------------------
-- The vlan fdb table
-- This table contains all vlan fdb entry.
---------------------------------------------------------------------------
acdErpVlanFdbTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdErpVlanFdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all instance of ERP of this unit."
::= { acdErpVlanFdb 1 }
acdErpVlanFdbEntry OBJECT-TYPE
SYNTAX AcdErpVlanFdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all vlan fdb info for an instance"
INDEX { acdErpVlanFdbIdx }
::= { acdErpVlanFdbTable 1 }
AcdErpVlanFdbEntry ::= SEQUENCE {
acdErpVlanFdbIdx Unsigned32,
acdErpVlanFdbPort0Vids0to1023 OCTET STRING,
acdErpVlanFdbPort0Vids1024to2047 OCTET STRING,
acdErpVlanFdbPort0Vids2048to3071 OCTET STRING,
acdErpVlanFdbPort0Vids3072to4095 OCTET STRING,
acdErpVlanFdbPort1Vids0to1023 OCTET STRING,
acdErpVlanFdbPort1Vids1024to2047 OCTET STRING,
acdErpVlanFdbPort1Vids2048to3071 OCTET STRING,
acdErpVlanFdbPort1Vids3072to4095 OCTET STRING,
acdErpVlanFdbFloodingVids0to1023 OCTET STRING,
acdErpVlanFdbFloodingVids1024to2047 OCTET STRING,
acdErpVlanFdbFloodingVids2048to3071 OCTET STRING,
acdErpVlanFdbFloodingVids3072to4095 OCTET STRING,
acdErpVlanFdbFlappingVids0to1023 OCTET STRING,
acdErpVlanFdbFlappingVids1024to2047 OCTET STRING,
acdErpVlanFdbFlappingVids2048to3071 OCTET STRING,
acdErpVlanFdbFlappingVids3072to4095 OCTET STRING
}
acdErpVlanFdbIdx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique index for each instance."
::= { acdErpVlanFdbEntry 1 }
acdErpVlanFdbPort0Vids0to1023 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 2 }
acdErpVlanFdbPort0Vids1024to2047 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 3 }
acdErpVlanFdbPort0Vids2048to3071 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 4 }
acdErpVlanFdbPort0Vids3072to4095 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 5 }
acdErpVlanFdbPort1Vids0to1023 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 6 }
acdErpVlanFdbPort1Vids1024to2047 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 7 }
acdErpVlanFdbPort1Vids2048to3071 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 8 }
acdErpVlanFdbPort1Vids3072to4095 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 9 }
acdErpVlanFdbFloodingVids0to1023 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 10 }
acdErpVlanFdbFloodingVids1024to2047 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 11 }
acdErpVlanFdbFloodingVids2048to3071 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."
::= { acdErpVlanFdbEntry 12 }
acdErpVlanFdbFloodingVids3072to4095 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each octet specifies a set of eight VLANs, the first octet specifying
VLAN ID 0 through 7, and so on. Within each octet, the most significant
bit represents the lowest numbered VLAN ID. If that bit has a value of
'1' then that VLAN is included in the set of VLANs; the VLAN is not
included otherwise."