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
|
-- *********************************************************************
-- *********************************************************************
-- ** Filename: PRVT-RING-EPS-MIB
-- ** Project: T - Ethernet and Fast Ethernet IP Switches.
-- ** Purpose: Private MIB
-- *********************************************************************
-- (c) Copyright, 2009, BATM Advanced Communications. All rights reserved.
-- WARNING:
--
-- BY UTILIZING THIS FILE, YOU AGREE TO THE FOLLOWING:
--
-- This file is the property of BATM Advanced Communications.
-- BATM Advanced Communications retains all title and
-- ownership in the Specification, including any revisions.
-- BATM Advanced Communications grants all interested parties a non-exclusive
-- license to use and distribute an unmodified copy of this
-- Specification in connection with management of BATM Advanced Communications
-- and Telco Systems products, and without fee, provided that the following
-- conditions are met:
-- 1. Redistributions of this specification must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
-- 2. Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- 3. The name of the BATM Advanced Communications MAY NOT be used to endorse
-- or promote products derived from this specification without specific prior written
-- permission.
--
-- EXCEPT AS RESTRICTED BY LAW, OR AS PROVIDED IN BATM'S LIMITED
-- WARRANTY, THE SPECIFICATIONS CONTAINED IN THIS FILE ARE
-- PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES
-- OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-- IN NO EVENT SHALL BATM BE LIABLE FOR ANY DAMAGES WHATSOEVER
-- INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS
-- PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR
-- OTHER CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE, OR INABILITY
-- TO USE, THE SPECIFICATION CONTAINED IN THIS FILE.
PRVT-RING-EPS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32, NOTIFICATION-TYPE
FROM SNMPv2-SMI -- RFC2578
TEXTUAL-CONVENTION, RowStatus, MacAddress, TruthValue, DisplayString
FROM SNMPv2-TC -- RFC2579
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF -- [RFC2580]
InterfaceIndexOrZero
FROM IF-MIB -- [RFC2863]
VlanIdOrNone
FROM Q-BRIDGE-MIB -- [RFC4363]
Dot1agCfmMDLevelOrNone, Dot1agCfmMepIdOrZero
FROM IEEE8021-CFM-MIB
switch
FROM PRVT-SWITCH-MIB;
prvtRingEpsMib MODULE-IDENTITY
LAST-UPDATED "201003160000Z"
ORGANIZATION "BATM Advanced Communication"
CONTACT-INFO
"BATM/Telco Systems Support team
Email:
For North America: techsupport@telco.com
For North Europe: support@batm.de, info@batm.de
For the rest of the world: techsupport@telco.com"
DESCRIPTION
"This private MIB provides capability of controlling the
automatic Ring Ethernet Protection Switching (ITU-T G.8032)"
-- revision history
REVISION "201302220000Z"
DESCRIPTION
"Added raps monitoring methods for rings and subrings"
REVISION "201103110000Z"
DESCRIPTION
"Added ring ID for rings and subrings"
REVISION "201012170000Z"
DESCRIPTION
"Added descriptions for rings and subrings"
REVISION "201003160000Z"
DESCRIPTION
"Added support for subrings"
REVISION "201002020000Z"
DESCRIPTION
"Added prvtRingEpsWaitToBlockTimer, changed values order for PrvtRingEpsPortStatusType "
REVISION "200911040000Z"
DESCRIPTION
"Initial version."
::= { switch 134 }
-- ***********************************************
-- ************ Top level structure of the MIB****
-- ***********************************************
prvtRingEpsNotifications OBJECT IDENTIFIER ::= { prvtRingEpsMib 0 }
prvtRingEpsObjects OBJECT IDENTIFIER ::= { prvtRingEpsMib 1 }
prvtRingEpsConformance OBJECT IDENTIFIER ::= { prvtRingEpsMib 2 }
prvtRingEpsInstances OBJECT IDENTIFIER ::= { prvtRingEpsObjects 1 }
prvtRingEpsVlans OBJECT IDENTIFIER ::= { prvtRingEpsObjects 2 }
prvtRingEpsSubRings OBJECT IDENTIFIER ::= { prvtRingEpsObjects 3 }
PrvtRingEpsModeType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Version of the protocol the instance will use"
REFERENCE
"G.8032v2 clause 10.1.13"
SYNTAX INTEGER {
rapsMode8032v1 (1),
rapsMode8032v2 (2)
}
PrvtRingEpsStateType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"State of the R-APS request processing logic"
REFERENCE
"G.8032v2 clause 10.1.2"
SYNTAX INTEGER {
rapsInit (0),
rapsIdle (1),
rapsProtection (2),
rapsManualSwitch (3),
rapsForcedSwitch (4),
rapsPending (5)
}
PrvtRingEpsLocalCommandType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Local system state given by the top priority command received"
REFERENCE
"G.8032v2 clause 8"
SYNTAX INTEGER {
rapsLcNoRequest (0),
rapsLcExercise (1),
rapsLcManualSwitch (2),
rapsLcSignalDegrade (3),
rapsLcSignalFail (4),
rapsLcForcedSwitch (5),
rapsLcClear (6),
rapsLcLockoutOfProtection (7)
}
PrvtRingEpsRemoteRequestType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Remote command received via RAPS packets"
REFERENCE
"G.8032v2 clause 10.3"
SYNTAX INTEGER {
rapsRsNone (-1),
rapsRsNoRequest (0),
rapsRsManualSwitch (7),
rapsRsSignalFail (11),
rapsRsForcedSwitch (13),
rapsRsEvent (14)
}
PrvtRingEpsNodeRoleType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Role of the defined node inside the protected ring"
REFERENCE
"G.8032v2"
SYNTAX INTEGER {
rapsNrSimpleNode (0),
rapsNrRplNeighborNode (1),
rapsNrRplOwner (2)
}
PrvtRingEpsRplPortType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Ring port designated as RPL
(only valid if prvtRingEpsNodeRole is rapsNrRplOwner or rapsNrRplNeighborNode"
REFERENCE
"G.8032v2"
SYNTAX INTEGER {
port0 (0),
port1 (1),
none (2)
}
PrvtRingEpsDefectType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Ring port designated as RPL
(only valid if prvtRingEpsNodeRole is rapsNrRplOwner or rapsNrRplNeighborNode"
REFERENCE
"G.8032v2 10.4"
SYNTAX BITS {
rapsDprovisioningMismatch (0)
}
PrvtRingEpsPortStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Status of the port link"
SYNTAX INTEGER {
rapsPsOk (0),
rapsPsBlocked (1),
rapsPsFailed (2)
}
PrvtRingEpsPeerStatusType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Status bits set in the received RAPS packet. The meanings are:
bRplBlocked(0) The RPL link is blocked by the RPL owner.
bDoNotFlush(1) RAPS sender requests that we do don flush our FDB.
bBlockedPortReference(2) The port that is blocked by the sender of the RAPS packet.
"
REFERENCE
"ITU-T G.8032v2 clause 10.3"
SYNTAX BITS {
bRplBlocked(0),
bDoNotFlush(1),
bBlockedPortReference(2)
}
-- ***********************************************
-- Table definitions
-- ***********************************************
prvtRingEpsInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtRingEpsInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes information about the ring instances
defined on this node."
::= { prvtRingEpsInstances 1 }
prvtRingEpsInstanceEntry OBJECT-TYPE
SYNTAX PrvtRingEpsInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"NONE"
INDEX { prvtRingEpsInstanceIndex }
::= { prvtRingEpsInstanceTable 1 }
PrvtRingEpsInstanceEntry ::= SEQUENCE {
prvtRingEpsInstanceIndex Unsigned32,
prvtRingEpsMode PrvtRingEpsModeType,
prvtRingEpsNodeRole PrvtRingEpsNodeRoleType,
prvtRingEpsState PrvtRingEpsStateType,
prvtRingEpsLocalCommand PrvtRingEpsLocalCommandType,
prvtRingEpsControlVlan VlanIdOrNone,
prvtRingEpsPort0Ifindex InterfaceIndexOrZero,
prvtRingEpsPort1Ifindex InterfaceIndexOrZero,
prvtRingEpsRplPort PrvtRingEpsRplPortType,
prvtRingEpsManualSwitchPort PrvtRingEpsRplPortType,
prvtRingEpsCfmMdLevel Dot1agCfmMDLevelOrNone,
prvtRingEpsPort0Mep Dot1agCfmMepIdOrZero,
prvtRingEpsPort1Mep Dot1agCfmMepIdOrZero,
prvtRingEpsRevertive TruthValue,
prvtRingEpsNoVirtualChannel TruthValue,
prvtRingEpsHoldOffTimer Unsigned32,
prvtRingEpsWaitToRestoreTimer Unsigned32,
prvtRingEpsGuardTimer Unsigned32,
prvtRingEpsWaitToBlockTimer Unsigned32,
prvtRingEpsDefectFop PrvtRingEpsDefectType,
prvtRingEpsPort0Status PrvtRingEpsPortStatusType,
prvtRingEpsPort1Status PrvtRingEpsPortStatusType,
prvtRingEpsPort0PeerNodeId MacAddress,
prvtRingEpsPort1PeerNodeId MacAddress,
prvtRingEpsPort0PeerCommand PrvtRingEpsRemoteRequestType,
prvtRingEpsPort1PeerCommand PrvtRingEpsRemoteRequestType,
prvtRingEpsPort0PeerStatus PrvtRingEpsPeerStatusType,
prvtRingEpsPort1PeerStatus PrvtRingEpsPeerStatusType,
prvtRingEpsOperationalStatus TruthValue,
prvtRingEpsAdminStatus TruthValue,
prvtRingEpsRowStatus RowStatus,
prvtRingEpsForcedSwitchPort PrvtRingEpsRplPortType,
prvtRingEpsInstanceDescription DisplayString,
prvtRingEpsRingId Unsigned32,
prvtRingEpsPort0MonitoringMethod INTEGER,
prvtRingEpsPort1MonitoringMethod INTEGER
}
prvtRingEpsInstanceIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "RAPS instance index"
::= { prvtRingEpsInstanceEntry 1 }
prvtRingEpsMode OBJECT-TYPE
SYNTAX PrvtRingEpsModeType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Version of the protocol the instance will use"
DEFVAL {rapsMode8032v2}
::= { prvtRingEpsInstanceEntry 2 }
prvtRingEpsNodeRole OBJECT-TYPE
SYNTAX PrvtRingEpsNodeRoleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable identifies the role that the node will play inside the ring.
The node can have two special roles, RPL owner or RPL neighbor, when one
of its ports is designated as RPL. The ring can have a single RPL owner
and a single RPL neighbor, connected between eachother via the RPL.
If neither of the node ports are designated as RPL, then the node should
have the role of a Simple node"
DEFVAL {rapsNrSimpleNode}
::= { prvtRingEpsInstanceEntry 3 }
prvtRingEpsState OBJECT-TYPE
SYNTAX PrvtRingEpsStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable identifies the state of the ring node according to
the standard state machine."
DEFVAL {rapsInit}
::= { prvtRingEpsInstanceEntry 4 }
prvtRingEpsLocalCommand OBJECT-TYPE
SYNTAX PrvtRingEpsLocalCommandType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user can control the ring using a set of commands allowing
blocking and unblocking of ports. These commands are rapsLcManualSwitch,
rapsLcForcedSwitch and rapsLcClear. The others are either read-only values
or not yet defined by the standard."
DEFVAL {rapsLcNoRequest}
::= { prvtRingEpsInstanceEntry 5 }
prvtRingEpsControlVlan OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The vlan ID used for RAPS & CFM traffic."
DEFVAL {0}
::= { prvtRingEpsInstanceEntry 6 }
prvtRingEpsPort0Ifindex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is the interface index of the interface either a
bridge port, or an aggregated IEEE 802.1 link within a bridge
port, attached to the ring as port 0."
DEFVAL {0}
::= { prvtRingEpsInstanceEntry 7 }
prvtRingEpsPort1Ifindex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is the interface index of the interface either a
bridge port, or an aggregated IEEE 802.1 link within a bridge
port, attached to the ring as port 1."
DEFVAL {0}
::= { prvtRingEpsInstanceEntry 8 }
prvtRingEpsRplPort OBJECT-TYPE
SYNTAX PrvtRingEpsRplPortType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object controls whether the one of the ring ports is designated as RPL
for the ring or not."
DEFVAL {none}
::= { prvtRingEpsInstanceEntry 9 }
prvtRingEpsManualSwitchPort OBJECT-TYPE
SYNTAX PrvtRingEpsRplPortType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The port blocked by the Manual Switch command"
DEFVAL {none}
::= { prvtRingEpsInstanceEntry 10 }
prvtRingEpsCfmMdLevel OBJECT-TYPE
SYNTAX Dot1agCfmMDLevelOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Value of the CFM MD level where the protected domain is situated"
DEFVAL {-1}
::= { prvtRingEpsInstanceEntry 11 }
prvtRingEpsPort0Mep OBJECT-TYPE
SYNTAX Dot1agCfmMepIdOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is the peer MEP ID that should send CCMs towards port 0."
DEFVAL {0}
::= { prvtRingEpsInstanceEntry 12 }
prvtRingEpsPort1Mep OBJECT-TYPE
SYNTAX Dot1agCfmMepIdOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is the peer MEP ID that should send CCMs towards port 1."
DEFVAL {0}
::= { prvtRingEpsInstanceEntry 13 }
prvtRingEpsRevertive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the MI_RAPS_Revertive variable defined in the standard.
It controls whether the RPL is blocked again after a failure of
some ring link recovers."
REFERENCE "G.8032v2 clause 9.1"
DEFVAL {true}
::= { prvtRingEpsInstanceEntry 14 }
prvtRingEpsNoVirtualChannel OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Node is part of a subring that doesn't use RAPS virtual channel"
REFERENCE "G.8032v2 10.1.14"
DEFVAL {false}
::= { prvtRingEpsInstanceEntry 15 }
prvtRingEpsHoldOffTimer OBJECT-TYPE
SYNTAX Unsigned32 (0..10000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Range is from 0 to 10 seconds in 100msec intervals"
REFERENCE "G.8032v2 clause 10.1.8"
DEFVAL {0}
::= { prvtRingEpsInstanceEntry 16 }
prvtRingEpsWaitToRestoreTimer OBJECT-TYPE
SYNTAX Unsigned32 (1..12)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Range is from 1 to 12 minutes"
REFERENCE "G.8032v2 clause 10.1.4"
DEFVAL {5}
::= { prvtRingEpsInstanceEntry 17 }
prvtRingEpsGuardTimer OBJECT-TYPE
SYNTAX Unsigned32 (10..2000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Range is from 10msec to 2 seconds in 10msec intervals"
REFERENCE "G.8032v2 clause 10.1.5"
DEFVAL {500}
::= { prvtRingEpsInstanceEntry 18 }
prvtRingEpsWaitToBlockTimer OBJECT-TYPE
SYNTAX Unsigned32 (5010..7000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Range is from 5010msec to 7 seconds in 10msec intervals.
This time is actulally the Guard Timer + 5 seconds"
REFERENCE "G.8032v2 clause 10.1.5"
DEFVAL {5500}
::= { prvtRingEpsInstanceEntry 19 }
prvtRingEpsDefectFop OBJECT-TYPE
SYNTAX PrvtRingEpsDefectType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"So far only the situation when two or more RPL-owners are defined
in the ring is identified as a defect. This scenario is noticed when
the instance with the RPL-Owner role receives a RAPS packet with the
RB bit set in its status field from a different NodeID than its own."
REFERENCE "G.8032v2 clause 10.4"
::= { prvtRingEpsInstanceEntry 20 }
prvtRingEpsPort0Status OBJECT-TYPE
SYNTAX PrvtRingEpsPortStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the state of port 0.
It can be either Ok (unblocked), Blocked or Failed."
DEFVAL {rapsPsFailed}
::= { prvtRingEpsInstanceEntry 21 }
prvtRingEpsPort1Status OBJECT-TYPE
SYNTAX PrvtRingEpsPortStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the state of port 1.
It can be either Ok (unblocked), Blocked or Failed."
DEFVAL {rapsPsFailed}
::= { prvtRingEpsInstanceEntry 22 }
prvtRingEpsPort0PeerNodeId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Node ID from the RAPS packet received
via port 0."
::= { prvtRingEpsInstanceEntry 23 }
prvtRingEpsPort1PeerNodeId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Node ID from the RAPS packet received
via port 1."
::= { prvtRingEpsInstanceEntry 24 }
prvtRingEpsPort0PeerCommand OBJECT-TYPE
SYNTAX PrvtRingEpsRemoteRequestType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Request/State of the RAPS packet received
via port 0."
DEFVAL {rapsRsNone}
::= { prvtRingEpsInstanceEntry 25 }
prvtRingEpsPort1PeerCommand OBJECT-TYPE
SYNTAX PrvtRingEpsRemoteRequestType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Request/State of the RAPS packet received
via port 1."
DEFVAL {rapsRsNone}
::= { prvtRingEpsInstanceEntry 26 }
prvtRingEpsPort0PeerStatus OBJECT-TYPE
SYNTAX PrvtRingEpsPeerStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the status field of the RAPS packet received
via port 0."
::= { prvtRingEpsInstanceEntry 27 }
prvtRingEpsPort1PeerStatus OBJECT-TYPE
SYNTAX PrvtRingEpsPeerStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the status field of the RAPS packet received
via port 1."
::= { prvtRingEpsInstanceEntry 28 }
prvtRingEpsOperationalStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The purpose of this status is to identify to the user whether
this instance is ready for running. The operational status can
be up or down. When creating the instance the operational
status will be down. Receiving CCMs from the expected peer MEPs on
both ring ports will bring the operational status to up. If any
needed CFM configuration is removed the operational status will
go back to down"
DEFVAL {false}
::= { prvtRingEpsInstanceEntry 29 }
prvtRingEpsAdminStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Administrative status of the instance"
DEFVAL {false}
::= { prvtRingEpsInstanceEntry 30 }
prvtRingEpsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the row."
::= { prvtRingEpsInstanceEntry 31 }
prvtRingEpsForcedSwitchPort OBJECT-TYPE
SYNTAX PrvtRingEpsRplPortType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The port blocked by the Forced Switch command"
DEFVAL {none}
::= { prvtRingEpsInstanceEntry 32 }
prvtRingEpsInstanceDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION "RAPS instance description."
::= { prvtRingEpsInstanceEntry 33 }
prvtRingEpsRingId OBJECT-TYPE
SYNTAX Unsigned32 (1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The last octet of the RAPS destination MAC address
is designated as Ring ID (01-19-A7-00-00-[Ring ID]).
As of G.8032v2 the destination MAC address
'01-19-A7-00-00-01' is used. The usage of other
MAC addresses is for further study."
REFERENCE "G.8032v2 Appendix VII"
DEFVAL {1}
::= { prvtRingEpsInstanceEntry 34 }
prvtRingEpsPort0MonitoringMethod OBJECT-TYPE
SYNTAX INTEGER
{
ccm ( 1 ),
link-status( 2 )
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Raps monitoring methods for port 0:
ccm - CCM messages and link status will be used for raps monitoring,
link-status -Link status will be used for raps monitoring"
DEFVAL { 1 }
::= { prvtRingEpsInstanceEntry 35 }
prvtRingEpsPort1MonitoringMethod OBJECT-TYPE
SYNTAX INTEGER
{
ccm ( 1 ),
link-status( 2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Raps monitoring methods for port 1:
ccm - CCM messages and link status will be used for raps monitoring,
link-status - Link status will be used for raps monitoring"
DEFVAL { 1 }
::= { prvtRingEpsInstanceEntry 36 }
prvtRingEpsVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtRingEpsVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes information about protected vlans and the ring
instances that monitor them."
::= { prvtRingEpsVlans 1 }
prvtRingEpsVlanEntry OBJECT-TYPE
SYNTAX PrvtRingEpsVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Connection between vlan IDs and the RAPS instance that monitors them"
INDEX { prvtRingEpsVlanIndex }
::= { prvtRingEpsVlanTable 1 }
PrvtRingEpsVlanEntry ::= SEQUENCE {
prvtRingEpsVlanIndex Unsigned32,
prvtRingEpsInstance Unsigned32,
prvtRingEpsVlanRowStatus RowStatus
}
prvtRingEpsVlanIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The vlan ID."
::= { prvtRingEpsVlanEntry 1 }
prvtRingEpsInstance OBJECT-TYPE
SYNTAX Unsigned32 (0..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "RAPS instance that will monitor this vlan"
DEFVAL { 0 }
::= { prvtRingEpsVlanEntry 2 }
prvtRingEpsVlanRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the row."
::= { prvtRingEpsVlanEntry 3 }
prvtRingEpsSubRingTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtRingEpsSubRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing information about the subring instances
defined on this node."
::= { prvtRingEpsSubRings 1 }
prvtRingEpsSubRingEntry OBJECT-TYPE
SYNTAX PrvtRingEpsSubRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration of a subring that is interconnected to the main ring in an interconnection node"
INDEX { prvtRingEpsInstanceIndex, prvtRingEpsSubRingIndex }
::= { prvtRingEpsSubRingTable 1 }
PrvtRingEpsSubRingEntry ::= SEQUENCE {
prvtRingEpsSubRingIndex Unsigned32,
prvtRingEpsSubRingNodeRole PrvtRingEpsNodeRoleType,
prvtRingEpsSubRingState PrvtRingEpsStateType,
prvtRingEpsSubRingLocalCommand PrvtRingEpsLocalCommandType,
prvtRingEpsSubRingPortIfindex InterfaceIndexOrZero,
prvtRingEpsSubRingPortMep Dot1agCfmMepIdOrZero,
prvtRingEpsSubRingRplPort PrvtRingEpsRplPortType,
prvtRingEpsSubRingVirtualChannelVlan VlanIdOrNone,
prvtRingEpsSubRingRevertive TruthValue,
prvtRingEpsSubRingHoldOffTimer Unsigned32,
prvtRingEpsSubRingWaitToRestoreTimer Unsigned32,
prvtRingEpsSubRingGuardTimer Unsigned32,
prvtRingEpsSubRingWaitToBlockTimer Unsigned32,
prvtRingEpsSubRingDefectFop PrvtRingEpsDefectType,
prvtRingEpsSubRingPortStatus PrvtRingEpsPortStatusType,
prvtRingEpsSubRingPortPeerNodeId MacAddress,
prvtRingEpsSubRingPeerCommand PrvtRingEpsRemoteRequestType,
prvtRingEpsSubRingPeerStatus PrvtRingEpsPeerStatusType,
prvtRingEpsSubRingVcPeerNodeId MacAddress,
prvtRingEpsSubRingVcPeerCommand PrvtRingEpsRemoteRequestType,
prvtRingEpsSubRingVcPeerStatus PrvtRingEpsPeerStatusType,
prvtRingEpsSubRingPropagateTC TruthValue,
prvtRingEpsSubRingOperationalStatus TruthValue,
prvtRingEpsSubRingAdminStatus TruthValue,
prvtRingEpsSubRingRowStatus RowStatus,
prvtRingEpsSubRingControlVlan VlanIdOrNone,
prvtRingEpsSubRingDescription DisplayString,
prvtRingEpsSubRingRingId Unsigned32,
prvtRingEpsSubRingMonitoringMethod INTEGER
}
prvtRingEpsSubRingIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A subring ID"
::= { prvtRingEpsSubRingEntry 1 }
prvtRingEpsSubRingNodeRole OBJECT-TYPE
SYNTAX PrvtRingEpsNodeRoleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable identifies the role that the node will play inside the subring.
The node can have two special roles, RPL owner or RPL neighbor, when the
subring port is designated as RPL. The subring can have a single RPL owner
and a single RPL neighbor, connected between eachother via the RPL.
If the subring port is not designated as RPL, then the node should
have the role of a Simple node"
DEFVAL {rapsNrSimpleNode}
::= { prvtRingEpsSubRingEntry 2 }
prvtRingEpsSubRingState OBJECT-TYPE
SYNTAX PrvtRingEpsStateType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable identifies the state of the subring node according to
the standard state machine."
REFERENCE "G.8032v2 clause 10.1.2"
DEFVAL {rapsInit}
::= { prvtRingEpsSubRingEntry 3 }
prvtRingEpsSubRingLocalCommand OBJECT-TYPE
SYNTAX PrvtRingEpsLocalCommandType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user can control the ring using a set of commands allowing
blocking and unblocking of ports. These commands are rapsLcManualSwitch,
rapsLcForcedSwitch and rapsLcClear. The others are either read-only values
or not yet defined by the standard."
DEFVAL {rapsLcNoRequest}
::= { prvtRingEpsSubRingEntry 4 }
prvtRingEpsSubRingPortIfindex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is the interface index of the interface either a
bridge port, or an aggregated IEEE 802.1 link within a bridge
port, attached to the subring."
DEFVAL {0}
::= { prvtRingEpsSubRingEntry 5 }
prvtRingEpsSubRingPortMep OBJECT-TYPE
SYNTAX Dot1agCfmMepIdOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable is the peer MEP ID that should send CCMs towards the subring port."
DEFVAL {0}
::= { prvtRingEpsSubRingEntry 6 }
prvtRingEpsSubRingRplPort OBJECT-TYPE
SYNTAX PrvtRingEpsRplPortType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object controls whether the subring port is designated as RPL
for the subring or not."
DEFVAL {none}
::= { prvtRingEpsSubRingEntry 7 }
prvtRingEpsSubRingVirtualChannelVlan OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The vlan ID used for Virtual Channel encapsulation"
DEFVAL {0}
::= { prvtRingEpsSubRingEntry 8 }
prvtRingEpsSubRingRevertive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the MI_RAPS_Revertive variable defined in the standard.
It controls whether the RPL is blocked again after a failure of
some subring link recovers."
REFERENCE "G.8032v2 clause 9.1"
DEFVAL {true}
::= { prvtRingEpsSubRingEntry 9 }
prvtRingEpsSubRingHoldOffTimer OBJECT-TYPE
SYNTAX Unsigned32 (0..10000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Range is from 0 to 10 seconds in 100msec intervals"
REFERENCE "G.8032v2 clause 10.1.8"
DEFVAL {0}
::= { prvtRingEpsSubRingEntry 10 }
prvtRingEpsSubRingWaitToRestoreTimer OBJECT-TYPE
SYNTAX Unsigned32 (1..12)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Range is from 1 to 12 minutes"
REFERENCE "G.8032v2 clause 10.1.4"
DEFVAL {5}
::= { prvtRingEpsSubRingEntry 11 }
prvtRingEpsSubRingGuardTimer OBJECT-TYPE
SYNTAX Unsigned32 (10..2000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Range is from 10msec to 2 seconds in 10msec intervals"
REFERENCE "G.8032v2 clause 10.1.5"
DEFVAL {500}
::= { prvtRingEpsSubRingEntry 12 }
prvtRingEpsSubRingWaitToBlockTimer OBJECT-TYPE
SYNTAX Unsigned32 (5010..7000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Range is from 5010msec to 7 seconds in 10msec intervals.
This time is actulally the Guard Timer + 5 seconds"
REFERENCE "G.8032v2 clause 10.1.5"
DEFVAL {5500}
::= { prvtRingEpsSubRingEntry 13 }
prvtRingEpsSubRingDefectFop OBJECT-TYPE
SYNTAX PrvtRingEpsDefectType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"So far only the situation when two or more RPL-owners are defined
in the ring is identified as a defect. This scenario is noticed when
the instance with the RPL-Owner role receives a RAPS packet with the
RB bit set in its status field from a different NodeID than its own."
REFERENCE "G.8032v2 clause 10.4"
::= { prvtRingEpsSubRingEntry 14 }
prvtRingEpsSubRingPortStatus OBJECT-TYPE
SYNTAX PrvtRingEpsPortStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the state of the subring port.
It can be either Ok (unblocked), Blocked or Failed."
DEFVAL {rapsPsFailed}
::= { prvtRingEpsSubRingEntry 15 }
prvtRingEpsSubRingPortPeerNodeId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Node ID from the RAPS packet received
via the subring port."
::= { prvtRingEpsSubRingEntry 16 }
prvtRingEpsSubRingPeerCommand OBJECT-TYPE
SYNTAX PrvtRingEpsRemoteRequestType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Request/State of the RAPS packet received
via the subring port."
DEFVAL {rapsRsNone}
::= { prvtRingEpsSubRingEntry 17 }
prvtRingEpsSubRingPeerStatus OBJECT-TYPE
SYNTAX PrvtRingEpsPeerStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the status field of the RAPS packet received
via the subring port."
::= { prvtRingEpsSubRingEntry 18 }
prvtRingEpsSubRingVcPeerNodeId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Node ID from the RAPS packet received
via the virtual channel."
::= { prvtRingEpsSubRingEntry 19 }
prvtRingEpsSubRingVcPeerCommand OBJECT-TYPE
SYNTAX PrvtRingEpsRemoteRequestType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the Request/State of the RAPS packet received
via the virtual channel."
DEFVAL {rapsRsNone}
::= { prvtRingEpsSubRingEntry 20 }
prvtRingEpsSubRingVcPeerStatus OBJECT-TYPE
SYNTAX PrvtRingEpsPeerStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable reflects the status field of the RAPS packet received
via the virtual channel."
::= { prvtRingEpsSubRingEntry 21 }
prvtRingEpsSubRingPropagateTC OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the MI_RAPS_Propagate_TC variable mentioned in the standard.
If this is enabled a flush in the subring will be followed by a flush in
the main instance."
REFERENCE "G.8032v2 10.1.11"
DEFVAL {false}
::= { prvtRingEpsSubRingEntry 22 }
prvtRingEpsSubRingOperationalStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The purpose of this status is to identify to the user whether
this instance is ready for running. The operational status can
be up or down. When creating the instance the operational
status will be down. Receiving CCMs from the expected peer MEP on
the subring port will bring the operational status to up. If any
needed CFM configuration is removed the operational status will
go back to down"
DEFVAL {false}
::= { prvtRingEpsSubRingEntry 23 }
prvtRingEpsSubRingAdminStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Administrative status of the subring instance"
DEFVAL {false}
::= { prvtRingEpsSubRingEntry 24 }
prvtRingEpsSubRingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the row."
::= { prvtRingEpsSubRingEntry 25 }
prvtRingEpsSubRingControlVlan OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The vlan ID used for RAPS & CFM traffic."
DEFVAL {0}
::= { prvtRingEpsSubRingEntry 26 }
prvtRingEpsSubRingDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION "RAPS instance sub-ring description."
::= { prvtRingEpsSubRingEntry 27 }
prvtRingEpsSubRingRingId OBJECT-TYPE
SYNTAX Unsigned32 (1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The last octet of the RAPS destination MAC address
is designated as Ring ID (01-19-A7-00-00-[Ring ID]).
As of G.8032v2 the destination MAC address
'01-19-A7-00-00-01' is used. The usage of other
MAC addresses is for further study."
REFERENCE "G.8032v2 Appendix VII"
DEFVAL {1}
::= { prvtRingEpsSubRingEntry 28 }
prvtRingEpsSubRingMonitoringMethod OBJECT-TYPE
SYNTAX INTEGER
{
ccm ( 1 ),
link-status( 2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Raps monitoring methods for subring port:
ccm - CCM messags and link status will be used for raps monitoring,
link-status -Link status will be used for raps monitoring"
DEFVAL { 1 }
::= { prvtRingEpsSubRingEntry 29 }
-- ******************************************************************
-- NOTIFICATIONS (TRAPS)
-- ******************************************************************
prvtRingEpsDefectAlarm NOTIFICATION-TYPE
OBJECTS { prvtRingEpsOperationalStatus,
prvtRingEpsDefectFop
}
STATUS current
DESCRIPTION
"This trap will be sent by any instance when it notices a defect.
So far only the situation when two or more RPL-owners are defined
in the ring is identified as a defect. This scenario is noticed when
the instance with the RPL-Owner role receives a RAPS packet with the
RB bit set in its status field from a different NodeID than its own.
The management entity receiving the notification can identify
the system from the network source address of the
notification, and can identify the instance reporting the change
by the indices in the OID of the prvtRingEpsDefectFop
variable in the notification."
::= { prvtRingEpsNotifications 1 }
prvtRingEpsSwitchoverAlarm NOTIFICATION-TYPE
OBJECTS { prvtRingEpsState
}
STATUS current
DESCRIPTION
"This trap will be sent by any instance when it changes state.
The management entity receiving the notification can identify
the system from the network source address of the
notification, and can identify the instance reporting the change
by the indices in the OID of the prvtRingEpsState
variable in the notification."
::= { prvtRingEpsNotifications 2 }
prvtRingEpsSubRingDefectAlarm NOTIFICATION-TYPE
OBJECTS { prvtRingEpsSubRingOperationalStatus,
prvtRingEpsSubRingDefectFop
}
STATUS current
DESCRIPTION
"This trap will be sent by any subring instance when it notices a defect.
So far only the situation when two or more RPL-owners are defined
in the ring is identified as a defect. This scenario is noticed when
the instance with the RPL-Owner role receives a RAPS packet with the
RB bit set in its status field from a different NodeID than its own.
The management entity receiving the notification can identify
the system from the network source address of the
notification, and can identify the instance reporting the change
by the indices in the OID of the prvtRingEpsDefectFop
variable in the notification."
::= { prvtRingEpsNotifications 3 }
prvtRingEpsSubRingSwitchoverAlarm NOTIFICATION-TYPE
OBJECTS { prvtRingEpsSubRingState
}
STATUS current
DESCRIPTION
"This trap will be sent by any subring instance when it changes state.
The management entity receiving the notification can identify
the system from the network source address of the
notification, and can identify the instance reporting the change
by the indices in the OID of the prvtRingEpsSubRingState
variable in the notification."
::= { prvtRingEpsNotifications 4 }
-- ******************************************************************
-- PRVT-RING-EPS MIB Module - Conformance Information
-- ******************************************************************
prvtRingEpsCompliances OBJECT IDENTIFIER ::= { prvtRingEpsConformance 1 }
prvtRingEpsGroups OBJECT IDENTIFIER ::= { prvtRingEpsConformance 2 }
-- ******************************************************************
-- Units of conformance
-- ******************************************************************
prvtRingEpsGroup OBJECT-GROUP
OBJECTS {
prvtRingEpsMode,
prvtRingEpsNodeRole,
prvtRingEpsState,
prvtRingEpsLocalCommand,
prvtRingEpsControlVlan,
prvtRingEpsPort0Ifindex,
prvtRingEpsPort1Ifindex,
prvtRingEpsRplPort,
prvtRingEpsManualSwitchPort,
prvtRingEpsCfmMdLevel,
prvtRingEpsPort0Mep,
prvtRingEpsPort1Mep,
prvtRingEpsRevertive,
prvtRingEpsNoVirtualChannel,
prvtRingEpsHoldOffTimer,
prvtRingEpsWaitToRestoreTimer,
prvtRingEpsGuardTimer,
prvtRingEpsWaitToBlockTimer,
prvtRingEpsDefectFop,
prvtRingEpsPort0Status,
prvtRingEpsPort1Status,
prvtRingEpsPort0PeerNodeId,
prvtRingEpsPort1PeerNodeId,
prvtRingEpsPort0PeerCommand,
prvtRingEpsPort1PeerCommand,
prvtRingEpsPort0PeerStatus,
prvtRingEpsPort1PeerStatus,
prvtRingEpsOperationalStatus,
prvtRingEpsAdminStatus,
prvtRingEpsRowStatus,
prvtRingEpsForcedSwitchPort,
prvtRingEpsInstanceDescription,
prvtRingEpsRingId,
prvtRingEpsPort0MonitoringMethod,
prvtRingEpsPort1MonitoringMethod
}
STATUS current
DESCRIPTION
"Objects for the RAPS instances group."
::= { prvtRingEpsGroups 1 }
prvtRingEpsVlanGroup OBJECT-GROUP
OBJECTS {
prvtRingEpsInstance,
prvtRingEpsVlanRowStatus
}
STATUS current
DESCRIPTION
"Objects for the RAPS monitored vlans group."
::= { prvtRingEpsGroups 2 }
prvtRingEpsSubRingGroup OBJECT-GROUP
OBJECTS {
prvtRingEpsSubRingNodeRole,
prvtRingEpsSubRingState,
prvtRingEpsSubRingLocalCommand,
prvtRingEpsSubRingPortIfindex,
prvtRingEpsSubRingPortMep,
prvtRingEpsSubRingRplPort,
prvtRingEpsSubRingVirtualChannelVlan,
prvtRingEpsSubRingRevertive,
prvtRingEpsSubRingHoldOffTimer,
prvtRingEpsSubRingWaitToRestoreTimer,
prvtRingEpsSubRingGuardTimer,
prvtRingEpsSubRingWaitToBlockTimer,
prvtRingEpsSubRingDefectFop,
prvtRingEpsSubRingPortStatus,
prvtRingEpsSubRingPortPeerNodeId,
prvtRingEpsSubRingPeerCommand,
prvtRingEpsSubRingPeerStatus,
prvtRingEpsSubRingVcPeerNodeId,
prvtRingEpsSubRingVcPeerCommand,
prvtRingEpsSubRingVcPeerStatus,
prvtRingEpsSubRingPropagateTC,
prvtRingEpsSubRingOperationalStatus,
prvtRingEpsSubRingAdminStatus,
prvtRingEpsSubRingRowStatus,
prvtRingEpsSubRingControlVlan,
prvtRingEpsSubRingDescription,
prvtRingEpsSubRingRingId,
prvtRingEpsSubRingMonitoringMethod
}
STATUS current
DESCRIPTION
"Objects for the RAPS subring group."
::= { prvtRingEpsGroups 3 }
prvtRingEpsNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
prvtRingEpsSwitchoverAlarm,
prvtRingEpsDefectAlarm,
prvtRingEpsSubRingSwitchoverAlarm,
prvtRingEpsSubRingDefectAlarm
}
STATUS current
DESCRIPTION
"Objects for the Notifications group."
::= { prvtRingEpsGroups 4 }
-- ******************************************************************
-- MIB Module Compliance statements
-- ******************************************************************
prvtRingEpsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for support of the Ring EPS MIB module."
MODULE
MANDATORY-GROUPS {
prvtRingEpsGroup,
prvtRingEpsVlanGroup,
prvtRingEpsSubRingGroup,
prvtRingEpsNotificationsGroup
}
OBJECT prvtRingEpsRowStatus
SYNTAX RowStatus { active(1), notInService(2) }
WRITE-SYNTAX RowStatus { active(1), notInService(2),
createAndWait(5), destroy(6) }
DESCRIPTION "Support for createAndWait is required."
OBJECT prvtRingEpsVlanRowStatus
SYNTAX RowStatus { active(1), notInService(2) }
WRITE-SYNTAX RowStatus { active(1), notInService(2),
createAndWait(5), destroy(6) }
DESCRIPTION "Support for createAndWait is required."
OBJECT prvtRingEpsSubRingRowStatus
SYNTAX RowStatus { active(1), notInService(2) }
WRITE-SYNTAX RowStatus { active(1), notInService(2),
createAndWait(5), destroy(6) }
DESCRIPTION "Support for createAndWait is required."
::= { prvtRingEpsCompliances 1 }
END
|