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
|
SAF-IPRADIO DEFINITIONS ::= BEGIN
-- old name: SAF-IPFODU
--
-- Mib for: SAF CFIP FODU v1.3x, v1.4x and SAF CFIP FODU GE (Lumina) v1.4x
-- released after 2009.07.20
-- SAF CFIP IDU (Phoenix)
-- released after 2010.02.20
-- FreeMile
-- Version: 1.1.9
-- Date/Time: 2014.01.16 13:20
-- Version: 1.1.89
-- Date/Time: 2013.03.14 14:00
-- Version: 1.1.88
-- Date/Time: 2012.09.25 11:37
-- Version: 1.1.87
-- Date/Time: 2012.07.19 11:22
-- Version: 1.1.7
-- Date/Time: 2012.06.25 18:28
-- Version: 1.1.6
-- Date/Time: 2012.03.30 11:59
-- Version: 1.1.5
-- Date/Time: 2011.05.05 13:23
-- Version: 1.1.4
-- Date/Time: 2010.10.27 16:17
-- Version: 1.1.3
-- Date/Time: 2010.09.27 14:05
-- Version: 1.1.2
-- Date/Time: 2009.09.20 15:10
-- Customer suport: <techsupport@saftehnika.com>
-- Author: Andris Kluga
--
-- Additional modules supported by device --
-- SAF-ALARM-MIB ( OID 1.3.6.1.4.1.7571.100.118 )
--
-- History --
-- 2008.07.11 initial release 1.0.0 (originally named 1.00)
-- 2008.10.21 removed loopbacks: rf,far,ethernet (unsupported by hardware)
-- 2008.11.04 added vlan 1.3.6.1.4.1.7571.100.1.1.5.1.1.1.13,14
-- 2009.01.09 changes in comments
-- 2009.01.22 changed e1 to e1t1 to use with both etsi and ansi modems
-- 2009.03.18 temperature in degrees C (no more *10)
-- 2009.05.11 e1 mask
-- 2009.07.14 e1t1ChannelNr
-- 2010.02.17 one mib for all IP products
-- 2010.09.27 FreeMile (added qpsklimited modulation)
-- 2010.10.13 for Lumina w/o duplexer radioSide read-write
-- 2010.10.27 add comment at radioTxPower: to turn power off SET the value -100
-- 2012.03.28 apsk16 apsk32 modulations changed to qam16 qam32; location length string set to 16
-- 2012.03.30 minor changes
-- 2012.06.25 added new QAM modulations to "replace" old PSK modulations.
-- 2012.07.10 minor syntax changes.
-- 2012.09.25 reset descripotion change. 1 - cold 2 - warm.
-- 2013.03.14 minor changes for mib validation
-- 2014.01.16 add license status
IMPORTS
enterprises, NetworkAddress, IpAddress,
Counter, Gauge, TimeTicks FROM RFC1155-SMI
OBJECT-TYPE FROM RFC-1212
DisplayString, ifEntry FROM RFC1213-MIB
DateAndTime FROM SNMPv2-TC
TRAP-TYPE FROM RFC-1215;
saf OBJECT IDENTIFIER ::= { enterprises 7571 }
tehnika OBJECT IDENTIFIER ::= { saf 100 }
microwaveRadio OBJECT IDENTIFIER ::= { tehnika 1}
pointToPoint OBJECT IDENTIFIER ::= { microwaveRadio 1 }
safip OBJECT IDENTIFIER ::= { pointToPoint 5 }
ipRadio OBJECT IDENTIFIER ::= { safip 1 }
ipRadioCfg OBJECT IDENTIFIER ::= { ipRadio 1 }
ipRadioMgmt OBJECT IDENTIFIER ::= { ipRadio 2 }
ipRadioStat OBJECT IDENTIFIER ::= { ipRadio 3 }
ipRadioCfgGeneral OBJECT IDENTIFIER ::= { ipRadioCfg 1 }
ipRadioCfgNetwork OBJECT IDENTIFIER ::= { ipRadioCfg 2 }
ipRadioStatEth OBJECT IDENTIFIER ::= { ipRadioStat 2 }
modemStatistics OBJECT IDENTIFIER ::= { ipRadioStat 4 } -- 2011.05.05
product OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name of the model."
::= { ipRadioCfgGeneral 1 }
description OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the model."
::= { ipRadioCfgGeneral 2 }
hostname OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
ACCESS read-write
STATUS mandatory
DESCRIPTION "The name of the host."
::= { ipRadioCfgGeneral 3 }
sysDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
ACCESS read-write
STATUS mandatory
DESCRIPTION "Current date and time set.
For SET tenths of seconds ignored."
::= { ipRadioCfgGeneral 4 }
sysTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Unit temperature in degrees by Celsius.
NB - sw before 2009.03.18 shows in *10 degrees"
::= { ipRadioCfgGeneral 5 }
license OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION "To set license information. Read allways 'OK'."
::= { ipRadioCfgGeneral 6 }
licenseMask OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Read license mask."
::= { ipRadioCfgGeneral 7 }
licenseUpdateStatus OBJECT-TYPE
-- starting from v 1.64.25
SYNTAX INTEGER {
ok(1),
error(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Status of last license update operation
by setting license using snmp."
::= { ipRadioCfgGeneral 8 }
writeConfig OBJECT-TYPE
SYNTAX INTEGER
ACCESS write-only
STATUS mandatory
DESCRIPTION
"Write Config"
::= { ipRadioMgmt 1 }
restartcpu OBJECT-TYPE
SYNTAX INTEGER
ACCESS write-only
STATUS mandatory
DESCRIPTION "Restart of Mng CPU. Values:
1 - 'cold' restart;
3 - sw"
::= { ipRadioMgmt 2 }
loopbacks OBJECT-TYPE
SYNTAX INTEGER {
error(1),
off(2),
-- rf(3), 2008.10.21
if(4),
modem(5),
-- far(6), 2008.10.21
-- ethernet(7), 2008.10.21
-- e1t1-1(8), use tributary mask
-- e1t1-2(9),
-- e1t1-3(10),
-- e1t1-4(11),
multi(12)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Set loopback for 1 minute. value error(1) is not writable.
Status of loopbacks.
Values:
1 - 'error' (not writable);
2 - 'off';
3 - 'rf' (radio frequency loopback); N/A 2008.10.21
4 - 'if' (intermediate frequency loopback);
5 - 'modem' (modem loopback);
6 - 'far' (far end loopback); N/A 2008.10.21
7 - 'ethernet' (Ethernet loopback); N/A 2008.10.21
8 - 'e1t1-1' (E1/T1 channel 1 loopback); N/A from firmware 1.51
9 - 'e1t1-2' (E1/T1 channel 2 loopback); N/A from firmware 1.51
10 - 'e1t1-3' (E1/T1 channel 3 loopback); N/A from firmware 1.51
11 - 'e1t1-4' (E1/T1 channel 4 loopback); N/A from firmware 1.51
12 - 'multi' (E1/T1 multi - look channel tributary mask)"
::= { ipRadioMgmt 3 }
loopback-tributary-mask OBJECT-TYPE
-- starting from firmware version 1.51
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Loopback mask for E1/T1 channels"
::= { ipRadioMgmt 4 }
--loopbacks-text OBJECT-TYPE
-- starting from firmware version 1.51
-- SYNTAX DisplayString (SIZE(0..255))
-- ACCESS read-only
-- STATUS mandatory
-- DESCRIPTION "This string gives the same information as loopbacks and loopback-tributary-mask
-- as a text string"
-- ::= { ipRadioMgmt 5 }
localIp OBJECT-TYPE
-- added 2008.09.22
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "IPv4 Ethernet address of the local
unit in a number format(XXX.XXX.XXX.XXX)"
::= { ipRadioCfgNetwork 1 }
localIpMask OBJECT-TYPE
-- added 2008.09.22
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "IPv4 Ethernet mask of the local
unit in a number format (XXX.XXX.XXX.XXX)"
::= { ipRadioCfgNetwork 2 }
remoteIp OBJECT-TYPE
-- added 2008.09.22
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "IPv4 Ethernet address of the remote
unit in a number format (XXX.XXX.XXX.XXX)."
::= { ipRadioCfgNetwork 3 }
--
radioTable OBJECT-TYPE
SYNTAX SEQUENCE OF RadioEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Radio table."
::= { ipRadioCfgGeneral 10 }
radioEntry OBJECT-TYPE
SYNTAX RadioEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing objects in radio table."
INDEX { radioIndex }
::= { radioTable 1 }
RadioEntry ::=
SEQUENCE {
radioIndex
INTEGER,
radioGenStatus
INTEGER,
radioSide
INTEGER,
radioTxPower
INTEGER,
radioRxLevel
INTEGER,
radioDuplexShift
INTEGER,
radioLoopback
INTEGER,
radioTxMute
INTEGER,
radioTxFrequency
INTEGER,
radioRxFrequency
INTEGER
}
radioIndex OBJECT-TYPE
SYNTAX INTEGER {
local(1),
remote(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each radio.
Its value represents UNIT:
1 - for 'local';
2 - for 'remote'"
::= { radioEntry 1 }
radioGenStatus OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A General status of each radio:
1 - 'OK';
2 - 'error'"
::= { radioEntry 2 }
radioSide OBJECT-TYPE
SYNTAX INTEGER{
high(1),
low(2)
}
ACCESS read-write
-- warning!!! This value writable only on devices w/o hw duplexer.
-- In all other cases this is read-only.
STATUS mandatory
DESCRIPTION
"Side for duplex communication."
::= { radioEntry 3 }
radioTxPower OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Tx power of radio transmitter in dBm."
-- to turn power off SET the value -100
::= { radioEntry 4 }
radioRxLevel OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Received signal level in dBm."
::= { radioEntry 5 }
radioDuplexShift OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Utilized duplex shift in KHz."
::= { radioEntry 6 }
radioLoopback OBJECT-TYPE
SYNTAX INTEGER{
on(1),
off(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Radio loopback on/off. To set use
loopback command."
::= { radioEntry 7 }
radioTxMute OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Status of 'Tx mute':
1 - Tx is muted;
2 - Tx is not muted."
::= { radioEntry 8 }
radioTxFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Tx frequency in kHz."
::= { radioEntry 9 }
radioRxFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Rx frequency in kHz."
::= { radioEntry 10 }
--
-- ATPC
aTPCTable OBJECT-TYPE
SYNTAX SEQUENCE OF ATPCEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ATPC table"
::= { ipRadioCfgGeneral 11 }
aTPCEntry OBJECT-TYPE
SYNTAX ATPCEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing objects in ATPC table."
INDEX { atpcIndex }
::= { aTPCTable 1 }
ATPCEntry ::=
SEQUENCE {
atpcIndex
INTEGER,
atpcEnabled
INTEGER,
atpcTxPowerCorrection
INTEGER
-- atpcTxPowerWithCorrection
-- INTEGER
}
atpcIndex OBJECT-TYPE
SYNTAX INTEGER {
local(1),
remote(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Its value represents UNIT
1 for 'local';
2 for 'remote'."
::= { aTPCEntry 1 }
atpcEnabled OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "ATPC status:
1 for 'on';
2 for 'off'."
::= { aTPCEntry 2 }
atpcTxPowerCorrection OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "ATPC Tx power correction in dBm."
::= { aTPCEntry 3 }
--atpcTxPowerWithCorrection OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-only
-- STATUS mandatory
-- DESCRIPTION "Tx power together with ATPC correction in dBm."
-- ::= { aTPCEntry 4 }
-- modem
modemTable OBJECT-TYPE
SYNTAX SEQUENCE OF ModemEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"CFIP modem table."
::= { ipRadioCfgGeneral 12 }
modemEntry OBJECT-TYPE
SYNTAX ModemEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing objects in modem table."
INDEX { modemIndex }
::= { modemTable 1 }
ModemEntry ::=
SEQUENCE {
modemIndex
INTEGER,
modemGeneralStatus
INTEGER,
modemBandwith
INTEGER,
modemE1T1Channels
INTEGER,
modemModulation
INTEGER,
modemTotalCapacity
INTEGER,
modemEthernetCapacity
INTEGER,
modemAcqStatus
INTEGER,
modemLastAcqError
INTEGER,
modemRadialMSE
INTEGER,
modemInternalAGCgain
INTEGER,
modemCarrierOffset
INTEGER,
modemSymbolRateTx
INTEGER,
modemSymbolRateRx
INTEGER,
modemLDPCdecoderStress
DisplayString,
modemACMengine
INTEGER,
modemACMmodulationMin
INTEGER,
modemACMtotalCapacity
INTEGER,
modemACMethernetCapacity
INTEGER,
modemStandard -- only starting from v 2.20
INTEGER,
modemE1T1ChannelMask
INTEGER,
modemACMmodulationMax
INTEGER,
modemRowStatus
INTEGER
}
modemIndex OBJECT-TYPE
SYNTAX INTEGER {
local(1),
remote(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value represents UNIT:
1 for local;
2 for remote."
::= { modemEntry 1 }
modemGeneralStatus OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "A General status of each modem:
1 - 'OK';
2 - 'error'"
::= { modemEntry 2 }
modemBandwith OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Modem bandwidth set in KHz."
::= { modemEntry 3 }
modemE1T1Channels OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Number of E1 or T1 channels set."
::= { modemEntry 4 }
modemModulation OBJECT-TYPE
SYNTAX INTEGER {
qpsk(1),
psk8(2),
qam16(3),
qam32(4),
qam64(5),
qam128(6),
qam256(7),
qpsklimited(8),
wqpsk(9),
wpsk8(10),
wqam16(11),
wqam32(12),
wqam64(13),
wqam128(14),
wqam256(15),
acmqpsk(17),
acmpsk8(18),
acmqam16(19),
acmqam32(20),
acmqam64(21),
acmqam128(22),
acmqam256(23),
acmwqpsk(25),
acmwpsk8(26),
acmwqam16(27),
acmwqam32(28),
acmwqam64(29),
acmwqam128(30),
acmwqam256(31),
qam4(33),
qam8(34),
qam4limited(40),
wqam4(41),
wqam8(42),
acmqam4(49),
acmqam8(50),
acmwqam4(57),
acmwqam8(58)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Modem modulation set.
Modulution values are
following: QPSK - 1, 8PSK - 2, 16QAM - 3,
32QAM - 4, 64QAM - 5, 128QAM - 6,
256QAM - 7.
The combination of wide band and ACM calculates as
(modulation + 8*is_wide + 16*is_ACM).
Note: not all of listed modulations supported by hardware.
Plese check manual."
::= { modemEntry 5 }
modemTotalCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total capacity set in Kbps."
::= { modemEntry 6 }
modemEthernetCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Ethernet capacity set in Kbps."
::= { modemEntry 7 }
modemAcqStatus OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION " "
::= { modemEntry 8 }
modemLastAcqError OBJECT-TYPE
SYNTAX INTEGER{
success(1),
erragc(2),
errtiming(3),
errfreqsweep(4),
errmse(5),
errbit(6),
errservice(7),
errblind(8),
errtimeout(9),
errstopped(10),
errfatal(11)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION " "
::= { modemEntry 9 }
modemRadialMSE OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Radial mean square error value *10 in dB.
Radial MSE is a method for estimating the
signal to noise ratio. ACM engine uses
normalized MSE, which is the inverse of SNR.
It is calculated by dividing the estimated
MSE level with the energy of the received
constellation. Radial MSE peak value threshold
is dependent on modulation used and LDPC
code rate.
In case of QPSK it is -8 dB (-10.5 for 'wide'),
16APSK - -13 dB (-18 for 'wide') and
32APSK - -15.5 dB (-21.5 for 'wide'). If the
value trespasses this threshold, BER at the
output of LDPC decoder will reach the value
of 1.0e-06."
::= { modemEntry 10 }
modemInternalAGCgain OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION " dBm "
::= { modemEntry 11 }
modemCarrierOffset OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Carrier frequency offset in Hz."
::= { modemEntry 12 }
modemSymbolRateTx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION " kHz "
::= { modemEntry 13 }
modemSymbolRateRx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION " kHz "
::= { modemEntry 14 }
modemLDPCdecoderStress OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION "The load of LDPC (low-density
parity-check code) decoder.
The LDPC is monitored for the number
of errors being corrected on the input
of LDPC decoder.
LDPC stress value thresholds @ BER 1.0e-06:
- for standard settings ~4.0e-02;
- for 'wide' option ~ 1.0e-03.
As long as LDPC stress value is under the
specified thresholds, amount of errors (and
BER itself) on the output of LDPC remains
at zero level."
::= { modemEntry 15 }
modemACMengine OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Status of ACM engine. When 'on',
value '1' is shown, when 'off' - value is '2'."
::= { modemEntry 16 }
modemACMmodulationMin OBJECT-TYPE
SYNTAX INTEGER {
qpsk(1),
psk8(2),
qam16(3),
qam32(4),
qam64(5),
qam128(6),
qam256(7),
qpsklimited(8),
wqpsk(9),
wpsk8(10),
wqam16(11),
wqam32(12),
wqam64(13),
wqam128(14),
wqam256(15),
acmqpsk(17),
acmpsk8(18),
acmqam16(19),
acmqam32(20),
acmqam64(21),
acmqam128(22),
acmqam256(23),
acmwqpsk(25),
acmwpsk8(26),
acmwqam16(27),
acmwqam32(28),
acmwqam64(29),
acmwqam128(30),
acmwqam256(31),
qam4(33),
qam8(34),
qam4limited(40),
wqam4(41),
wqam8(42),
acmqam4(49),
acmqam8(50),
acmwqam4(57),
acmwqam8(58)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Modem modulation set.
Modulution values are
following: QPSK - 1, 8PSK - 2, 16QAM - 3,
32QAM - 4, 64QAM - 5, 128QAM - 6,
256QAM - 7.
The combination of wide band and ACM calculates as
(modulation + 8*is_wide + 16*is_ACM).
Note: not all of listed modulations supported by hardware.
Plese check manual."
::= { modemEntry 17}
--modemACMmodulationMin OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-only
-- STATUS mandatory
-- DESCRIPTION "Modulation set by ACM."
-- ::= { modemEntry 17 }
modemACMtotalCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total capacity in Kbps set by ACM."
::= { modemEntry 18 }
modemACMethernetCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Ethernet capacity in Kbps set by ACM."
::= { modemEntry 19 }
modemStandard OBJECT-TYPE -- from version 1.20
SYNTAX INTEGER{
etsi(1),
ansi(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Modem operational standard ETSI or ANSI"
::= { modemEntry 20 }
modemE1T1ChannelMask OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "E1 or T1 channel mask 0x00 - 0x0f"
::= { modemEntry 21 }
modemACMmodulationMax OBJECT-TYPE
SYNTAX INTEGER {
qpsk(1),
psk8(2),
qam16(3),
qam32(4),
qam64(5),
qam128(6),
qam256(7),
qpsklimited(8),
wqpsk(9),
wpsk8(10),
wqam16(11),
wqam32(12),
wqam64(13),
wqam128(14),
wqam256(15),
acmqpsk(17),
acmpsk8(18),
acmqam16(19),
acmqam32(20),
acmqam64(21),
acmqam128(22),
acmqam256(23),
acmwqpsk(25),
acmwpsk8(26),
acmwqam16(27),
acmwqam32(28),
acmwqam64(29),
acmwqam128(30),
acmwqam256(31),
qam4(33),
qam8(34),
qam4limited(40),
wqam4(41),
wqam8(42),
acmqam4(49),
acmqam8(50),
acmwqam4(57),
acmwqam8(58)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Modem modulation set.
Modulution values are
following: QPSK - 1, 8PSK - 2, 16QAM - 3,
32QAM - 4, 64QAM - 5, 128QAM - 6,
256QAM - 7.
The combination of wide band and ACM calculates as
(modulation + 8*is_wide + 16*is_ACM).
Note: as PSK modulations are now physicaly deprecated,
theese are replased with QAM, so for new QAM modulations
there are modificatior +32.
Note: not all of listed modulations supported by hardware.
Plese check manual."
::= { modemEntry 22}
modemRowStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notReady(3),
undo(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Row status - to update written data for
modemBandwith,
modemACMmodulationMin,
modemACMmodulationMax,
modemE1T1ChannelMask. "
::= { modemEntry 23 }
--modemACMprofileTx OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-only
-- STATUS optional
-- DESCRIPTION "Tx ACM profile."
-- ::= { modemEntry 21 }
--modemACMprofileRx OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-only
-- STATUS optional
-- DESCRIPTION "Rx ACM profile."
-- ::= { modemEntry 22 }
--modemRxFrequencyOffset OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-only
-- STATUS optional
-- DESCRIPTION "Rx frequency offset in KHz."
-- ::= { modemEntry 23 }
--modemTxFrequencyOffset OBJECT-TYPE
-- SYNTAX INTEGER
-- ACCESS read-only
-- STATUS optional
-- DESCRIPTION "Tx frequency offset in KHz."
-- ::= { modemEntry 24 }
-- vlan 2008.10.04
vlansEnabled OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2),
reset(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"unit temperature *10 degrees Celsius"
::= { ipRadioCfgGeneral 13 }
--
vlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Vlan table"
::= { ipRadioCfgGeneral 14 }
vlanEntry OBJECT-TYPE
SYNTAX VlanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"entry containing vlan objects"
AUGMENTS { ifEntry }
::= { vlanTable 1 }
VlanEntry ::=
SEQUENCE {
vlanNumber INTEGER,
vlanPortType INTEGER,
vlanPortmap INTEGER,
vlanFid INTEGER,
vlanCfgStat INTEGER,
vlanRowStatus INTEGER
}
vlanNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A unique value for each vlan. "
::= { vlanEntry 1 }
vlanPortType OBJECT-TYPE
SYNTAX INTEGER {
management(1),
none(2),
traffic(3),
endpoint(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"VLAN port type
management, traffic or endpoint
"
::= { vlanEntry 2 }
vlanPortmap OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"display port bindings
bitfield 111(bin)
"
::= { vlanEntry 3 }
vlanFid OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS optional
DESCRIPTION
"a filtering identifier (assigned automagically)"
::= { vlanEntry 4 }
vlanCfgStat OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
clear(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"enable/disable vlan # or clear row data"
::= { vlanEntry 5 }
vlanRowStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notReady(3),
undo(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Row status (execute configuration on active)
Changing any table value sets this value into
state notReady. To update row status write value
active(1) into this variable."
::= { vlanEntry 6 }
--
-- Eth
--
ethRXTruncatedFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of truncated received frames since
unit start or statistics reset. "
::= { ipRadioStatEth 1 }
ethRXLongEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames having byte count greater
than MAXIMUM FRAME SIZE parameter (1518,
1536 or 1916 bytes) since unit start or
statistics reset."
::= { ipRadioStatEth 2 }
ethRXVlanTagsDetected OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of VLAN Tags detected since unit
start or statistics reset."
::= { ipRadioStatEth 3 }
ethRXUnsupOpcodes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames recognized as control frames
but contained an Unknown Opcode since unit
start or statistics reset."
::= { ipRadioStatEth 4 }
ethRXPauseFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames received as control frames
with valid PAUSE opcodes since unit start or
statistics reset."
::= { ipRadioStatEth 5 }
ethRXControlFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames received as control frames
since unit start or statistics reset."
::= { ipRadioStatEth 6 }
ethRXDribleNibbles OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates that following the end of the
packet additional 1 to 7 bits are received.
A single nibble, named the dribble nibble,
is formed but not sent to the system;"
::= { ipRadioStatEth 7 }
ethRXBroadcasts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of packets, which destination
address contained broadcast address,
since unit start or statiistics reset."
::= { ipRadioStatEth 8 }
ethRXMulticasts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of packets, which destination
address contained multicast address since
unit start or statistics reset."
::= { ipRadioStatEth 9 }
ethRXDones OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Reception of packets successfully
completed. Number of completed packets
since unit start or statistics reset."
::= { ipRadioStatEth 10 }
ethRXOutOfRangeErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames where Type/Length field
larger than 1518 (Type Field) bytes since
unit start or statistics reset."
::= { ipRadioStatEth 11 }
ethRXLengthCheckerrorsErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames where frame length field
in the packet does not match the actual data
byte length and is not a Type Field since
unit start or statistics reset."
::= { ipRadioStatEth 12 }
ethRXCRCErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames where frame CRC do not
match the internally generated CRC since
unit start or statistics reset"
::= { ipRadioStatEth 13 }
ethRXCodeErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of packets where one or more nibbles
are signalled as errors during reception of
the packet since unit start or statistics
reset."
::= { ipRadioStatEth 14 }
ethRXFalseCarrierErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates that following the last receive
statistics vector, a false carrier was
detected, noted and reported with this the
next receive statistics. The false carrier
is not associated with this packet. False
carrier is activated on the receive channel
that does not result in a packet receive
attempt being made;"
::= { ipRadioStatEth 15 }
ethRXDvEvent OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of the last receive (Rx) events seen
being too short to be valid packets since the
last unit (re)start or purification of
statistics."
::= { ipRadioStatEth 16 }
ethRXPrevPktDropped OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates that since the last receive (Rx),
a packet is dropped (i.e. interframe gap
too small)."
::= { ipRadioStatEth 17 }
ethRXByteCounterHi OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total number of bytes received (Rx) on the
wire since the last unit (re)start or
purification of statistics, not counting
collided bytes (bits 31:0)."
::= { ipRadioStatEth 18 }
ethRXByteCounterLow OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total number of bytes received (Rx) on the
wire since the last unit (re)start or
purification of statistics, not counting
collided bytes (bits 62:32)."
::= { ipRadioStatEth 19 }
--Counter64 data type is unsupported by SMIv1. Not expected
--ethRXByteCounter64b OBJECT-TYPE
-- SYNTAX Counter64
-- ACCESS read-only
-- STATUS optional
-- DESCRIPTION "Total number of bytes received (Rx) on the
-- wire since the last unit (re)start or
-- purification of statistics, not counting
-- collided bytes."
-- ::= { ipRadioStatEth 20 }
ethTXVlanTags OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of VLAN tagged Tx packets since the
last unit (re)start or purification of
statistics. 32-bit counter."
::= { ipRadioStatEth 21 }
ethTXBackpresEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of times Tx carrier-sense-method
backpressure was previously applied since the
last unit (re)start or purification of
statistics."
::= { ipRadioStatEth 22 }
ethTXPauseFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames transmitted (Tx) as control
frames with valid PAUSE opcodes since the last
unit (re)start or purification of statistics."
::= { ipRadioStatEth 23 }
ethTXControlFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames transmitted (Tx) as control
frames since the last unit (re)start or
purification of statistics."
::= { ipRadioStatEth 24 }
ethTXWireByteCounterHi OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total number of bytes transmitted (Tx)
on the wire since the last unit (re)start
or purification of statistics, including
all bytes from collided attempts
(bits 31:0)."
::= { ipRadioStatEth 25 }
ethTXWireByteCounterLow OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total number of bytes transmitted (Tx)
on the wire since the last unit (re)start
or purification of statistics, including
all bytes from collided attempts
(bits 62:32)."
::= { ipRadioStatEth 26 }
--Counter64 data type is unsupported by SMIv1. Not expected
--ethTXWireByteCounter64b OBJECT-TYPE
-- SYNTAX Counter64
-- ACCESS read-only
-- STATUS optional
-- DESCRIPTION "Total number of bytes transmitted (Tx)
-- on the wire since the last unit (re)start
-- or purification of statistics, including
-- all bytes from collided attempts."
-- ::= { ipRadioStatEth 27 }
ethTXUnderruns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of underruns occured during frame
transmission (Tx) since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 28 }
ethTXGiants OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx frames having byte count
greater than the MAXIMUM FRAME SIZE
parameter (1516, 1536 or 1916 bytes)
since the last unit (re)start or
purification of statistics."
::= { ipRadioStatEth 29 }
ethTXLateCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx collisions occurred beyond
the collision window (512 bit times) since
the last unit (re)start or purification
of statistics."
::= { ipRadioStatEth 30 }
ethTXMaxCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx packets aborted after number
of collisions exceeded the RETRANSMISSION
MAXIMUM parameter since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 31 }
ethTXExcessiveDefers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx packets deferred in excess
of 6,071 nibble times in 100 Mbps mode,
or 24,287 bit-times in 10 Mbps mode since
the last unit (re)start or purification
of statistics."
::= { ipRadioStatEth 32 }
ethTXNonExcessiveDefers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx packets deferred for at
least one attempt, but less than an
excessive defer since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 33 }
ethTXBroadcasts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx packets since the last unit
(re)start or purification of statistics,
which destination address contained
broadcast address."
::= { ipRadioStatEth 34 }
ethTXMulticasts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx packets since the last unit
(re)start or purification of statistics,
which destination address contained
multicast address."
::= { ipRadioStatEth 35 }
ethTXDones OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of packets successfully transmitted
(Tx) since the last unit (re)start or
purification of statistics."
::= { ipRadioStatEth 36 }
-- ethTXOutOfRangeErrors OBJECT-TYPE
-- SYNTAX Counter
-- ACCESS read-only
-- STATUS obsolete
-- DESCRIPTION "Number of Tx frames since the last unit
-- (re)start or purification of statistics
-- where Type/Length field larger than 1518
-- (Type Field) bytes."
-- ::= { ipRadioStatEth 37 }
ethTXLengthCheckErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx frames since the last unit
(re)start or purification of statistics,
where length field in the packet does not
match the actual data byte length and is
not a Type Field"
::= { ipRadioStatEth 38 }
ethTXCRCErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of Tx frames since the last unit
(re)start or purification of statistics,
where CRC does not match the internally
generated CRC."
::= { ipRadioStatEth 39 }
ethTXCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of collisions the current packet
incurred during transmission (Tx) attempts.
Note: Bits 19 through 16 are the collision
count on any successfully transmitted packet
and as such will not show the possible maximum
count of 16 collisions."
::= { ipRadioStatEth 40 }
ethTXByteCounterHi OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total count of bytes transmitted (Tx)
on the wire not including collided bytes
(bits 31:0) since the last unit (re)start
or purification of statistics."
::= { ipRadioStatEth 41 }
ethTXByteCounterLow OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total count of bytes transmitted (Tx)
on the wire not including collided bytes
(bits 62:32) since the last unit (re)start
or purification of statistics."
::= { ipRadioStatEth 42 }
--Counter64 data type is unsupported by SMIv1. Not expected
--ethTXByteCounter64b OBJECT-TYPE
-- SYNTAX Counter64
-- ACCESS read-only
-- STATUS optional
-- DESCRIPTION "Total count of bytes transmitted (Tx) on
-- the wire not including collided bytes
-- since the last unit (re)start or
-- purification of statistics."
-- ::= { ipRadioStatEth 43 }
ethGFPFCSErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of generic framing procedure (GFP)
frames with CRC errors received by the
de-encapsulation block since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 44 }
ethGFPCHECErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of generic framing procedure (GFP)
frames with CHEC errors received by the
de-encapsulation block since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 45 }
ethGFPDropedFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of generic framing procedure (GFP)
frames that were dropped in the de-encapsulation
block since the last unit (re)start or
purification of statistics."
::= { ipRadioStatEth 46 }
ethGFPDelineationErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of 'lost of synchronization' events since
the last unit (re)start or purification of
statistics."
::= { ipRadioStatEth 47 }
ethQOSRXQ1Frames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames received on Q1 since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 48 }
ethQOSRXQ1Dropped OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames dropped on Q1 since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 49 }
ethQOSRXQ2Frames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames received on Q2 since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 50 }
ethQOSRXQ2Dropped OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames dropped on Q2 since the last unit
(re)start or purification of statistics."
::= { ipRadioStatEth 51 }
ethQOSTXFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames passed through TX FIFO since the
last unit (re)start or purification of statistics."
::= { ipRadioStatEth 52 }
ethQOSTXDropped OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of frames dropped in TX FIFO since the last
unit (re)start or purification of statistics."
::= { ipRadioStatEth 53 }
e1t1StatTable OBJECT-TYPE
SYNTAX SEQUENCE OF E1t1StatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"E1 (T1) status Table."
::= { ipRadioStat 3 }
e1t1StatEntry OBJECT-TYPE
SYNTAX E1t1StatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing objects in E1 (T1) table"
AUGMENTS { ifEntry }
::= { e1t1StatTable 1 }
E1t1StatEntry ::=
SEQUENCE {
e1t1LOS INTEGER,
e1t1AIS INTEGER,
e1t1ChannelNr INTEGER -- 2009.07.13.
}
e1t1LOS OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"if signal loss present"
::= { e1t1StatEntry 1 }
e1t1AIS OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"if AIS present"
::= { e1t1StatEntry 2 }
e1t1ChannelNr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"e1 channel number (it is not associated with interface number - ifEntry)"
::= { e1t1StatEntry 3 }
--modemStatistics
-- Modem_Count_Time
modemCountTime OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Count time in seconds"
::= { modemStatistics 1 }
modemErroredBlock OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Errored block"
::= { modemStatistics 2 }
modemErroredSecond OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Errored second"
::= { modemStatistics 3 }
modemSeverelyErroredSecond OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Severely errored second"
::= { modemStatistics 4 }
modemBackgroundBlockErrror OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Background Block Error"
::= { modemStatistics 5 }
modemTotalBlockNumber OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Total Block Number"
::= { modemStatistics 6 }
modemErroredSecondRatio OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Errored Second Ratio"
::= { modemStatistics 7 }
modemSeverelyErroredSecondRatio OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Severely Errored Second Ratio"
::= { modemStatistics 8 }
modemBackgroundBlockErrorRatio OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Background Block Error Ratio"
::= { modemStatistics 9 }
modemUptime OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Uptime (s)"
::= { modemStatistics 10 }
modemUnavailtime OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "Unavailtime (s)"
::= { modemStatistics 11 }
--
END
|