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
|
PT-RADIOLINK-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,Counter32, Integer32, IpAddress FROM SNMPv2-SMI
TEXTUAL-CONVENTION FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
InetAddressIPv6 FROM INET-ADDRESS-MIB
ifEntry FROM IF-MIB
pt FROM PT-MIB;
ptRadioLink MODULE-IDENTITY
LAST-UPDATED "201712011600Z"
ORGANIZATION "Ericsson"
CONTACT-INFO
"Anders Ekvall
Postal: Ericsson AB,
E-Mail: anders.ekvall@ericsson.com"
DESCRIPTION
"This is the MIB for Radio Link specifics in PT"
REVISION "201712011600Z"
DESCRIPTION
"Added plcAdminStatus and plcOperStatus."
REVISION "201704051000Z"
DESCRIPTION
"Added channelSpacing enums."
REVISION "201701181000Z"
DESCRIPTION
"Added mlhcAdminStatus, mlhcOperStatus and mlhcMplsConfig."
REVISION "201612061400Z"
DESCRIPTION
"Added more MOs in ctTable and rltTable. Added G.826 tables."
REVISION "201605221030Z"
DESCRIPTION
"The initial version of this MIB module
with OID for MINI-LINK."
::= { pt 7 }
ptRadioLinkConformance OBJECT IDENTIFIER ::= { ptRadioLink 2 }
ctPerformance OBJECT IDENTIFIER ::= { ptRadioLink 4 }
---
--- Textual conventions
---
AcmTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer which indicates the ACM."
SYNTAX INTEGER
{
acmHalfBpsk(1),
acmHalfBpskLight(2),
acmHalfBpskStrong(3),
acmBpsk(4),
acmBpskLight(5),
acmBpskStrong(6),
acm4Qam(7),
acm4QamLight(8),
acm4QamStrong(9),
acm16Qam(10),
acm16QamLight(11),
acm16QamStrong(12),
acm32Qam(13),
acm32QamLight(14),
acm32QamStrong(15),
acm64Qam(16),
acm64QamLight(17),
acm64QamStrong(18),
acm128Qam(19),
acm128QamLight(20),
acm128QamStrong(21),
acm256Qam(22),
acm256QamLight(23),
acm256QamStrong(24),
acm512Qam(25),
acm512QamLight(26),
acm512QamStrong(27),
acm1024Qam(28),
acm1024QamLight(29),
acm1024QamStrong(30),
acm2048Qam(31),
acm2048QamLight(32),
acm2048QamStrong(33),
acm4096Qam(34),
acm4096QamLight(35),
acm4096QamStrong(36)
}
EnableStatusTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer which indicates the enabled status."
SYNTAX INTEGER
{
enabled(1),
disabled(2),
unknown(3)
}
XpicMimoTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer which indicates the XPIC or MIMO status."
SYNTAX INTEGER
{
notAvailable(1),
locked(2),
unlocked(3),
unknown(4)
}
---
---The definition of ctTable
---
ctTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of CT Table entries."
::= { ptRadioLink 1 }
ctEntry OBJECT-TYPE
SYNTAX CtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of CT application."
AUGMENTS { ifEntry }
::= { ctTable 1 }
CtEntry ::=
SEQUENCE {
actualInputPower OCTET STRING,
actualOutputPower OCTET STRING,
actualRxAcm OCTET STRING,
actualTxAcm OCTET STRING,
ctDistinguishedName OCTET STRING,
description OCTET STRING,
carrierId INTEGER,
ctStatus INTEGER,
frameId Integer32,
txFrequency Integer32,
minTxFrequency Integer32,
maxTxFrequency Integer32,
rxFrequency Integer32,
minRxFrequency Integer32,
maxRxFrequency Integer32,
frequencyStepSize Integer32,
duplexDistance Integer32,
duplexType INTEGER,
duplexConfig EnableStatusTC,
autoFreqSelection INTEGER,
autoFreqSelectedChannel Integer32,
autoFreqSelectionStatus INTEGER,
channelSpacing INTEGER,
polarization INTEGER,
txOperStatus INTEGER,
txAdminStatus INTEGER,
selectedOutputPowerType INTEGER,
availableOutputPowerType INTEGER,
selectedMinOutputPower Integer32,
selectedMaxOutputPower Integer32,
availableMinOutputPower Integer32,
availableMaxOutputPower Integer32,
referenceSec INTEGER,
targetInputPowerFarEnd Integer32,
berAlarmThreshold INTEGER,
inputPowerAlarmThreshold Integer32,
plannedAlignmentInputPower Integer32,
atpcFallback EnableStatusTC,
atpcFallbackTimer Integer32,
atpcFallbackOutputPower Integer32,
xpicStatus XpicMimoTC,
mimoStatus XpicMimoTC,
actualSnir OCTET STRING,
actualXpi OCTET STRING,
actualSi OCTET STRING,
actualTxCapacity Integer32,
licensedCapacity Integer32,
availableMinCapacity Integer32,
availableMaxCapacity Integer32,
selectedMinCapacity Integer32,
selectedMaxCapacity Integer32,
wantedLicensedCapacity Integer32,
availableMinAcm AcmTC,
availableMaxAcm AcmTC,
selectedMinAcm AcmTC,
selectedMaxAcm AcmTC,
actualRxAcmTC AcmTC,
actualTxAcmTC AcmTC,
alignmentMode EnableStatusTC,
rfLoop EnableStatusTC
}
actualInputPower OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual input power of the CT in dBm"
::= { ctEntry 1 }
actualOutputPower OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual output power of the CT in dBm"
::= { ctEntry 2 }
actualRxAcm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual rx modulation and coding"
::= { ctEntry 3 }
actualTxAcm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual tx modulation and coding"
::= { ctEntry 4 }
ctDistinguishedName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique id/name of the carrier termination, according to FDN (rack/slot/port/class)"
::= { ctEntry 5 }
description OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User description of the carrior termination."
::= { ctEntry 6 }
carrierId OBJECT-TYPE
SYNTAX INTEGER
{
a(1),
b(2),
c(3),
d(4),
unknown(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Id of the carrier. (A, B, C, D)
Used in XPIC & MIMO configurations to check that the carrier termination is connected to the correct far end carrier termination.
Should be the same id on both sides of the hop. Defaulted when not MIMO or XPIC.
Sometimes also referred to as preamble"
::= { ctEntry 7 }
ctStatus OBJECT-TYPE
SYNTAX INTEGER
{
down(1),
up(2),
na(3),
unknown(4),
degraded(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the carrier termination, hop"
::= { ctEntry 8}
frameId OBJECT-TYPE
SYNTAX Integer32 (0..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A unique identifier for the radio frame to be used.
Wanted frameId, txFrequency, rxFrequency, referenceSec, selectedMinAcm and selectedMaxAcm must be a valid combination."
::= { ctEntry 9}
txFrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selected frequency on the transmitter (kHz).
Wanted frameId, txFrequency, rxFrequency, referenceSec, selectedMinAcm and selectedMaxAcm must be a valid combination."
::= { ctEntry 10}
minTxFrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum Tx frequency possible to use, given by the selected frame-id"
::= { ctEntry 11}
maxTxFrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Tx frequency possible to use, given by the selected frame-id"
::= { ctEntry 12}
rxFrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selected frequency on the receiver (kHz).
Wanted frameId, txFrequency, rxFrequency, referenceSec, selectedMinAcm and selectedMaxAcm must be a valid combination."
::= { ctEntry 13}
minRxFrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum Rx frequency possible to use, given by the selected frame-id"
::= { ctEntry 14}
maxRxFrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Rx frequency possible to use, given by the selected frame-id"
::= { ctEntry 15}
frequencyStepSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frequency step size in kHz"
::= { ctEntry 16}
duplexDistance OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Distance between Tx and Rx frequencies (kHz)"
::= { ctEntry 17}
duplexType OBJECT-TYPE
SYNTAX INTEGER
{
variable(1),
fixed(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duplex type is given by the equipment (Fixed,Variable)"
::= { ctEntry 18}
duplexConfig OBJECT-TYPE
SYNTAX EnableStatusTC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enabling or disabling configuration of Rx freq using duplex distance"
::= { ctEntry 19}
autoFreqSelection OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
master(2),
slave(3),
unknown(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Automatic frequency selection mode"
::= { ctEntry 20}
autoFreqSelectedChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Automatic frequency selected channel"
::= { ctEntry 21}
autoFreqSelectionStatus OBJECT-TYPE
SYNTAX INTEGER
{
idle(1),
searchingForSlave(2),
requestingInfoFromSlave(3),
waitingForMaster(4),
waitingForChannelInfoRequest(5),
inProgress(6),
initializing(7),
finished(8),
failed(9),
unknown(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Automatic frequency status"
::= { ctEntry 22}
channelSpacing OBJECT-TYPE
SYNTAX INTEGER
{
cs7MHz(1),
cs10MHz(2),
cs14MHz(3),
cs20MHz(4),
cs28MHz(5),
cs30MHz(6),
cs40MHz(7),
cs50MHz(8),
cs56MHz(9),
cs250MHz(10),
cs60MHz(11),
cs500MHz(12),
cs750MHz(13),
cs100MHz(14),
cs150MHz(15),
cs200MHz(16),
cs125MHz(17),
cs80MHz(18),
cs112MHz(19),
cs1000MHz(20),
cs1250MHz(21),
cs1500MHz(22),
cs62p5MHz(23),
cs2000MHz(24),
unknown(25)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel spacing"
::= { ctEntry 23}
polarization OBJECT-TYPE
SYNTAX INTEGER
{
notSpecified(1),
horizontal(2),
vertical(3),
unknown(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Antenna polarization"
::= { ctEntry 24}
txOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
off(2),
on(3),
standby(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operative status of the transmitter"
::= { ctEntry 25}
txAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
off(1),
on(2),
unknown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative status of the transmitter"
::= { ctEntry 26}
selectedOutputPowerType OBJECT-TYPE
SYNTAX INTEGER
{
standard(1),
high(2),
unknown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selected output power type"
::= { ctEntry 27}
availableOutputPowerType OBJECT-TYPE
SYNTAX INTEGER
{
standard(1),
high(2),
unknown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Available output power type"
::= { ctEntry 28}
selectedMinOutputPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selected min output power.
Selected min & max output power should be set to the same value for RTPC mode, otherwise the hop operates in ATPC mode."
::= { ctEntry 29}
selectedMaxOutputPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selected max output power.
Selected min & max output power should be set to the same value for RTPC mode, otherwise the hop operates in ATPC mode."
::= { ctEntry 30}
availableMinOutputPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum output power supported (dBm).
The system shows a value if the equipment is available and a frame id has been selected."
::= { ctEntry 31}
availableMaxOutputPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum output power supported (dBm).
The system shows a value if the equipment is available and a frame id has been selected."
::= { ctEntry 32}
referenceSec OBJECT-TYPE
SYNTAX INTEGER
{
noAvailable(1),
sec2(2),
sec4L(4),
sec4H(5),
sec5B(7),
sec6B(9),
sec5LB(10),
sec5HB(11),
sec6LB(12),
sec6HB(13),
sec7B(14),
unknown(15)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each modulation is compliant to a Reference Spectrum Efficiency Class (RSEC).
When running Adaptive Coding/Modulation, one SEC has to be selected for all the coding/modulations between selectedMinACM and selectedMaxACM.
This parameter is called Reference SEC. This setting will affect availableMaxOutputPower, in order to fulfill spectrum requirements.
Wanted frameId, txFrequency, rxFrequency, referenceSec, selectedMinAcm and selectedMaxAcm must be a valid combination."
::= { ctEntry 33}
targetInputPowerFarEnd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The wanted input power at far end (dBm), when running ATPC"
::= { ctEntry 34}
berAlarmThreshold OBJECT-TYPE
SYNTAX INTEGER
{
tenExpMinus6(1),
tenExpMinus3(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Threshold for the BER alarm"
::= { ctEntry 35}
inputPowerAlarmThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Threshold for the input power alarm"
::= { ctEntry 36}
plannedAlignmentInputPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The planned received input power (dBm) dependent upon selected minimum ACM and corresponding output power.
Used when doing alignment"
::= { ctEntry 37}
atpcFallback OBJECT-TYPE
SYNTAX EnableStatusTC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the output power fall back function"
::= { ctEntry 38}
atpcFallbackTimer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the timer for output power fall back (# of seconds)"
::= { ctEntry 39}
atpcFallbackOutputPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ATPC fallback output power"
::= { ctEntry 40}
xpicStatus OBJECT-TYPE
SYNTAX XpicMimoTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the XPIC function."
::= { ctEntry 41}
mimoStatus OBJECT-TYPE
SYNTAX XpicMimoTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the MIMO function."
::= { ctEntry 42}
actualSnir OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual signal to noise plus interference ratio (dB)."
::= { ctEntry 43}
actualXpi OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The carrier to cross-polar interference level (dBc)."
::= { ctEntry 44}
actualSi OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Spatial interference between the CTs when MIMO is configured."
::= { ctEntry 45}
actualTxCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual capacity supported by the carrier termination."
::= { ctEntry 46}
licensedCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Wanted or installed license for the capacity allowed for the carrier termination."
::= { ctEntry 47}
availableMinCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum capacity possible to use. Given by the selected frame-id (kbit/s)"
::= { ctEntry 48}
availableMaxCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum capacity possible to use. Given by the selected frame-id (kbit/s)"
::= { ctEntry 49}
selectedMinCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Selected minimum capacity, derived from selected minimum ACM (kbit/s)"
::= { ctEntry 50}
selectedMaxCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Selected maximum capacity, derived from selected maximum ACM (kbit/s)"
::= { ctEntry 51}
wantedLicensedCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Wanted licensed capacity and creation of LRF for the carrier termination (kbit/s)"
::= { ctEntry 52}
availableMinAcm OBJECT-TYPE
SYNTAX AcmTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum ACM possible to use, given by the selected frame id."
::= { ctEntry 53}
availableMaxAcm OBJECT-TYPE
SYNTAX AcmTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum ACM possible to use, given by the selected frame id"
::= { ctEntry 54}
selectedMinAcm OBJECT-TYPE
SYNTAX AcmTC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selected minimum coding/modulation. If selectedMinACM = selectedMaxACM, then the modulation is fixed"
::= { ctEntry 55}
selectedMaxAcm OBJECT-TYPE
SYNTAX AcmTC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selected maximum coding/modulation. If selectedMinACM = selectedMaxACM, then the modulation is fixed"
::= { ctEntry 56}
actualRxAcmTC OBJECT-TYPE
SYNTAX AcmTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual rx modulation and coding"
::= { ctEntry 57}
actualTxAcmTC OBJECT-TYPE
SYNTAX AcmTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual tx modulation and coding"
::= { ctEntry 58}
alignmentMode OBJECT-TYPE
SYNTAX EnableStatusTC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the alignment mode"
::= { ctEntry 59}
rfLoop OBJECT-TYPE
SYNTAX EnableStatusTC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the rf loop"
::= { ctEntry 60}
---
---The definition of rltTable
---
rltTable OBJECT-TYPE
SYNTAX SEQUENCE OF RltEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of RLT Table entries."
::= { ptRadioLink 3 }
rltEntry OBJECT-TYPE
SYNTAX RltEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of RLT application."
AUGMENTS { ifEntry }
::= { rltTable 1 }
RltEntry ::=
SEQUENCE {
rltDistinguishedName OCTET STRING,
neIpAddress IpAddress,
neIpv6Address InetAddressIPv6,
neName OCTET STRING,
neType INTEGER,
id OCTET STRING,
rltStatus INTEGER,
mode INTEGER,
actualTxTotalCapacity Integer32,
limitedTotalCapacity Integer32,
protectionStatus INTEGER,
revertiveWaitToRestore Integer32,
revertivePreferredTx INTEGER,
protectionSwitchMode INTEGER,
fadeNotificationTimer Integer32,
expectedFarEndId OCTET STRING,
farEndIdCheck INTEGER,
cpriMode INTEGER,
cpriStatus INTEGER,
manualSwitch INTEGER,
mlhcOperStatus INTEGER,
mlhcAdminStatus INTEGER,
mlhcMplsConfig INTEGER,
plcOperStatus INTEGER,
plcAdminStatus INTEGER
}
rltDistinguishedName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique id/name of the radio link termination, according to FDN (rack/slot/port/class)"
::= { rltEntry 1 }
neIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NE IP address"
::= { rltEntry 2 }
neIpv6Address OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NE IP V6 address"
::= { rltEntry 3 }
neName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NE Name"
::= { rltEntry 4 }
neType OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
mle(2),
xfMle(3),
tn(4),
cn(5),
pt(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NE Type"
::= { rltEntry 5 }
id OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User defined id of the radio link terminal"
::= { rltEntry 6}
rltStatus OBJECT-TYPE
SYNTAX INTEGER
{
down(1),
up(2),
na(3),
unknown(4),
degraded(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the radio link terminal"
::= { rltEntry 7}
mode OBJECT-TYPE
SYNTAX INTEGER
{
mode1plus0(1),
mode1plus1CSB(2),
mode1plus1RLP(3),
mode2plus0RLB(4),
mode2plus1CSB(5),
mode2plus1RLP(6),
mode2plus2CSB(7),
mode2plus2RLP(8),
mode3plus0RLB(9),
mode4plus0RLB(10),
notAvailable11(11),
notAvailable12(12),
notAvailable13(13),
notAvailable14(14),
mode3plus1RLP(15),
mode3plus2RLP(16),
mode3plus3RLP(17),
mode4plus1RLP(18),
mode4plus2RLP(19),
mode4plus3RLP(20),
mode4plus4RLP(21),
notAvailable22(22),
notAvailable23(23),
notAvailable24(24),
notAvailable25(25),
notAvailable26(26),
notAvailable27(27),
mode3plus1CSB(28),
mode3plus2CSB(29),
mode3plus3CSB(30),
mode4plus1CSB(31),
mode4plus2CSB(32),
mode4plus3CSB(33),
mode4plus4CSB(34),
unknown(35)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of the radio link terminal"
::= { rltEntry 8}
actualTxTotalCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual aggregated total (packet + TDM) transmitter capacity for the radio link termination.
Limited by licenses & configuration (=nearEndLimitedCapacity) and depending on actual modulation/coding used at the moment."
::= { rltEntry 9 }
limitedTotalCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum total capacity allowed by the current configuration and installed licenses.
Aggregated from the constituent carrier termination values."
::= { rltEntry 10 }
protectionStatus OBJECT-TYPE
SYNTAX INTEGER
{
unprotected(1),
protected(2),
unableToProtect(3),
unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of a protected node."
::= { rltEntry 11}
revertiveWaitToRestore OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time, in number of seconds, to wait before switching back to the preferred Tx."
::= { rltEntry 12}
revertivePreferredTx OBJECT-TYPE
SYNTAX INTEGER
{
ct11(1),
ct12(2),
ct21(3),
ct22(4),
notApplicable(5),
unknown(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The preferred carrier termination transmitter."
::= { rltEntry 13}
protectionSwitchMode OBJECT-TYPE
SYNTAX INTEGER
{
auto(1),
manual(2),
autoAndRevertive(3),
unknown(4),
notApplicable(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
".The mode in which the switching mechanism is configured"
::= { rltEntry 14}
fadeNotificationTimer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Notification is sent if fading is longer than this timer, applicable for protection."
::= { rltEntry 15}
expectedFarEndId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Expected id of far-end terminal"
::= { rltEntry 16 }
farEndIdCheck OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2),
unknown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enabling of far end id check."
::= { rltEntry 17}
cpriMode OBJECT-TYPE
SYNTAX INTEGER
{
master(1),
slave(2),
notApplicable(3),
unknown(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the mode of the CPRI front-haul product."
::= { rltEntry 18}
cpriStatus OBJECT-TYPE
SYNTAX INTEGER
{
idle(1),
waitingOnRtcSync(2),
waitingOnCpri(3),
waitingOnRxRequest(4),
waitingOnTxRequest(5),
inSync(6),
unknown(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the CPRI front-haul product."
::= { rltEntry 19}
manualSwitch OBJECT-TYPE
SYNTAX INTEGER
{
ct11(1),
ct12(2),
ct21(3),
ct22(4),
notApplicable(5),
unknown(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Manual switch of protected carrier termination transmitter."
::= { rltEntry 20}
mlhcOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operative status of multi layer header compression."
::= { rltEntry 21}
mlhcAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
off(1),
on(2),
unknown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative status of multi layer header compression."
::= { rltEntry 22}
mlhcMplsConfig OBJECT-TYPE
SYNTAX INTEGER
{
controlWord(1),
l2(2),
l3(3),
mplsOnly(4),
unknown(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MLHC/MPLS configuration."
::= { rltEntry 23}
plcOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operative status of payload compression."
::= { rltEntry 24}
plcAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
off(1),
on(2),
unknown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative status of payload compression."
::= { rltEntry 25}
---
---The definition of ct826ContinuousTable
---
ctG826ContinuousTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtG826ContinuousEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of CT G826 Performance Continuous counters entries.
The counters are reset by ctG826Reset"
::= { ctPerformance 1 }
ctG826ContinuousEntry OBJECT-TYPE
SYNTAX CtG826ContinuousEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of CT G826 Performance Continuous counters."
AUGMENTS { ifEntry }
::= { ctG826ContinuousTable 1 }
CtG826ContinuousEntry ::=
SEQUENCE {
ctG826TimeElapsed Counter32,
ctBBE Counter32,
ctBBER OCTET STRING,
ctES Counter32,
ctESR OCTET STRING,
ctSES Counter32,
ctSESR OCTET STRING,
ctBB OCTET STRING,
ctUAS Counter32,
ctG826Reset INTEGER
}
ctG826TimeElapsed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time elapsed in seconds since last PMReset"
::= { ctG826ContinuousEntry 1 }
ctBBE OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background Block Errors"
::= { ctG826ContinuousEntry 2 }
ctBBER OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background Block Errors Ratio"
::= { ctG826ContinuousEntry 3 }
ctES OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error seconds"
::= { ctG826ContinuousEntry 4 }
ctESR OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error seconds Ratio"
::= { ctG826ContinuousEntry 5 }
ctSES OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severely error seconds"
::= { ctG826ContinuousEntry 6 }
ctSESR OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severely error seconds Ratio"
::= { ctG826ContinuousEntry 7 }
ctBB OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background blocks"
::= { ctG826ContinuousEntry 8 }
ctUAS OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unavailable seconds "
::= { ctG826ContinuousEntry 9 }
ctG826Reset OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
noReset(2),
reset(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the continuous PM counters"
::= { ctG826ContinuousEntry 10 }
---
---The definition of ctG826Current15mTable
---
ctG826Current15mTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtG826Current15mEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of CT Performance G826 15 m current counters Table entries."
::= { ctPerformance 2 }
ctG826Current15mEntry OBJECT-TYPE
SYNTAX CtG826Current15mEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of CT Performance G826 15 m current Table counters."
AUGMENTS { ifEntry }
::= { ctG826Current15mTable 1 }
CtG826Current15mEntry ::=
SEQUENCE {
ctG826Current15mTimeElapsed Counter32,
ctCurrent15mBBE Counter32,
ctCurrent15mBBER OCTET STRING,
ctCurrent15mES Counter32,
ctCurrent15mESR OCTET STRING,
ctCurrent15mSES Counter32,
ctCurrent15mSESR OCTET STRING,
ctCurrent15mBB Counter32,
ctCurrent15mUAS Counter32
}
ctG826Current15mTimeElapsed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time elapsed in seconds since last PMReset"
::= { ctG826Current15mEntry 1 }
ctCurrent15mBBE OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background Block Errors"
::= { ctG826Current15mEntry 2 }
ctCurrent15mBBER OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background Block Errors Ratio"
::= { ctG826Current15mEntry 3 }
ctCurrent15mES OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error seconds"
::= { ctG826Current15mEntry 4 }
ctCurrent15mESR OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error seconds Ratio"
::= { ctG826Current15mEntry 5 }
ctCurrent15mSES OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severely error seconds"
::= { ctG826Current15mEntry 6 }
ctCurrent15mSESR OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severely error seconds Ratio"
::= { ctG826Current15mEntry 7 }
ctCurrent15mBB OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background blocks"
::= { ctG826Current15mEntry 8 }
ctCurrent15mUAS OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unavailable seconds "
::= { ctG826Current15mEntry 9 }
---
---The definition of ctG826Current24hTable
---
ctG826Current24hTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtG826Current24hEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of CT Performance G826 Current 24h counters entries."
::= { ctPerformance 3 }
ctG826Current24hEntry OBJECT-TYPE
SYNTAX CtG826Current24hEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of CT Performance G826 Current 24 h counters."
AUGMENTS { ifEntry }
::= { ctG826Current24hTable 1 }
CtG826Current24hEntry ::=
SEQUENCE {
ctG826Current24hTimeElapsed Counter32,
ctCurrent24hBBE Counter32,
ctCurrent24hBBER OCTET STRING,
ctCurrent24hES Counter32,
ctCurrent24hESR OCTET STRING,
ctCurrent24hSES Counter32,
ctCurrent24hSESR OCTET STRING,
ctCurrent24hBB Counter32,
ctCurrent24hUAS Counter32
}
ctG826Current24hTimeElapsed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time elapsed in seconds since last PMReset"
::= { ctG826Current24hEntry 1 }
ctCurrent24hBBE OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background Block Errors"
::= { ctG826Current24hEntry 2 }
ctCurrent24hBBER OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background Block Errors Ratio"
::= { ctG826Current24hEntry 3 }
ctCurrent24hES OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error seconds"
::= { ctG826Current24hEntry 4 }
ctCurrent24hESR OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error seconds Ratio"
::= { ctG826Current24hEntry 5 }
ctCurrent24hSES OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severely error seconds"
::= { ctG826Current24hEntry 6 }
ctCurrent24hSESR OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Severely error seconds Ratio"
::= { ctG826Current24hEntry 7 }
ctCurrent24hBB OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background blocks"
::= { ctG826Current24hEntry 8 }
ctCurrent24hUAS OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unavailable seconds "
::= { ctG826Current24hEntry 9 }
--
-- Conformance
--
ptRadioLinkCompliances OBJECT IDENTIFIER ::= { ptRadioLinkConformance 1 }
ptRadioLinkGroups OBJECT IDENTIFIER ::= { ptRadioLinkConformance 2 }
ptRadioLinkFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement everything."
MODULE -- This Module
MANDATORY-GROUPS { ptRadioLinkCompleteGroup}
::= { ptRadioLinkCompliances 1 }
ptRadioLinkCompleteGroup OBJECT-GROUP
OBJECTS
{
actualInputPower,
actualOutputPower,
actualRxAcm,
actualRxAcmTC,
actualSi,
actualSnir,
actualTxAcm,
actualTxAcmTC,
actualTxCapacity,
actualTxTotalCapacity,
actualXpi,
alignmentMode,
atpcFallback,
atpcFallbackTimer,
atpcFallbackOutputPower,
autoFreqSelectedChannel,
autoFreqSelection,
autoFreqSelectionStatus,
availableMaxAcm,
availableMaxCapacity,
availableMaxOutputPower,
availableMinAcm,
availableMinCapacity,
availableMinOutputPower,
availableOutputPowerType,
berAlarmThreshold,
carrierId,
channelSpacing,
cpriMode,
cpriStatus,
ctDistinguishedName,
ctCurrent15mBB,
ctCurrent15mBBE,
ctCurrent15mBBER,
ctCurrent15mES,
ctCurrent15mESR,
ctCurrent15mSES,
ctCurrent15mSESR,
ctCurrent15mUAS,
ctG826Current15mTimeElapsed,
ctCurrent24hBB,
ctCurrent24hBBE,
ctCurrent24hBBER,
ctCurrent24hES,
ctCurrent24hESR,
ctCurrent24hSES,
ctCurrent24hSESR,
ctCurrent24hUAS,
ctG826Current24hTimeElapsed,
ctBB,
ctBBE,
ctBBER,
ctES,
ctESR,
ctG826Reset,
ctSES,
ctSESR,
ctG826TimeElapsed,
ctUAS,
ctStatus,
description,
duplexConfig,
duplexDistance,
duplexType,
expectedFarEndId,
fadeNotificationTimer,
farEndIdCheck,
frameId,
frequencyStepSize,
id,
inputPowerAlarmThreshold,
licensedCapacity,
limitedTotalCapacity,
manualSwitch,
maxRxFrequency,
maxTxFrequency,
mimoStatus,
minRxFrequency,
minTxFrequency,
mlhcAdminStatus,
mlhcMplsConfig,
mlhcOperStatus,
plcAdminStatus,
plcOperStatus,
mode,
neIpAddress,
neIpv6Address,
neName,
neType,
plannedAlignmentInputPower,
polarization,
protectionStatus,
protectionSwitchMode,
referenceSec,
revertivePreferredTx,
revertiveWaitToRestore,
rfLoop,
rltDistinguishedName,
rltStatus,
rxFrequency,
selectedMaxAcm,
selectedMaxCapacity,
selectedMaxOutputPower,
selectedMinAcm,
selectedMinCapacity,
selectedMinOutputPower,
selectedOutputPowerType,
targetInputPowerFarEnd,
txAdminStatus,
txFrequency,
txOperStatus,
wantedLicensedCapacity,
xpicStatus
}
STATUS current
DESCRIPTION
"A collection of all current objects in this MIB module."
::= { ptRadioLinkGroups 1 }
END
|