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
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
|
-- *********************************************************************
-- *********************************************************************
-- ** Filename: PRVT-SERV-MIB.mib
-- ** Project: T - Ethernet and Fast Ethernet IP Switches.
-- ** Purpose: Private MIB
-- *********************************************************************
-- (c) Copyright, 2001, 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-SERV-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Integer32,
Unsigned32,
IpAddress,
Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
DisplayString,
RowStatus,
TimeStamp,
TruthValue
FROM SNMPv2-TC
TNamedItemOrEmpty,
TNetworkPolicyIdOrNone,
TSapIngressPolicyIdOrNone,
TSapEgressPolicyIdOrNone,
TNamedItem,
serviceAccessSwitch
FROM PRVT-QOS-MIB;
prvtServicesMIB MODULE-IDENTITY
LAST-UPDATED "200908070000Z"
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 T-Metro system."
--
-- Revision History
--
REVISION "200908070000Z"
DESCRIPTION "Added prefix prvt to Services' traps."
REVISION "200903260000Z"
DESCRIPTION "Added object for Revert timer"
REVISION "200903240000Z"
DESCRIPTION "Changed svcVPLSUplinkTable. Corrected various descriptions. Corrected types for some HQOS objects."
REVISION "200902170000Z"
DESCRIPTION "Removed references to undefined OBJECT-GROUPs."
REVISION "200810090000Z"
DESCRIPTION "Fixed the range of sdpGroupIdentifier."
REVISION "200804100000Z"
DESCRIPTION "changed svcVplsMode values. Added sapLearnMode."
REVISION "200803060000Z"
DESCRIPTION "changed description of svcAdminStatus."
REVISION "200801110000Z"
DESCRIPTION "changed sdpOperStatus values."
REVISION "200801090000Z"
DESCRIPTION "added sdpBindVlanTag."
REVISION "200801070000Z"
DESCRIPTION "Fixed the range of sdpGroupIdentifier."
REVISION "200706280000Z"
DESCRIPTION "Returned for backward compatibility svcMtu; Clarified few attributes descripton."
REVISION "200609020000Z"
DESCRIPTION "Lots of changes:
1. Index for the service table is changed.
2. Few objects from the service tables are moved in sdp
3. svcVCId is have now more generic usage. so it's name is changed to svcVPNId
4. The descriptions for some objects are enhanced"
REVISION "200607020000Z"
DESCRIPTION "Fixed the range of sdpGroupIdentifier."
REVISION "200602040000Z"
DESCRIPTION "Fixed the range of the svcMtu object and changed the description of svcRowStatus."
REVISION "200511090000Z"
DESCRIPTION "Initial version."
::= { serviceAccessSwitch 2 }
-- --------------------------------------------------------------------
-- PRVT-SERV-MIB organisation
-- --------------------------------------------------------------------
prvtTMServObjs OBJECT IDENTIFIER ::= { prvtServicesMIB 1}
prvtTMCustObjs OBJECT IDENTIFIER ::= { prvtTMServObjs 1 }
prvtTMSvcObjs OBJECT IDENTIFIER ::= { prvtTMServObjs 2 }
prvtTMSapObjs OBJECT IDENTIFIER ::= { prvtTMServObjs 3 }
prvtTMSdpObjs OBJECT IDENTIFIER ::= { prvtTMServObjs 4 }
prvtTMServVPLSGlobals OBJECT IDENTIFIER ::= { prvtTMSvcObjs 3 }
prvtServNotifications OBJECT IDENTIFIER ::= { prvtServicesMIB 2 }
prvtCustNotif OBJECT IDENTIFIER ::= { prvtServNotifications 1 }
prvtSvcNotif OBJECT IDENTIFIER ::= { prvtServNotifications 2 }
prvtSapNotif OBJECT IDENTIFIER ::= { prvtServNotifications 3 }
prvtSdpNotif OBJECT IDENTIFIER ::= { prvtServNotifications 4 }
prvtCustTraps OBJECT IDENTIFIER ::= { prvtCustNotif 0 }
prvtSvcTraps OBJECT IDENTIFIER ::= { prvtSvcNotif 0 }
prvtSapTraps OBJECT IDENTIFIER ::= { prvtSapNotif 0 }
prvtSdpTraps OBJECT IDENTIFIER ::= { prvtSdpNotif 0 }
prvtTMServConformance OBJECT IDENTIFIER ::= { prvtServicesMIB 3 }
prvtTMCustConformance OBJECT IDENTIFIER ::= { prvtTMServConformance 1 }
prvtTMSvcConformance OBJECT IDENTIFIER ::= { prvtTMServConformance 2 }
prvtTMSapConformance OBJECT IDENTIFIER ::= { prvtTMServConformance 3 }
prvtTMSdpConformance OBJECT IDENTIFIER ::= { prvtTMServConformance 4 }
prvtTMTstpConformance OBJECT IDENTIFIER ::= { prvtTMServConformance 5 }
-- --------------------------------------------------------------------
-- BETM-SERV-MIB Textual Conventions
-- --------------------------------------------------------------------
ServiceAdminStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "ServiceAdminStatus data type is an enumerated integer that
describes the values used to identify the administrative
state of a service."
REFERENCE "Administrative Status"
SYNTAX INTEGER {
up(1),
down(2)
}
ServiceOperStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "ServiceOperStatus data type is an enumerated integer that
describes the values used to identify the current operational
state of a service."
REFERENCE "Operational status"
SYNTAX INTEGER {
up(1),
down(2)
}
ServObjName ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "ASCII string used to name various service
objects."
SYNTAX OCTET STRING (SIZE (0..32))
ServObjDesc ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "ASCII string used to describe various service
objects."
SYNTAX OCTET STRING (SIZE (0..256))
ServType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "This textual convention is used to specify the
type of a given service."
SYNTAX INTEGER {
epipe(1), -- Ethernet pipe
p3pipe(2), -- POS pipe
tls(3), -- Virtual private LAN service
vprn(4), -- Virtual private routed network
ies(5), -- Internet enhanced service
mirror(6), -- Mirror service
apipe(7), -- ATM pipe service
fpipe(8), -- FR pipe service
vpws(9), -- VPWS service
vpls-pe(10), -- VPLS service Provider Edge
vpls-mtu(11) -- VPLS service Multitenant Unit
}
VpnId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "A number used to identify a VPN. In general
each service corresponds to a single VPN, but
under some circumstances a VPN may be composed
of multiple services."
SYNTAX Unsigned32 (0|1..4294967295)
SdpIdType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "A 16-bit number used to identify a Service
Distribution Point. This ID must be unique only
within the ESR where it is defined. The value 0
is used as the null ID."
SYNTAX Unsigned32 (0|1..17407)
TMEncapVal ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A valid Vlan ID in the range 1-4093, or 65535."
SYNTAX Unsigned32
TSapEgrQueueId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The value used to uniquely identify a SAP egress queue.
The actual valid values are those defined in the given
SAP egress QoS policy."
SYNTAX Unsigned32 (1..8)
TSapIngQueueId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The value used to uniquely identify a SAP ingress queue.
The actual valid values are those defined in the given
SAP ingress QoS policy."
SYNTAX Unsigned32 (1..32)
-- --------------------------------------------------------------------
-- Objects in the PRVT-SERV-MIB
-- --------------------------------------------------------------------
custNumEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of customer records configured
in this device."
::= { prvtTMCustObjs 1 }
--
-- Customer Table
--
custInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF CustInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains customer information."
::= { prvtTMCustObjs 2 }
custInfoEntry OBJECT-TYPE
SYNTAX CustInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific customer."
INDEX { custName }
::= { custInfoTable 1 }
CustInfoEntry ::= SEQUENCE {
custName ServObjName,
custRowStatus RowStatus,
custContact ServObjDesc,
custPhone ServObjDesc,
custLastMgmtChange TimeStamp
}
custName OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The name of this customer."
DEFVAL { "" }
::= { custInfoEntry 1 }
custRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this row."
::= { custInfoEntry 2 }
custContact OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The name of the primary contact person for
this customer."
DEFVAL { "" }
::= { custInfoEntry 3 }
custPhone OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The phone/pager number used to reach the
primary contact person."
DEFVAL { "" }
::= { custInfoEntry 4 }
custLastMgmtChange 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 customer."
::= { custInfoEntry 5 }
custMultiServiceSiteTable OBJECT-TYPE
SYNTAX SEQUENCE OF CustMultiServiceSiteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Customer-multi-service-site-table."
::= { prvtTMCustObjs 3 }
custMultiServiceSiteEntry OBJECT-TYPE
SYNTAX CustMultiServiceSiteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific customer's
multi-service site."
INDEX { custMultSvcSiteName }
::= { custMultiServiceSiteTable 1 }
CustMultiServiceSiteEntry ::= SEQUENCE {
custMultSvcSiteName DisplayString,
custMultSvcSiteRowStatus RowStatus,
custMultSvcSiteDescription ServObjDesc,
custMultSvcSiteIngressSchedulerPolicy ServObjName,
custMultSvcSiteEgressSchedulerPolicy ServObjName,
custMultSvcSiteLastMgmtChange TimeStamp
}
custMultSvcSiteName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..9))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Customer-multi-service-site-name."
::= { custMultiServiceSiteEntry 1 }
custMultSvcSiteRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Customer-multi-service-site rowStatus."
::= { custMultiServiceSiteEntry 2 }
custMultSvcSiteDescription OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Generic information about this customer's
Multi-Service Site."
DEFVAL { ''H }
::= { custMultiServiceSiteEntry 3 }
custMultSvcSiteIngressSchedulerPolicy OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The ingress QoS scheduler policy assigned
to this Multi-Service Site."
DEFVAL { ''H }
::= { custMultiServiceSiteEntry 4 }
custMultSvcSiteEgressSchedulerPolicy OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The egress QoS scheduler policy assigned
to this Multi-Service Site."
DEFVAL { ''H }
::= { custMultiServiceSiteEntry 5 }
custMultSvcSiteLastMgmtChange 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 multi-service site."
::= { custMultiServiceSiteEntry 6 }
--
-- Customer Multi-Service Site Ingress Statistics Table
--
custMultiSvcSiteIngQosSchedStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CustMultiSvcSiteIngQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains ingress QoS scheduler
statistics for the customer multi service site."
::= { prvtTMCustObjs 4 }
custMultiSvcSiteIngQosSchedStatsEntry OBJECT-TYPE
SYNTAX CustMultiSvcSiteIngQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Ingress statistics about a specific customer
multi service site ingress scheduler."
INDEX {custMultSvcSiteName, IMPLIED custIngQosSchedName }
::= { custMultiSvcSiteIngQosSchedStatsTable 1 }
CustMultiSvcSiteIngQosSchedStatsEntry ::= SEQUENCE {
custIngQosSchedName TNamedItem,
custIngQosSchedStatsForwardedPackets Counter32,
custIngQosSchedStatsForwardedOctets Counter32
}
custIngQosSchedName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the ingress QoS scheduler of
this customer multi service site."
::= { custMultiSvcSiteIngQosSchedStatsEntry 1 }
custIngQosSchedStatsForwardedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded packets, as
determined by the customer multi service
site ingress scheduler policy."
::= { custMultiSvcSiteIngQosSchedStatsEntry 2 }
custIngQosSchedStatsForwardedOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded octets, as
determined by the customer multi service
site ingress scheduler policy."
::= { custMultiSvcSiteIngQosSchedStatsEntry 3 }
--
-- Customer Multi-Service Site Egress Statistics Table
--
custMultiSvcSiteEgrQosSchedStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CustMultiSvcSiteEgrQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains egress QoS scheduler
statistics for the customer multi service site."
::= { prvtTMCustObjs 5 }
custMultiSvcSiteEgrQosSchedStatsEntry OBJECT-TYPE
SYNTAX CustMultiSvcSiteEgrQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Egress statistics about a specific customer
multi service site egress scheduler."
INDEX { custMultSvcSiteName, IMPLIED custEgrQosSchedName }
::= { custMultiSvcSiteEgrQosSchedStatsTable 1 }
CustMultiSvcSiteEgrQosSchedStatsEntry ::= SEQUENCE {
custEgrQosSchedName TNamedItem,
custEgrQosSchedStatsForwardedPackets Counter32,
custEgrQosSchedStatsForwardedOctets Counter32
}
custEgrQosSchedName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the egress QoS scheduler of
this customer multi service site."
::= { custMultiSvcSiteEgrQosSchedStatsEntry 1 }
custEgrQosSchedStatsForwardedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded packets, as
determined by the customer multi service
site egress scheduler policy."
::= { custMultiSvcSiteEgrQosSchedStatsEntry 2 }
custEgrQosSchedStatsForwardedOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded octets, as
determined by the customer multi service
site egress scheduler policy."
::= { custMultiSvcSiteEgrQosSchedStatsEntry 3 }
--
-- Customer Multi-Service Site Ingress Statistics Table
-- with specific portId
--
custIngQosPortIdSchedStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CustIngQosPortIdSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The custIngQosPortIdSchedStatsTable contains ingress QoS scheduler
statistics for the customer multi service site."
::= { prvtTMCustObjs 6 }
custIngQosPortIdSchedStatsEntry OBJECT-TYPE
SYNTAX CustIngQosPortIdSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents the ingress statistics about a specific customer
multi service site ingress scheduler. Entries are created when
a scheduler policy is applied to an MSS."
INDEX { custMultSvcSiteName,
custIngQosPortIdSchedName, custIngQosAssignmentPortId }
::= { custIngQosPortIdSchedStatsTable 1 }
CustIngQosPortIdSchedStatsEntry ::= SEQUENCE {
custIngQosPortIdSchedName TNamedItem,
custIngQosAssignmentPortId Integer32,
custIngQosPortSchedFwdPkts Counter32,
custIngQosPortSchedFwdOctets Counter32
}
custIngQosPortIdSchedName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of custIngQosPortIdSchedName is used as an index
of the ingress QoS scheduler of this customer multi service site."
::= { custIngQosPortIdSchedStatsEntry 1 }
custIngQosAssignmentPortId OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of custIngQosAssignmentPortId is used as an index
of the ingress QoS scheduler of this customer multi service site.
When an MSS assignment is an aps/ccag/lag in 'link' mode, each
member-port of the aps/ccag/lag has its own scheduler. This object
refers to the portId of these member-ports."
::= {custIngQosPortIdSchedStatsEntry 2}
custIngQosPortSchedFwdPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of custIngQosPortSchedStatsFwdPkts represents the
number of forwarded packets, as determined by the customer multi service
site ingress scheduler policy."
::= { custIngQosPortIdSchedStatsEntry 3 }
custIngQosPortSchedFwdOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of custIngQosPortSchedStatsFwdOctets represents the
number of forwarded octets, as determined by the customer multi service
site ingress scheduler policy."
::= { custIngQosPortIdSchedStatsEntry 4 }
--
-- Customer Multi-Service Site Egress Statistics Table
-- with specific portId
--
custEgrQosPortIdSchedStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CustEgrQosPortIdSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The custEgrQosPortIdSchedStatsTable contains egress QoS scheduler
statistics for the customer multi service site."
::= { prvtTMCustObjs 7 }
custEgrQosPortIdSchedStatsEntry OBJECT-TYPE
SYNTAX CustEgrQosPortIdSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents the egress statistics for a customer
multi-service-site egress scheduler. Entries are created when
a scheduler policy is applied to an MSS."
INDEX { custMultSvcSiteName,
custEgrQosPortIdSchedName, custEgrQosAssignmentPortId }
::= { custEgrQosPortIdSchedStatsTable 1 }
CustEgrQosPortIdSchedStatsEntry ::= SEQUENCE {
custEgrQosPortIdSchedName TNamedItem,
custEgrQosAssignmentPortId Integer32,
custEgrQosPortSchedFwdPkts Counter32,
custEgrQosPortSchedFwdOctets Counter32
}
custEgrQosPortIdSchedName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of custEgrQosPortIdSchedName is used as an index
of the egress QoS scheduler of this customer multi service site."
::= { custEgrQosPortIdSchedStatsEntry 1}
custEgrQosAssignmentPortId OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of custEgrQosAssignmentPortId is used as an index
of the egress QoS scheduler of this customer multi service site.
When an MSS assignment is an aps/ccag/lag in 'link' mode, each
member-port of the aps/ccag/lag has its own scheduler. This object
refers to the portId of these member-ports."
::= { custEgrQosPortIdSchedStatsEntry 2}
custEgrQosPortSchedFwdPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of custEgrQosPortSchedStatsFwdPkts represents the
number of forwarded packets, as determined by the customer multi service
site egress scheduler policy."
::= { custEgrQosPortIdSchedStatsEntry 3 }
custEgrQosPortSchedFwdOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of custEgrQosPortSchedStatsFwdOctets represents the
number of forwarded octets, as determined by the customer multi service
site egress scheduler policy."
::= { custEgrQosPortIdSchedStatsEntry 4 }
--
-- Customer traps
--
prvtCustCreated NOTIFICATION-TYPE
OBJECTS {
custName
}
STATUS current
DESCRIPTION "This trap is sent when a new row is created
in the custInfoTable."
::= { prvtCustTraps 1 }
prvtCustDeleted NOTIFICATION-TYPE
OBJECTS {
custName
}
STATUS current
DESCRIPTION "This trap is sent when an existing row is
deleted from the custInfoTable."
::= { prvtCustTraps 2 }
-- --------------------------------------------------------------------
-- prvtTMSvcObjs group
-- --------------------------------------------------------------------
svcNumEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of services configured on
this node."
::= { prvtTMSvcObjs 1 }
--
-- Base Service Table
--
svcBaseInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvcBaseInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains basic service information."
::= { prvtTMSvcObjs 2 }
svcBaseInfoEntry OBJECT-TYPE
SYNTAX SvcBaseInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Basic information about a specific service."
INDEX { svcId }
::= { svcBaseInfoTable 1 }
SvcBaseInfoEntry ::= SEQUENCE {
svcId Integer32,
svcVpnId VpnId,
svcRowStatus RowStatus,
svcType ServType,
svcDescription ServObjDesc,
svcMtu Integer32,
svcAdminStatus ServiceAdminStatus,
svcOperStatus ServiceOperStatus,
svcNumSaps Integer32,
svcNumSdps Integer32,
svcLastMgmtChange TimeStamp,
svcLastStatusChange TimeStamp,
svcEnableSecureSaps TruthValue,
svcCustName ServObjName,
svcRevertTimer Unsigned32
}
svcId OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The service ID."
DEFVAL { 0 }
::= { svcBaseInfoEntry 1 }
svcVpnId OBJECT-TYPE
SYNTAX VpnId
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
"
::= { svcBaseInfoEntry 2}
svcRowStatus 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 be deleted any time. The transition between
svcRowStatus active(1) and notInService(2) states
are rejected if svcAdminStatus is up(1). "
::= { svcBaseInfoEntry 3 }
svcType OBJECT-TYPE
SYNTAX ServType
MAX-ACCESS read-write
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.
Note: For VPLS service, vpls-mtu is supported only."
::= { svcBaseInfoEntry 4 }
svcDescription OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Generic information about this service."
DEFVAL { "" }
::= { svcBaseInfoEntry 5 }
svcMtu OBJECT-TYPE
SYNTAX Integer32 (512..9216)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Not supported object"
::= { svcBaseInfoEntry 6 }
svcAdminStatus OBJECT-TYPE
SYNTAX ServiceAdminStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The desired state of this service.
1. The transition from down(2) state to up(1) state can
be done only if svcRowStatus is either active(1) or
notInSercvice(2).
2. The transition from up(1) to down(2) state has to be
done in order to modify svcRowStatus object. "
DEFVAL { down }
::= { svcBaseInfoEntry 7 }
svcOperStatus OBJECT-TYPE
SYNTAX ServiceOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operating state of this service."
::= { svcBaseInfoEntry 8 }
svcNumSaps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of SAPs defined on this service."
::= { svcBaseInfoEntry 9 }
svcNumSdps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of SDPs bound to this service."
::= { svcBaseInfoEntry 10 }
svcLastMgmtChange 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."
::= { svcBaseInfoEntry 11}
svcLastStatusChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime at the time of the
most recent operating status change to his
service."
::= { svcBaseInfoEntry 12 }
svcEnableSecureSaps OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Used to configure the SAPs to forward only traffic from the uplink ports."
DEFVAL { false }
::= { svcBaseInfoEntry 13 }
svcCustName OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The name of the customer this service belongs to."
DEFVAL { "" }
::= { svcBaseInfoEntry 14 }
svcRevertTimer OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Delay before switching to primary pseudowire in seconds"
::= { svcBaseInfoEntry 15 }
--
-- VPLS Global parameters
--
svcVplsMode OBJECT-TYPE
SYNTAX INTEGER {
disable ( 0 ),
qualified ( 1 ),
unqualified ( 2 ),
enable ( 3 )
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object is used to configure whether VPLS operates in
qualified or unqualified mode. Qualified and unqualified are not supported,
when having per port qualified/unqualified."
DEFVAL { unqualified }
::= { prvtTMServVPLSGlobals 1 }
svcVPLSUplinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF SvcVPLSUplinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the VPLS uplink ports."
::= { prvtTMServVPLSGlobals 2 }
svcVPLSUplinkEntry OBJECT-TYPE
SYNTAX SvcVPLSUplinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A particular VPLS uplink port."
INDEX { svcVPLSUplinkPortID }
::= { svcVPLSUplinkTable 1 }
SvcVPLSUplinkEntry ::= SEQUENCE {
svcVPLSUplinkPortID Integer32,
svcVPLSUplinkIfIndex Integer32,
svcVPLSUplinkNetworkPolicy TNetworkPolicyIdOrNone,
svcVPLSUplinkNetworkQueueEgressPolicy TNamedItemOrEmpty,
svcVPLSUplinkShaperProfile Integer32
}
svcVPLSUplinkPortID OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique uplink port index."
::= { svcVPLSUplinkEntry 1 }
svcVPLSUplinkIfIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The ifIndex of the uplink port."
::= { svcVPLSUplinkEntry 2 }
svcVPLSUplinkNetworkPolicy OBJECT-TYPE
SYNTAX TNetworkPolicyIdOrNone
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The network scheduler policy applied to the port."
::= { svcVPLSUplinkEntry 3 }
svcVPLSUplinkNetworkQueueEgressPolicy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The network egress queue applied to the port."
::= { svcVPLSUplinkEntry 4 }
svcVPLSUplinkShaperProfile OBJECT-TYPE
SYNTAX Integer32 (0..2)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The ID of the shaping profile applied to the port.
0 indicates no shaping profile."
::= { svcVPLSUplinkEntry 5 }
--
-- Service traps
--
prvtSvcCreated NOTIFICATION-TYPE
OBJECTS {
svcId
}
STATUS current
DESCRIPTION "This trap is sent when a new row is created
in the svcBaseInfoTable."
::= { prvtSvcTraps 1 }
prvtSvcDeleted NOTIFICATION-TYPE
OBJECTS {
svcId
}
STATUS current
DESCRIPTION "This trap is sent when an existing row is
deleted from the svcBaseInfoTable."
::= { prvtSvcTraps 2 }
prvtSvcStatusChanged NOTIFICATION-TYPE
OBJECTS {
svcId,
svcVpnId,
svcAdminStatus,
svcOperStatus
}
STATUS current
DESCRIPTION "The scvStatusChanged notification is generated when
there is a change in the administrative or operating
status of a service."
::= { prvtSvcTraps 3 }
-- --------------------------------------------------------------------
-- prvtTMSapObjs group
-- --------------------------------------------------------------------
sapNumEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of SAPs configured in this
device."
::= { prvtTMSapObjs 1 }
--
-- Base SAP Table
--
sapBaseInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SapBaseInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains basic SAP information."
::= { prvtTMSapObjs 2 }
sapBaseInfoEntry OBJECT-TYPE
SYNTAX SapBaseInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific SAP."
INDEX { svcId, sapPortId, sapEncapValue }
::= { sapBaseInfoTable 1 }
SapBaseInfoEntry ::= SEQUENCE {
sapPortId INTEGER,
sapEncapValue TMEncapVal,
sapRowStatus RowStatus,
sapType ServType,
sapDescription ServObjDesc,
sapAdminStatus ServiceAdminStatus,
sapOperStatus INTEGER,
sapLastMgmtChange TimeStamp,
sapOperFlags BITS,
sapCustMultSvcSiteName DisplayString,
sapIngressQosPolicyId TSapIngressPolicyIdOrNone,
sapEgressQosPolicyId TSapEgressPolicyIdOrNone,
sapIngressQosSchedulerPolicy TNamedItemOrEmpty,
sapEgressQosSchedulerPolicy TNamedItemOrEmpty,
sapLearnMode INTEGER
}
sapPortId OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The ID of the access port where this SAP
is defined."
::= { sapBaseInfoEntry 1 }
sapEncapValue OBJECT-TYPE
SYNTAX TMEncapVal
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the label used to identify this
SAP on the access port specified by sapPortId."
::= { sapBaseInfoEntry 2 }
sapRowStatus 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 createAndGo(4)
active(1), notInService(2) and destroy(6).
Saps can be deleted any time. The transition between
svcRowStatus active(1) and notInService(2) states
are rejected if sapAdminStatus is up(1).
"
::= { sapBaseInfoEntry 3 }
sapType OBJECT-TYPE
SYNTAX ServType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the type of service where
this SAP is defined."
::= { sapBaseInfoEntry 4 }
sapDescription OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Generic information about this SAP."
DEFVAL { "" }
::= { sapBaseInfoEntry 5 }
sapAdminStatus OBJECT-TYPE
SYNTAX ServiceAdminStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired state of this SAP.
1. The value of this object depends on the value of svcAdminStatus
for the service this sap belongs to. If the sap is created and
its service has svcAdminStatus set to down(2), its own admin status
will be down(2), otherwise sapAdminStatus will be up(1).
2. If sapRowStatus is in notInService state, the sapAdminStatus
transition from down(2) to up(1) state will automaticaly change the
value of the sapRowStatus object to active(1)"
DEFVAL { up }
::= { sapBaseInfoEntry 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"
::= { sapBaseInfoEntry 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."
::= { sapBaseInfoEntry 8 }
sapOperFlags OBJECT-TYPE
SYNTAX BITS {
sapAdminDown(0), -- SAP is admin down
svcAdminDown(1), -- Service is admin down
portOperDown(2) -- Access port is oper down
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies all the conditions that
affect the operating status of this SAP."
::= { sapBaseInfoEntry 9 }
sapCustMultSvcSiteName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..9))
MAX-ACCESS read-write
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."
DEFVAL { ''H }
::= { sapBaseInfoEntry 11 }
sapIngressQosPolicyId OBJECT-TYPE
SYNTAX TSapIngressPolicyIdOrNone
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The row index in the hqosSapIngressTable
corresponding to this ingress QoS
policy, or zero if no policy is specified."
DEFVAL { 0 }
::= { sapBaseInfoEntry 12 }
sapEgressQosPolicyId OBJECT-TYPE
SYNTAX TSapEgressPolicyIdOrNone
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The row index in the hqosSapEgressTable
corresponding to this egress QoS policy,
or zero if no policy is specified."
DEFVAL { 0 }
::= { sapBaseInfoEntry 13 }
sapIngressQosSchedulerPolicy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object can be set only when sapCustMultSvcSite
is null. It indicates the ingress QoS scheduler for
this SAP."
DEFVAL { ''H }
::= { sapBaseInfoEntry 14 }
sapEgressQosSchedulerPolicy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object can be set only when sapCustMultSvcSite
is null. It indicates the egress QoS scheduler for
this SAP."
DEFVAL { ''H }
::= { sapBaseInfoEntry 15 }
sapLearnMode OBJECT-TYPE
SYNTAX INTEGER {
qualified ( 1 ),
unqualified ( 2 )
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Sap learning mode. Currently supported as read-only."
::= { sapBaseInfoEntry 16 }
prvtSapCreated NOTIFICATION-TYPE
OBJECTS {
svcId,
sapPortId,
sapEncapValue
}
STATUS current
DESCRIPTION "This trap is sent when a new row is created
in the sapBaseInfoTable."
::= { prvtSapTraps 1 }
prvtSapDeleted NOTIFICATION-TYPE
OBJECTS {
svcId,
sapPortId,
sapEncapValue
}
STATUS current
DESCRIPTION "This trap is sent when an existing row is
deleted from the sapBaseInfoTable."
::= { prvtSapTraps 2 }
prvtSapStatusChanged NOTIFICATION-TYPE
OBJECTS {
svcId,
sapPortId,
sapEncapValue,
sapAdminStatus,
sapOperStatus
}
STATUS current
DESCRIPTION "The sapStatusChanged notification is generated
when there is a change in the administrative or
operating status of an SAP."
::= { prvtSapTraps 3 }
--
-- Ingress QoS Queue SAP Statistics Table
--
sapIngQosQueueStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SapIngQosQueueStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains ingress QoS queue SAP
statistics."
::= { prvtTMSapObjs 3 }
sapIngQosQueueStatsEntry OBJECT-TYPE
SYNTAX SapIngQosQueueStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Ingress statistics about a specific SAP's
QoS queue."
INDEX { svcId, sapPortId, sapEncapValue, sapIngQosQueueId }
::= { sapIngQosQueueStatsTable 1 }
SapIngQosQueueStatsEntry ::= SEQUENCE {
sapIngQosQueueId TSapIngQueueId,
sapIngQosQueueStatsOfferedHiPrioPackets Counter32,
sapIngQosQueueStatsOfferedLoPrioPackets Counter32,
sapIngQosQueueStatsOfferedHiPrioOctets Counter32,
sapIngQosQueueStatsOfferedLoPrioOctets Counter32,
sapIngQosQueueStatsForwardedInProfPackets Counter32,
sapIngQosQueueStatsForwardedOutProfPackets Counter32,
sapIngQosQueueStatsForwardedInProfOctets Counter32,
sapIngQosQueueStatsForwardedOutProfOctets Counter32,
sapIngQosQueueStatsDroppedPackets Counter32,
sapIngQosQueueStatsDroppedOctets Counter32,
sapIngQosCustName ServObjName
}
sapIngQosQueueId OBJECT-TYPE
SYNTAX TSapIngQueueId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The index of the ingress QoS queue of
this SAP."
::= { sapIngQosQueueStatsEntry 1 }
sapIngQosQueueStatsOfferedHiPrioPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of high priority packets,
as determined by the SAP ingress QoS
policy, offered by the service queue."
::= { sapIngQosQueueStatsEntry 2 }
sapIngQosQueueStatsOfferedLoPrioPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of low priority packets,
as determined by the SAP ingress QoS
policy, offered by the service queue."
::= { sapIngQosQueueStatsEntry 3 }
sapIngQosQueueStatsOfferedHiPrioOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of high priority octets,
as determined by the SAP ingress QoS
policy, offered by the service queue."
::= { sapIngQosQueueStatsEntry 4 }
sapIngQosQueueStatsOfferedLoPrioOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of low priority octets,
as determined by the SAP ingress QoS
policy, offered by the service queue."
::= { sapIngQosQueueStatsEntry 5 }
sapIngQosQueueStatsForwardedInProfPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of in-profile packets
(rate below CIR) forwarded by the
ingress service queue."
::= { sapIngQosQueueStatsEntry 6 }
sapIngQosQueueStatsForwardedOutProfPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of out-of-profile packets
(rate above CIR) forwarded by the
ingress service queue."
::= { sapIngQosQueueStatsEntry 7 }
sapIngQosQueueStatsForwardedInProfOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of in-profile octets
(rate below CIR) forwarded by the
ingress service queue."
::= { sapIngQosQueueStatsEntry 8 }
sapIngQosQueueStatsForwardedOutProfOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of out-of-profile octets
(rate above CIR) forwarded by the
ingress service queue."
::= { sapIngQosQueueStatsEntry 9 }
sapIngQosQueueStatsDroppedOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of octets
discarded in the egress queue."
::= { sapIngQosQueueStatsEntry 10 }
sapIngQosQueueStatsDroppedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of in-profile packets
discarded by the Ingess queue."
::= { sapIngQosQueueStatsEntry 11 }
sapIngQosCustName OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Customer Name of the site this SAP belongs to."
::= { sapIngQosQueueStatsEntry 12 }
--
-- Egress QoS Queue SAP Statistics Table
--
sapEgrQosQueueStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SapEgrQosQueueStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains egress QoS queue SAP
statistics."
::= { prvtTMSapObjs 4 }
sapEgrQosQueueStatsEntry OBJECT-TYPE
SYNTAX SapEgrQosQueueStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Egress statistics about a specific SAP's
QoS queue."
INDEX { svcId, sapPortId, sapEncapValue, sapEgrQosQueueId }
::= { sapEgrQosQueueStatsTable 1 }
SapEgrQosQueueStatsEntry ::= SEQUENCE {
sapEgrQosQueueId TSapEgrQueueId,
sapEgrQosQueueStatsForwardedInProfPackets Counter32,
sapEgrQosQueueStatsForwardedOutProfPackets Counter32,
sapEgrQosQueueStatsForwardedInProfOctets Counter32,
sapEgrQosQueueStatsForwardedOutProfOctets Counter32,
sapEgrQosQueueStatsDroppedPackets Counter32,
sapEgrQosQueueStatsDroppedOctets Counter32,
sapEgrQosCustName ServObjName
}
sapEgrQosQueueId OBJECT-TYPE
SYNTAX TSapEgrQueueId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The index of the egress QoS queue of
this SAP."
::= { sapEgrQosQueueStatsEntry 1 }
sapEgrQosQueueStatsForwardedInProfPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of in-profile packets
(rate below CIR) forwarded by the
egress queue."
::= { sapEgrQosQueueStatsEntry 2 }
sapEgrQosQueueStatsForwardedOutProfPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of out-of-profile packets
(rate above CIR) forwarded by the
egress queue."
::= { sapEgrQosQueueStatsEntry 3 }
sapEgrQosQueueStatsForwardedInProfOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of in-profile octets
(rate below CIR) forwarded by the
egress queue."
::= { sapEgrQosQueueStatsEntry 4 }
sapEgrQosQueueStatsForwardedOutProfOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of out-of-profile octets
(rate above CIR) forwarded by the
egress queue."
::= { sapEgrQosQueueStatsEntry 5 }
sapEgrQosQueueStatsDroppedOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of octets
discarded in the egress queue."
::= { sapEgrQosQueueStatsEntry 6 }
sapEgrQosQueueStatsDroppedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of in-profile packets
discarded by the egress queue."
::= { sapEgrQosQueueStatsEntry 7 }
sapEgrQosCustName OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Customer Name of the site this SAP belongs to."
::= { sapEgrQosQueueStatsEntry 8 }
--
-- Ingress QoS Scheduler SAP Statistics Table
--
sapIngQosSchedStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SapIngQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains ingress QoS queue SAP
statistics."
::= { prvtTMSapObjs 5 }
sapIngQosSchedStatsEntry OBJECT-TYPE
SYNTAX SapIngQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Ingress statistics about a specific SAP's
QoS queue."
INDEX { svcId, sapPortId, sapEncapValue,
IMPLIED sapIngQosSchedName }
::= { sapIngQosSchedStatsTable 1 }
SapIngQosSchedStatsEntry ::= SEQUENCE {
sapIngQosSchedName TNamedItem,
sapIngQosSchedStatsForwardedPackets Counter32,
sapIngQosSchedStatsForwardedOctets Counter32,
sapIngQosSchedCustName ServObjName
}
sapIngQosSchedName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the ingress QoS scheduler of
this SAP."
::= { sapIngQosSchedStatsEntry 1 }
sapIngQosSchedStatsForwardedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded packets, as
determined by the SAP ingress scheduler
policy, offered by the Pchip to the
Qchip."
::= { sapIngQosSchedStatsEntry 2 }
sapIngQosSchedStatsForwardedOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded octets,as
determined by the SAP ingress schduler
policy, offered by the Pchip to the
Qchip."
::= { sapIngQosSchedStatsEntry 3 }
sapIngQosSchedCustName OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Customer Name of the site this SAP belongs to."
::= { sapIngQosSchedStatsEntry 4 }
--
-- Egress QoS Scheduler SAP Statistics Table
--
sapEgrQosSchedStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SapEgrQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains ingress QoS queue SAP
statistics."
::= { prvtTMSapObjs 6 }
sapEgrQosSchedStatsEntry OBJECT-TYPE
SYNTAX SapEgrQosSchedStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Egress statistics about a specific SAP's
QoS queue."
INDEX { svcId, sapPortId, sapEncapValue,
IMPLIED sapEgrQosSchedName }
::= { sapEgrQosSchedStatsTable 1 }
SapEgrQosSchedStatsEntry ::= SEQUENCE {
sapEgrQosSchedName TNamedItem,
sapEgrQosSchedStatsForwardedPackets Counter32,
sapEgrQosSchedStatsForwardedOctets Counter32,
sapEgrQosSchedCustName ServObjName
}
sapEgrQosSchedName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the egress QoS scheduler of
this SAP."
::= { sapEgrQosSchedStatsEntry 1 }
sapEgrQosSchedStatsForwardedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded packets by the
egress Qchip, as determined by the SAP
egress scheduler policy."
::= { sapEgrQosSchedStatsEntry 2 }
sapEgrQosSchedStatsForwardedOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of forwarded octets by the
egress Qchip, as determined by the SAP
egress scheduler policy."
::= { sapEgrQosSchedStatsEntry 3 }
sapEgrQosSchedCustName OBJECT-TYPE
SYNTAX ServObjName
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Customer Name of the site this SAP belongs to."
::= { sapEgrQosSchedStatsEntry 4 }
-- --------------------------------------------------------------------
-- prvtTMSdpObjs group
-- --------------------------------------------------------------------
sdpNumEntries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of SDPs configured in this
device."
::= { prvtTMSdpObjs 1 }
sdpNextFreeId OBJECT-TYPE
SYNTAX SdpIdType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The next available value for sdpId."
::= { prvtTMSdpObjs 2 }
--
-- SDP Table
--
sdpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains SDP information."
::= { prvtTMSdpObjs 3 }
sdpInfoEntry OBJECT-TYPE
SYNTAX SdpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific SDP."
INDEX { svcId, sdpId }
::= { sdpInfoTable 1 }
SdpInfoEntry ::= SEQUENCE {
sdpId SdpIdType,
sdpRowStatus RowStatus,
sdpDelivery INTEGER,
sdpFarEndIpAddress IpAddress,
sdpDescription ServObjDesc,
sdpLabelSignaling INTEGER,
sdpAdminStatus ServiceAdminStatus,
sdpOperStatus INTEGER,
sdpLastMgmtChange TimeStamp,
sdpLdpEnabled TruthValue,
sdpOperFlags BITS,
sdpLastStatusChange TimeStamp,
sdpAdminIngressLabel Unsigned32,
sdpAdminEgressLabel Unsigned32,
sdpAdminIsBackup TruthValue,
sdpOperIsBackup TruthValue,
sdpOutInterface Integer32,
sdpGroupIdentifier Unsigned32,
sdpTransportTunnelName DisplayString ,
sdpVCType INTEGER,
sdpType INTEGER,
sdpMtu Integer32,
sdpBindVlanTag Unsigned32,
sdpIsPwStatusSignalingEnable TruthValue,
sdpEpsAdminIsPrimary TruthValue,
sdpEpsAdminIsSecondary TruthValue
}
sdpId OBJECT-TYPE
SYNTAX SdpIdType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SDP identifier."
::= { sdpInfoEntry 1 }
sdpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object indicates the status of this row.
1. The values supported during a set operation are
createAndWait(5), destroy(6), active(1), notInSertvice(2).
Sdps can be deleted any time. The transition between
active(1) and notInService(2) states are rejected if
sdpAdminStatus is up(1).
"
::= { sdpInfoEntry 2 }
sdpDelivery OBJECT-TYPE
SYNTAX INTEGER {
gre(1),
mpls(2)
}
MAX-ACCESS read-write
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. "
DEFVAL { mpls }
::= { sdpInfoEntry 3 }
sdpFarEndIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
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.
"
::= { sdpInfoEntry 4 }
sdpDescription OBJECT-TYPE
SYNTAX ServObjDesc
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Generic information about this SDP."
DEFVAL { "" }
::= { sdpInfoEntry 5 }
sdpLabelSignaling OBJECT-TYPE
SYNTAX INTEGER {
none(1),
tldp(2)
}
MAX-ACCESS read-write
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
"
DEFVAL { tldp }
::= { sdpInfoEntry 6 }
sdpAdminStatus OBJECT-TYPE
SYNTAX ServiceAdminStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired state of this SDP.
1. The value of this object depends on the value of svcAdminStatus.
It will be rejected to set sdpAdminStatus to up(1), when svcAdminStatus
is set to down(2).
2. If sdpRowStatus is in notInService state, the transition of sdpAdminStatus
from down(2) to up(1) state will also automaticaly change the
value of the sdpRowStatus object to active(1)
"
DEFVAL { down }
::= { sdpInfoEntry 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).
"
::= { sdpInfoEntry 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."
::= { sdpInfoEntry 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."
DEFVAL { false }
::= { sdpInfoEntry 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."
::= { sdpInfoEntry 11 }
sdpLastStatusChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime at the time of the
most recent operating status change to this
SDP."
::= { sdpInfoEntry 12 }
sdpAdminIngressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1 | 2048..18431)
MAX-ACCESS read-write
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."
DEFVAL { 0 }
::= { sdpInfoEntry 13 }
sdpAdminEgressLabel OBJECT-TYPE
SYNTAX Unsigned32 (0 | 16..1048575)
MAX-ACCESS read-write
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."
DEFVAL { 0 }
::= { sdpInfoEntry 14 }
sdpAdminIsBackup OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object is used in administratively to specify the preferred primary or backup state of this SDP.
A value of false means this is the primary SDP.
This field is mandatory if svcType is set to vpls-mtu(12) or vpws-mtu(10).
The sdpType must be set to spoke(2). If all mandatory fields are
set, the row status object is automatically changed from notReady(3) to
notInService(2) state."
DEFVAL { false }
::= { sdpInfoEntry 15 }
sdpOperIsBackup OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "It represents the current operational state of this SDP as either active or backup.
A value of false means this is the active SDP. A value of true means that this SDP is
in backup suppressed state."
DEFVAL { false }
::= { sdpInfoEntry 16 }
sdpOutInterface OBJECT-TYPE
SYNTAX Integer32
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
"
DEFVAL { 0 }
::= { sdpInfoEntry 17 }
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."
DEFVAL { 0 }
::= { sdpInfoEntry 18 }
sdpTransportTunnelName OBJECT-TYPE
SYNTAX DisplayString
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."
DEFVAL { "" }
::= { sdpInfoEntry 19 }
sdpVCType OBJECT-TYPE
SYNTAX INTEGER
{
ethernet-vlan(4),
ethernet(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "VC Type of the service."
::= { sdpInfoEntry 20}
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 svcType 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.
"
::= { sdpInfoEntry 21}
sdpMtu OBJECT-TYPE
SYNTAX Integer32 (512..9216)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The largest frame size (in octets) that this
SDP can handle"
::= { sdpInfoEntry 22}
sdpBindVlanTag OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Outgoing vlan."
::= { sdpInfoEntry 23}
sdpIsPwStatusSignalingEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Specifies if PW-status signalling is enabled per given SDP."
::= { sdpInfoEntry 24}
sdpEpsAdminIsPrimary OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Administrative primary status if the specified SDP. If set to true, the SDP is the primary-link of the protection."
DEFVAL { false }
::= { sdpInfoEntry 25 }
sdpEpsAdminIsSecondary OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Administrative secondary status if the specified SDP. If set to true, the SDP is the secondary-link of the protection."
DEFVAL { false }
::= { sdpInfoEntry 26 }
---notifications
prvtSdpCreated NOTIFICATION-TYPE
OBJECTS {
svcId, sdpId
}
STATUS current
DESCRIPTION "This trap is sent when a new row is created
in the sdpInfoTable."
::= { prvtSdpTraps 1 }
prvtSdpDeleted NOTIFICATION-TYPE
OBJECTS {
svcId, sdpId
}
STATUS current
DESCRIPTION "This trap is sent when an existing row is
deleted from the sdpInfoTable."
::= { prvtSdpTraps 2 }
prvtSdpStatusChanged NOTIFICATION-TYPE
OBJECTS {
svcId,
sdpId,
sdpAdminStatus,
sdpOperStatus
}
STATUS current
DESCRIPTION "The sdpStatusChanged notification is generated
when there is a change in the administrative or
operating status of an SDP."
::= { prvtSdpTraps 3 }
-- ----------------------------------------------------------------------------
-- Conformance Information
-- ----------------------------------------------------------------------------
prvtTMCustCompliances OBJECT IDENTIFIER ::= { prvtTMCustConformance 1 }
prvtTMCustGroups OBJECT IDENTIFIER ::= { prvtTMCustConformance 2 }
prvtTMSvcCompliances OBJECT IDENTIFIER ::= { prvtTMSvcConformance 1 }
prvtTMSvcGroups OBJECT IDENTIFIER ::= { prvtTMSvcConformance 2 }
prvtTMSapCompliances OBJECT IDENTIFIER ::= { prvtTMSapConformance 1 }
prvtTMSapGroups OBJECT IDENTIFIER ::= { prvtTMSapConformance 2 }
prvtTMSdpCompliances OBJECT IDENTIFIER ::= { prvtTMSdpConformance 1 }
prvtTMSdpGroups OBJECT IDENTIFIER ::= { prvtTMSdpConformance 2 }
-- ----------------------------------------------
-- Compliance Statements
-- ----------------------------------------------
prvtTMCustCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of services customers
on T-Metro series systems."
MODULE -- this module
MANDATORY-GROUPS
{
prvtTMCustGlobalGroup
}
::= { prvtTMCustCompliances 1 }
prvtTMSvcCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of services
on T-Metro series systems."
MODULE -- this module
MANDATORY-GROUPS
{
prvtTMSvcGlobalGroup,
prvtTMSvcNotificationGroup
}
::= { prvtTMSvcCompliances 1 }
prvtTMSapCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of services SAPs
on T-Metro series systems."
MODULE -- this module
MANDATORY-GROUPS {
prvtTMSapGlobalGroup,
prvtTMSapNotificationGroup
}
::= { prvtTMSapCompliances 1 }
prvtTMSdpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of services SDPs
on T-Metro series systems."
MODULE -- this module
MANDATORY-GROUPS {
prvtTMSdpGlobalGroup
}
::= { prvtTMSdpCompliances 1 }
-- ----------------------------------------------
-- customer OBJECT-GROUPs
-- ----------------------------------------------
prvtTMCustGlobalGroup OBJECT-GROUP
OBJECTS {
custNumEntries,
custName,
custRowStatus,
custContact,
custPhone,
custLastMgmtChange
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Services customers
general capabilities on T-Metro series systems."
::= { prvtTMCustGroups 1 }
-- ----------------------------------------------
-- Services OBJECT-GROUPs
-- ----------------------------------------------
prvtTMSvcGlobalGroup OBJECT-GROUP
OBJECTS {
svcNumEntries,
svcId,
svcRowStatus,
svcType,
svcDescription,
svcAdminStatus,
svcOperStatus,
svcNumSaps,
svcNumSdps,
svcLastMgmtChange,
svcVpnId
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Svc general
capabilities on T-Metro series systems."
::= { prvtTMSvcGroups 1 }
prvtTMSvcNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
prvtSvcCreated,
prvtSvcDeleted
}
STATUS current
DESCRIPTION
"The group of notifications supporting the Services
on T-Metro series systems."
::= { prvtTMSvcGroups 2 }
-- ----------------------------------------------
-- Service SAP OBJECT-GROUPs
-- ----------------------------------------------
prvtTMSapGlobalGroup OBJECT-GROUP
OBJECTS {
sapNumEntries,
sapPortId,
sapEncapValue,
sapRowStatus,
sapType,
sapDescription,
sapAdminStatus,
sapOperStatus,
sapIngressQosPolicyId,
sapEgressQosPolicyId,
sapLastMgmtChange
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Services SAP general
capabilities on T-Metro series systems."
::= { prvtTMSapGroups 1 }
prvtTMSapNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
prvtSapStatusChanged,
prvtSapCreated,
prvtSapDeleted
}
STATUS current
DESCRIPTION
"The group of notifications supporting the Sap feature
on T-Metro series systems."
::= { prvtTMSapGroups 2 }
-- ----------------------------------------------
-- Service SDP OBJECT-GROUPs
-- ----------------------------------------------
prvtTMSdpGlobalGroup OBJECT-GROUP
OBJECTS {
sdpNumEntries,
sdpId,
sdpNextFreeId,
sdpRowStatus,
sdpDelivery,
sdpFarEndIpAddress,
sdpDescription,
sdpLabelSignaling,
sdpAdminStatus,
sdpOperStatus,
sdpLastMgmtChange,
sdpLdpEnabled
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Services SDP general
capabilities on T-Metro series systems."
::= { prvtTMSdpGroups 1 }
END
|