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
|
-- *********************************************************************
-- **
-- ** BATM Advanced Communications.
-- **
-- *********************************************************************
-- ** Filename: PRVT-SERV-MIB.mib
-- ** Project: T-Metro 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 and contains
-- proprietary and confidential information. This file is made
-- available to authorized BATM customers on the express
-- condition that neither it, nor any of the information contained
-- therein, shall be disclosed to third parties or be used for any
-- purpose other than to replace, modify or upgrade firmware and/or
-- software components of BATM manufactured equipment within the
-- authorized customer's network, and that such transfer be
-- completed in accordance with the instructions provided by
-- BATM. Any other use is strictly prohibited.
--
-- EXCEPT AS RESTRICTED BY LAW, OR AS PROVIDED IN BATM'S LIMITED
-- WARRANTY, THE SOFTWARE PROGRAMS 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 SOFTWARE CONTAINED IN THIS FILE.
--
-- ----------------------------------------------------------------------------
PRVT-SERV-MIB DEFINITIONS ::= BEGIN
IMPORTS
InterfaceIndex
FROM IF-MIB
serviceAccessSwitch
FROM PRVT-SWITCH-MIB
Integer32, IpAddress, MODULE-IDENTITY, NOTIFICATION-TYPE,
OBJECT-TYPE, Unsigned32
FROM SNMPv2-SMI
MacAddress, RowStatus, TimeStamp, TruthValue
FROM SNMPv2-TC;
prvtServicesMIB MODULE-IDENTITY
LAST-UPDATED "201307150000Z"
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 document is the SNMP MIB module to manage and provision
the various services of the system."
REVISION "201307150000Z"
DESCRIPTION
"Added support for TLS ethertype"
REVISION "201302040000Z"
DESCRIPTION
"Update description for sapEncapValue."
REVISION "201110190000Z"
DESCRIPTION
"Change serviceAdminStatus, sapAdminStatus, sdpAdminStatus
enumeration. Now down (1), up (2)."
REVISION "200901190000Z"
DESCRIPTION
"Sync to internal implementation"
::= { serviceAccessSwitch 2 }
prvtServicesMIBNotifications OBJECT IDENTIFIER
::= { prvtServicesMIB 0 }
prvtServicesMIBObjects OBJECT IDENTIFIER
::= { prvtServicesMIB 1 }
customerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CustomerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains customer information."
::= { prvtServicesMIBObjects 1 }
customerEntry OBJECT-TYPE
SYNTAX CustomerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific customer."
INDEX { customerName }
::= { customerTable 1 }
CustomerEntry ::= SEQUENCE {
customerName OCTET STRING,
customerRowStatus RowStatus,
customerContact OCTET STRING,
customerPhone OCTET STRING
}
customerName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..29))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of this customer."
::= { customerEntry 1 }
customerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this row."
::= { customerEntry 2 }
customerContact OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..29))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the primary contact person for
this customer."
::= { customerEntry 3 }
customerPhone OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..29))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The phone/pager number used to reach the
primary contact person."
::= { customerEntry 4 }
serviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF ServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains basic service information."
::= { prvtServicesMIBObjects 2 }
serviceEntry OBJECT-TYPE
SYNTAX ServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Basic information about a specific service."
INDEX { serviceId }
::= { serviceTable 1 }
ServiceEntry ::= SEQUENCE {
serviceId Unsigned32,
serviceRowStatus RowStatus,
serviceVpnId Unsigned32,
serviceType INTEGER,
serviceDescription OCTET STRING,
serviceMtu Integer32,
serviceAdminStatus INTEGER,
serviceOperStatus INTEGER,
serviceNumSaps Integer32,
serviceNumSdps Integer32,
serviceLastMgmtChange TimeStamp,
serviceEnableSecureSaps TruthValue,
serviceRevertTimer Unsigned32,
servicePwRedundOperModeMesh INTEGER,
servicePwRedundOperModeSpoke INTEGER,
serviceCustName OCTET STRING,
serviceVlanEtherType INTEGER,
serviceBackupVlanEtherType INTEGER,
serviceVlanAction INTEGER
}
serviceId OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967294)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The service ID."
::= { serviceEntry 1 }
serviceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this row. The
values supported during a set operation are
createAndWait(5), destroy(6), active(1), notInSertvice(2).
Service can not be deleted or changed to notInService if there are
SDPs/SAPs belonging to it. "
::= { serviceEntry 2 }
serviceVpnId OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the ID used by Service Provider(SP).
It will have different format according to the type of
service.
This filed is mandatory. If all mandatory fields are
set, the row status object is automatically changed from notReady(3)
to notInService(2) state.
For TLS services must be the same as sdpBindVlanTag."
::= { serviceEntry 3 }
serviceType OBJECT-TYPE
SYNTAX INTEGER { epipe(1), p3pipe(2), tls(3), vprn(4), ies(5),
mirror(6), apipe(7), fpipe(8), vpws(9), vplsPe(10),
vplsMtu(11), dot1q(12) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The service type: e.g. EtherPipe, TLS, etc. Currently only
vpls-pe(11), vpls-mtu(12), vpws-pe(9) and vpws-mtu(10) types
are supported.
This field is mandatory."
::= { serviceEntry 4 }
serviceDescription OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..29))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Generic information about this service."
::= { serviceEntry 5 }
serviceMtu OBJECT-TYPE
SYNTAX Integer32 (512..9216)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Not supported object"
::= { serviceEntry 6 }
serviceAdminStatus OBJECT-TYPE
SYNTAX INTEGER { down(1), up(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Administrative state of the service."
::= { serviceEntry 7 }
serviceOperStatus OBJECT-TYPE
SYNTAX INTEGER { up(1), down(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating state of this service."
::= { serviceEntry 8 }
serviceNumSaps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of SAPs defined on this service."
::= { serviceEntry 9 }
serviceNumSdps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of SDPs bound to this service."
::= { serviceEntry 10 }
serviceLastMgmtChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time of the
most recent management-initiated change to
this service."
::= { serviceEntry 11 }
serviceEnableSecureSaps OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to configure the SAPs to forward only traffic from the uplink ports."
::= { serviceEntry 13 }
serviceRevertTimer OBJECT-TYPE
SYNTAX Unsigned32 (0..7200)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"serviceRevertTimer"
::= { serviceEntry 14 }
servicePwRedundOperModeMesh OBJECT-TYPE
SYNTAX INTEGER { none(0), independent(1), master(2), slave(3) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"servicePwRedundOperModeMesh"
::= { serviceEntry 15 }
servicePwRedundOperModeSpoke OBJECT-TYPE
SYNTAX INTEGER { none(0), independent(1), master(2), slave(3) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"servicePwRedundOperModeSpoke"
::= { serviceEntry 16 }
serviceCustName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..29))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the customer this service belongs to."
::= { serviceEntry 17 }
serviceVlanEtherType OBJECT-TYPE
SYNTAX INTEGER { vlan(33024), dot1ad(34984), qinq(37120) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ethertype for service vlan."
::= { serviceEntry 18 }
serviceBackupVlanEtherType OBJECT-TYPE
SYNTAX INTEGER { vlan(33024), dot1ad(34984), qinq(37120) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ethertype for service backup vlan."
::= { serviceEntry 19 }
serviceVlanAction OBJECT-TYPE
SYNTAX INTEGER { replace(0), add(1) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Vlan action for vlan services"
::= { serviceEntry 20 }
sapTable OBJECT-TYPE
SYNTAX SEQUENCE OF SapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains basic SAP information."
::= { prvtServicesMIBObjects 3 }
sapEntry OBJECT-TYPE
SYNTAX SapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific SAP."
INDEX { serviceId, sapPortId, sapEncapValue }
::= { sapTable 1 }
SapEntry ::= SEQUENCE {
sapPortId Integer32,
sapEncapValue Unsigned32,
sapRowStatus RowStatus,
sapType INTEGER,
sapDescription OCTET STRING,
sapAdminStatus INTEGER,
sapOperStatus INTEGER,
sapLastMgmtChange TimeStamp,
sapOperFlags BITS,
sapCustMultSvcSiteName OCTET STRING,
sapIngressQosPolicyId Unsigned32,
sapEgressQosPolicyId Unsigned32,
sapIngressQosSchedulerPolicy OCTET STRING,
sapEgressQosSchedulerPolicy OCTET STRING,
sapLearnMode INTEGER,
sapLearnEnable TruthValue,
sapUntaggedMode TruthValue,
sapProfileName OCTET STRING,
sapCurrentMacCount Unsigned32,
sapMacLearningProfileState INTEGER,
prvtSapEventPropagationProfile OCTET STRING,
prvtTlsSapEventPropagationProfile OCTET STRING
}
sapPortId OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of the access port where this SAP
is defined."
::= { sapEntry 1 }
sapEncapValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the label used to identify this
SAP on the access port specified by sapPortId. Value 4095
is used for unqualified SAP, value 4096 is used for untagged
SAP."
::= { sapEntry 2 }
sapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this row.
Saps can be deleted any time."
::= { sapEntry 3 }
sapType OBJECT-TYPE
SYNTAX INTEGER { epipe(1), p3pipe(2), tls(3), vprn(4), ies(5),
mirror(6), apipe(7), fpipe(8), vpws(9), vplsPe(10),
vplsMtu(11), dot1q(12) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of service where
this SAP is defined."
::= { sapEntry 4 }
sapDescription OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..29))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Generic information about this SAP."
::= { sapEntry 5 }
sapAdminStatus OBJECT-TYPE
SYNTAX INTEGER { down(1), up(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Administrative state of the sap"
::= { sapEntry 6 }
sapOperStatus OBJECT-TYPE
SYNTAX INTEGER { up(1), down(2), ingressQosMismatch(3),
egressQosMismatch(4), svcAdminDown(5),
portMtuTooSmall(6) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating state of this SAP, showing also the reason for the
current operation state
Values ingressQosMismatch(3),egressQosMismatch(4),svcAdminDown(5)
and portMtuTooSmall(6) are not supported"
::= { sapEntry 7 }
sapLastMgmtChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time of the
most recent management-initiated change to
this SAP."
::= { sapEntry 8 }
sapOperFlags OBJECT-TYPE
SYNTAX BITS { sapAdminDown(0), svcAdminDown(1), portOperDown(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies all the conditions that
affect the operating status of this SAP."
::= { sapEntry 9 }
sapCustMultSvcSiteName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..9))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of this object, when not null, indicates
the Multi-Service Site this SAP is a member of. This
information is used to configure the ingress and
egress QoS schedulers for this SAP."
::= { sapEntry 11 }
sapIngressQosPolicyId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row index in the tSapIngressTable
corresponding to this ingress QoS
policy, or zero if no policy is specified."
::= { sapEntry 12 }
sapEgressQosPolicyId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row index in the tSapEgressTable
corresponding to this egress QoS policy,
or zero if no policy is specified."
::= { sapEntry 13 }
sapIngressQosSchedulerPolicy OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object can be set only when sapCustMultSvcSite
is null. It indicates the ingress QoS scheduler for
this SAP."
::= { sapEntry 14 }
sapEgressQosSchedulerPolicy OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object can be set only when sapCustMultSvcSite
is null. It indicates the egress QoS scheduler for
this SAP."
::= { sapEntry 15 }
sapLearnMode OBJECT-TYPE
SYNTAX INTEGER { qualified(1), unqualified(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Sap learning mode. Currently supported as read-only."
::= { sapEntry 16 }
sapLearnEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Sap learning enable."
::= { sapEntry 17 }
sapUntaggedMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Sap untagged mode."
::= { sapEntry 18 }
sapProfileName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..30))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mac Learning profile name to apply."
::= { sapEntry 19 }
sapCurrentMacCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current count of MAC Addresses
learnt on sapProfileName profile."
::= { sapEntry 20 }
sapMacLearningProfileState OBJECT-TYPE
SYNTAX INTEGER { noViolation(1), watermarkReached(2),
maxMacCountReached(3), errorState(4) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the secured entry."
::= { sapEntry 21 }
prvtSapEventPropagationProfile OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Event propagation profile name, applied on this service SAP."
::= { sapEntry 22 }
prvtTlsSapEventPropagationProfile OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Event propagation profile name, applied on this service TLS SAP."
::= { sapEntry 23 }
sdpNextFreeId OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The next available value for sdpId."
::= { prvtServicesMIBObjects 4 }
sdpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains SDP information.
Available sdpId can be obtained from sdpNextFreeId."
::= { prvtServicesMIBObjects 5 }
sdpEntry OBJECT-TYPE
SYNTAX SdpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific SDP."
INDEX { serviceId, sdpId }
::= { sdpTable 1 }
SdpEntry ::= SEQUENCE {
sdpId Unsigned32,
sdpRowStatus RowStatus,
sdpDelivery INTEGER,
sdpFarEndIpAddress IpAddress,
sdpDescription OCTET STRING,
sdpLabelSignaling INTEGER,
sdpAdminStatus INTEGER,
sdpOperStatus INTEGER,
sdpLastMgmtChange TimeStamp,
sdpLdpEnabled TruthValue,
sdpOperFlags BITS,
sdpAdminIngressLabel Unsigned32,
sdpAdminEgressLabel Unsigned32,
sdpOutInterface InterfaceIndex,
sdpGroupIdentifier Unsigned32,
sdpTransportTunnelName OCTET STRING,
sdpVCType INTEGER,
sdpType INTEGER,
sdpMtu Integer32,
sdpBindVlanTag Unsigned32,
sdpLearnEnable TruthValue,
sdpSecuredEnable TruthValue,
sdpSignalPwStatus TruthValue,
sdpPwRedundancyEnable TruthValue,
sdpPwPrecedence Integer32,
sdpPwActivate TruthValue,
sdpDynamicVcIngressLabel Unsigned32,
sdpDynamicVcEgressLabel Unsigned32
}
sdpId OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SDP identifier."
::= { sdpEntry 1 }
sdpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this row.
The values supported during a set operation are
createAndWait(5), destroy(6), active(1), notInSertvice(2)."
::= { sdpEntry 2 }
sdpDelivery OBJECT-TYPE
SYNTAX INTEGER { gre(1), mpls(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the type of delivery used
by this SDP.
NOTE! Currently we support only mpls. The modification
of this obect will be rejected. "
::= { sdpEntry 3 }
sdpFarEndIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the IP address of the
remote end of the GRE or MPLS tunnel defined
by this SDP.
This field is mandatory. If all mandatory fields are set, the
row status object is automatically changed from notReady(3)
to notInService(2) state."
::= { sdpEntry 4 }
sdpDescription OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..29))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Generic information about this SDP."
::= { sdpEntry 5 }
sdpLabelSignaling OBJECT-TYPE
SYNTAX INTEGER { none(1), tldp(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the signaling protocol
used to obtain the ingress and egress labels
used in frames transmitted and received on
this SDP. When the value of this object is
none(1) then the labels are manually assigned
at the time the SDP is configured. The
value of this object can only be changed while
the admin status of the SDP is down(2).
This field is mandatory. If all mandatory fields are set, the
row status object is automatically changed from notReady(3)
to notInService(2) state"
::= { sdpEntry 6 }
sdpAdminStatus OBJECT-TYPE
SYNTAX INTEGER { down(1), up(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Administrative state of the sdp."
::= { sdpEntry 7 }
sdpOperStatus OBJECT-TYPE
SYNTAX INTEGER { up(1), down(2), goingUp(3), tunnelDown(4),
transportSelected(5), supressed(6) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating state of this SDP.
1. Sdp is up and running.
2. Initial state. Entry is inactive.
3. Peers are ready to select transport.
4. There is no suitable transport.
5. SDP is not operational due to local/remote SAP down or remote SDP has no transport.
6. Sdp is up and ready to carry user traffic but it is not used at the moment (backup)."
::= { sdpEntry 8 }
sdpLastMgmtChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time of the
most recent management-initiated change to
this SDP."
::= { sdpEntry 9 }
sdpLdpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the value of this object is true(1)
the transport LSP's are signalled by LDP,
as opposed to being provisioned static or
RSVP-signalled LSP's. This object applies
only to MPLS SDP's."
::= { sdpEntry 10 }
sdpOperFlags OBJECT-TYPE
SYNTAX BITS { sdpAdminDown(0), signalingSessionDown(1),
transportTunnelDown(2), invalidEgressInterface(3),
noSystemIpAddress(4) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies all the conditions that
affect the operating status of this SDP."
::= { sdpEntry 11 }
sdpAdminIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The static MPLS VC label used by the far-end device
to send packets to this device in this service via
this SDP."
::= { sdpEntry 13 }
sdpAdminEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The static MPLS VC label used by this device to send
packets to the far-end device in this service via
this SDP."
::= { sdpEntry 14 }
sdpOutInterface OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is valid only if the type of service is tls(3).
The ifIndex of the desired outbound interface for this SDP.
This field is currently not supported. Its modification
will be rejected.
The default value is 0"
::= { sdpEntry 15 }
sdpGroupIdentifier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is valid only if the type of service is tls(3).
The Group ID for this SDP. SDP's bound to the same service must have the same Group ID's."
::= { sdpEntry 16 }
sdpTransportTunnelName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Optional transport tunnel name. For the SDP to be operational an entry must exist in
mplsTunnelTable with this name."
::= { sdpEntry 17 }
sdpVCType OBJECT-TYPE
SYNTAX INTEGER { ethernetVlan(4), ethernet(5) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"VC Type of the service."
::= { sdpEntry 18 }
sdpType OBJECT-TYPE
SYNTAX INTEGER { invalidType(0), generic(1), spoke(2), mesh(3),
hub(4) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of this SDP.
Currently the only supported sdp types are spoke(2) and mesh(3)
This field is mandatory. If serviceType is set to vpls-mtu(12) or vpws-mtu(10),
trying to set sdpType to mesh(3) will be rejected(Wring configuration).
If all mandatory fields are set, the row status object is automatically
changed from notReady(3) to notInService(2) state."
::= { sdpEntry 19 }
sdpMtu OBJECT-TYPE
SYNTAX Integer32 (512..9190)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The largest frame size (in octets) that this
SDP can handle"
::= { sdpEntry 20 }
sdpBindVlanTag OBJECT-TYPE
SYNTAX Unsigned32 (1..4092)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Outgoing vlan. For TLS services must be the same as serviceVpnId"
::= { sdpEntry 21 }
sdpLearnEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Sdp learn."
::= { sdpEntry 22 }
sdpSecuredEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Secured setting to manage split-horizon rules for the SDP."
::= { sdpEntry 23 }
sdpSignalPwStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Sdp signal pw status."
::= { sdpEntry 24 }
sdpPwRedundancyEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"sdpPwRedundancyEnable"
::= { sdpEntry 25 }
sdpPwPrecedence OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Value of this object determines the role of
this sdp entry. The entry with highest sdpPwPrecedence acts as
primary, all other sdps are backup."
::= { sdpEntry 26 }
sdpPwActivate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"sdpPwActivate"
::= { sdpEntry 27 }
sdpDynamicVcIngressLabel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sdp dynamic vc ingress label."
::= { sdpEntry 28 }
sdpDynamicVcEgressLabel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sdp dynamic vc egress label."
::= { sdpEntry 29 }
serviceMacAddressSapTable OBJECT-TYPE
SYNTAX SEQUENCE OF ServiceMacAddressSapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains FDB entries per service and sap."
::= { prvtServicesMIBObjects 7 }
serviceMacAddressSapEntry OBJECT-TYPE
SYNTAX ServiceMacAddressSapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information FDB entries per service and sap."
INDEX { serviceMacAddressSapServiceId,
serviceMacAddressSapMacAddress,
serviceMacAddressSapPortId,
serviceMacAddressSapEncapValue }
::= { serviceMacAddressSapTable 1 }
ServiceMacAddressSapEntry ::= SEQUENCE {
serviceMacAddressSapServiceId Unsigned32,
serviceMacAddressSapMacAddress MacAddress,
serviceMacAddressSapPortId Integer32,
serviceMacAddressSapEncapValue Unsigned32,
serviceMacAddressSapRowStatus RowStatus,
serviceMacAddressSapPriority Integer32
}
serviceMacAddressSapServiceId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Service."
::= { serviceMacAddressSapEntry 1 }
serviceMacAddressSapMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static MacAddress."
::= { serviceMacAddressSapEntry 2 }
serviceMacAddressSapPortId OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static MacAddress port id."
::= { serviceMacAddressSapEntry 3 }
serviceMacAddressSapEncapValue OBJECT-TYPE
SYNTAX Unsigned32 (1..4095)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static MacAddress encap value."
::= { serviceMacAddressSapEntry 4 }
serviceMacAddressSapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Static MacAddress row status."
::= { serviceMacAddressSapEntry 5 }
serviceMacAddressSapPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Static MacAddress priority."
::= { serviceMacAddressSapEntry 6 }
serviceMacAddressSdpTable OBJECT-TYPE
SYNTAX SEQUENCE OF ServiceMacAddressSdpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains FDB entries per service and sdp."
::= { prvtServicesMIBObjects 8 }
serviceMacAddressSdpEntry OBJECT-TYPE
SYNTAX ServiceMacAddressSdpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information FDB entries per service and sdp."
INDEX { serviceMacAddressSdpServiceId,
serviceMacAddressSdpMacAddress, serviceMacAddressSdpId }
::= { serviceMacAddressSdpTable 1 }
ServiceMacAddressSdpEntry ::= SEQUENCE {
serviceMacAddressSdpServiceId Unsigned32,
serviceMacAddressSdpMacAddress MacAddress,
serviceMacAddressSdpId Unsigned32,
serviceMacAddressSdpRowStatus RowStatus,
serviceMacAddressSdpPriority Integer32
}
serviceMacAddressSdpServiceId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Service Id."
::= { serviceMacAddressSdpEntry 1 }
serviceMacAddressSdpMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static MacAddress."
::= { serviceMacAddressSdpEntry 2 }
serviceMacAddressSdpId OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static MacAddress sdp id."
::= { serviceMacAddressSdpEntry 3 }
serviceMacAddressSdpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Static MacAddress row status."
::= { serviceMacAddressSdpEntry 4 }
serviceMacAddressSdpPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Static MacAddress priority."
::= { serviceMacAddressSdpEntry 5 }
customerCreated NOTIFICATION-TYPE
OBJECTS { customerName }
STATUS current
DESCRIPTION
"This trap is sent when a new row is created
in the customerTable."
::= { prvtServicesMIBNotifications 1 }
customerDeleted NOTIFICATION-TYPE
OBJECTS { customerName }
STATUS current
DESCRIPTION
"This trap is sent when an existing row is
deleted from the customerTable."
::= { prvtServicesMIBNotifications 2 }
serviceCreated NOTIFICATION-TYPE
OBJECTS { serviceId }
STATUS current
DESCRIPTION
"This trap is sent when a new row is created
in the serviceTable."
::= { prvtServicesMIBNotifications 3 }
serviceDeleted NOTIFICATION-TYPE
OBJECTS { serviceId }
STATUS current
DESCRIPTION
"This trap is sent when an existing row is
deleted from the serviceTable."
::= { prvtServicesMIBNotifications 4 }
sapCreated NOTIFICATION-TYPE
OBJECTS { serviceId, sapPortId, sapEncapValue }
STATUS current
DESCRIPTION
"This trap is sent when a new row is created
in the sapTable."
::= { prvtServicesMIBNotifications 5 }
sapDeleted NOTIFICATION-TYPE
OBJECTS { serviceId, sapPortId, sapEncapValue }
STATUS current
DESCRIPTION
"This trap is sent when an existing row is
deleted from the sapTable."
::= { prvtServicesMIBNotifications 6 }
sdpCreated NOTIFICATION-TYPE
OBJECTS { serviceId, sdpId }
STATUS current
DESCRIPTION
"This trap is sent when a new row is created
in the sdpTable."
::= { prvtServicesMIBNotifications 7 }
sdpDeleted NOTIFICATION-TYPE
OBJECTS { serviceId, sdpId }
STATUS current
DESCRIPTION
"This trap is sent when an existing row is
deleted from the sdpTable."
::= { prvtServicesMIBNotifications 8 }
END -- end of module PRVT-SERV-MIB.
|