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
|
UHP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Integer32, enterprises, Counter32, Gauge32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC;
uhpV32 MODULE-IDENTITY
LAST-UPDATED "201811021200Z"
ORGANIZATION "UHP Networks"
CONTACT-INFO "www.uhp.net"
DESCRIPTION "UHP terminal MIB"
REVISION "201810251200Z"
DESCRIPTION "UHP terminal MIB"
::= { uhp 22 }
uhp OBJECT IDENTIFIER ::= { enterprises 8000 }
control OBJECT IDENTIFIER ::= { uhpV32 1 }
demod1 OBJECT IDENTIFIER ::= { uhpV32 2 }
demod2 OBJECT IDENTIFIER ::= { uhpV32 3 }
modulator OBJECT IDENTIFIER ::= { uhpV32 4 }
tdma OBJECT IDENTIFIER ::= { uhpV32 5 }
router OBJECT IDENTIFIER ::= { uhpV32 6 }
shaper OBJECT IDENTIFIER ::= { uhpV32 7 }
system OBJECT IDENTIFIER ::= { uhpV32 8 }
mobile OBJECT IDENTIFIER ::= { uhpV32 9 }
-- Control
saveConfig OBJECT-TYPE
SYNTAX INTEGER {
nosave(0),
save0(1),
save1(2),
save2(3),
save3(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Save current profile to EEPROM profile 0-3.
Profile 0 is automativally loaded on restart by default."
::= { control 1 }
reboot OBJECT-TYPE
SYNTAX INTEGER {
noreboot(1),
reboot(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reboot device immediately."
::= { control 2 }
command OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Issue a command to command-line interface."
::= { control 3 }
configEdit OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Profile or global config editing and viewing
Complex input format, only for manufacturer."
::= { control 4 }
profile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Get current profile or run specified profile (1-8)."
::= { control 5 }
-- Demod1
lbandSNR1 OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal to noise ratio at L-band demodulator input
measured in 0.1 dB units."
::= { demod1 1 }
lbandOffset1 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frequency offset value in KHz between PLL frequency and
carrier real frequency."
::= { demod1 2 }
inLvl1 OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current input level x -10dBm"
::= { demod1 3 }
inBytes1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Demodulator1 traffic in bytes
(indexed by ACM channel)"
::= { demod1 4 }
-- Demod2
lbandSNR2 OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal to noise ratio at L-band demodulator input
measured in 0.1 dB units."
::= { demod2 1 }
lbandOffset2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frequency offset value in KHz between PLL frequency and
carrier real frequency."
::= { demod2 2 }
inLvl2 OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current input level x -10dBm"
::= { demod2 3 }
inBytes2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Demodulator2 traffic in bytes
(indexed by ACM channel)"
::= { demod2 4 }
-- Modulator
prioAll OBJECT IDENTIFIER ::= { modulator 1 }
outBytesA OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator traffic in bytes
(indexed by ACM channel)"
::= { prioAll 1 }
outPktsA OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator traffic in packets
(indexed by ACM channel)"
::= { prioAll 2 }
dropsA OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator dropped packets
(indexed by ACM channel)"
::= { prioAll 3 }
queueLenBA OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator queue length in bytes
(indexed by ACM channel)"
::= { prioAll 4 }
queueLenPA OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator queue length in packets
(indexed by ACM channel)"
::= { prioAll 5 }
numStations OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of stations per ACM channel
(indexed by ACM channel)"
::= { prioAll 6 }
prioP1 OBJECT IDENTIFIER ::= { modulator 2 }
outBytesP1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P1(Low) priority traffic in bytes
(indexed by ACM channel)"
::= { prioP1 1 }
outPktsP1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P1(Low) priority traffic in packets
(indexed by ACM channel)"
::= { prioP1 2 }
dropsP1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P1(Low) priority dropped packets
(indexed by ACM channel)"
::= { prioP1 3 }
queueLenBP1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P1(Low) priority queue length in bytes
(indexed by ACM channel)"
::= { prioP1 4 }
queueLenPP1 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P1(Low) priority queue length in packets
(indexed by ACM channel)"
::= { prioP1 5 }
prioP4 OBJECT IDENTIFIER ::= { modulator 3 }
outBytesP4 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P4(Med) priority traffic in bytes
(indexed by ACM channel)"
::= { prioP4 1 }
outPktsP4 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P4(Med) priority traffic in packets
(indexed by ACM channel)"
::= { prioP4 2 }
dropsP4 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P4(Med) priority dropped packets
(indexed by ACM channel)"
::= { prioP4 3 }
queueLenBP4 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P4(Med) priority queue length in bytes
(indexed by ACM channel)"
::= { prioP4 4 }
queueLenPP4 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P4(Med) priority queue length in packets
(indexed by ACM channel)"
::= { prioP4 5 }
prioP7 OBJECT IDENTIFIER ::= { modulator 4 }
outBytesP7 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P7(High) priority traffic in bytes
(indexed by ACM channel)"
::= { prioP7 1 }
outPktsP7 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P7(High) priority traffic in packets
(indexed by ACM channel)"
::= { prioP7 2 }
dropsP7 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P7(High) priority dropped packets
(indexed by ACM channel)"
::= { prioP7 3 }
queueLenBP7 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P7(High) priority queue length in bytes
(indexed by ACM channel)"
::= { prioP7 4 }
queueLenPP7 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P7(High) priority queue length in packets
(indexed by ACM channel)"
::= { prioP7 5 }
prioCtrl OBJECT IDENTIFIER ::= { modulator 5 }
outBytesC OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator control traffic in bytes
(index 1 only)"
::= { prioCtrl 1 }
outPktsC OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator control traffic in packets
(index 1 only)"
::= { prioCtrl 2 }
level OBJECT IDENTIFIER ::= { modulator 6 }
txLevel OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current TX level x -10dBm"
::= { level 1 }
txLevelDelta OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current TX level delta from set level x -10dBm"
::= { level 2 }
txMaxLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max TLC level x -10dBm"
::= { level 3 }
prioP2 OBJECT IDENTIFIER ::= { modulator 7 }
outBytesP2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P2 priority traffic in bytes
(indexed by ACM channel)"
::= { prioP2 1 }
outPktsP2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P2 priority traffic in packets
(indexed by ACM channel)"
::= { prioP2 2 }
dropsP2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P2 priority dropped packets
(indexed by ACM channel)"
::= { prioP2 3 }
queueLenBP2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P2 priority queue length in bytes
(indexed by ACM channel)"
::= { prioP2 4 }
queueLenPP2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P2 priority queue length in packets
(indexed by ACM channel)"
::= { prioP2 5 }
prioP3 OBJECT IDENTIFIER ::= { modulator 8 }
outBytesP3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P3 priority traffic in bytes
(indexed by ACM channel)"
::= { prioP3 1 }
outPktsP3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P3 priority traffic in packets
(indexed by ACM channel)"
::= { prioP3 2 }
dropsP3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P3 priority dropped packets
(indexed by ACM channel)"
::= { prioP3 3 }
queueLenBP3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P3 priority queue length in bytes
(indexed by ACM channel)"
::= { prioP3 4 }
queueLenPP3 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P3 priority queue length in packets
(indexed by ACM channel)"
::= { prioP3 5 }
prioP5 OBJECT IDENTIFIER ::= { modulator 9 }
outBytesP5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P5 priority traffic in bytes
(indexed by ACM channel)"
::= { prioP5 1 }
outPktsP5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P5 priority traffic in packets
(indexed by ACM channel)"
::= { prioP5 2 }
dropsP5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P5 priority dropped packets
(indexed by ACM channel)"
::= { prioP5 3 }
queueLenBP5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P5 priority queue length in bytes
(indexed by ACM channel)"
::= { prioP5 4 }
queueLenPP5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P5 priority queue length in packets
(indexed by ACM channel)"
::= { prioP5 5 }
prioP6 OBJECT IDENTIFIER ::= { modulator 10 }
outBytesP6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P6 priority traffic in bytes
(indexed by ACM channel)"
::= { prioP6 1 }
outPktsP6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P6 priority traffic in packets
(indexed by ACM channel)"
::= { prioP6 2 }
dropsP6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P6 priority dropped packets
(indexed by ACM channel)"
::= { prioP6 3 }
queueLenBP6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P6 priority queue length in bytes
(indexed by ACM channel)"
::= { prioP6 4 }
queueLenPP6 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Modulator P6 priority queue length in packets
(indexed by ACM channel)"
::= { prioP6 5 }
-- Router
unroutedPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets, router couldn't route anywhere
(though they could have been tunneled)."
::= { router 1 }
unroutedSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last source IP address of unrouted packet."
::= { router 2 }
unroutedDest OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last destination IP address of unrouted packet."
::= { router 3 }
outVlanBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes, transmitted via VLAN.
Requires index, which is VLAN number."
::= { router 4 }
inVlanBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes, received via VLAN.
Requires index, which is VLAN number."
::= { router 5 }
outSvlanBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes, transmitted via SVLAN.
Requires index, which is SVLAN number."
::= { router 6 }
inSvlanBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes, received via SVLAN.
Requires index, which is SVLAN number."
::= { router 7 }
inSvlanPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets, received via SVLAN.
Requires index, which is SVLAN number."
::= { router 8 }
-- TDMA
tts OBJECT IDENTIFIER ::= { tdma 1 }
inroute OBJECT IDENTIFIER ::= { tdma 2 }
server OBJECT IDENTIFIER ::= { tdma 3 }
remTable OBJECT IDENTIFIER ::= { tdma 4 }
station OBJECT IDENTIFIER ::= { tdma 5 }
-- TTS
tdelta OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"HUB/Outroute - TTS value
Inroute/remote - Timers delta between local station and hub
In 10MHz ticks.
Developers only"
::= { tts 1 }
tdtConfidence OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"HUB/Outroute - TTS confidence value 0-64
Inroute/remote - Tdelta confidence 0-64"
::= { tts 2 }
softErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of soft errors of TTS/Tdelta measurement algorithm.
Soft errors mean current value is outside averaged window."
::= { tts 3 }
hardErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of hard errors of TTS/Tdelta measurement algorithm."
::= { tts 4 }
hubTTS OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"HUB TTS value in 10MHz ticks"
::= { tts 5 }
hubTTSconfidence OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"HUB TTS confidence value 0-64. It is requested from remotes or inroutes"
::= { tts 6 }
remoteTTS OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remote TTS value with compensations in 10MHz ticks. Developers only"
::= { tts 7 }
-- Inroute
netState OBJECT-TYPE
SYNTAX INTEGER {
off(0),
init(1),
noConfig(2),
useConfig(3),
redundant(4),
startRX(5),
cotmPointing(6),
startHubTX(7),
noRX(8),
identify(9),
getNetConfig(10),
calcDelays(11),
startTDMA(12),
startTX(13),
acquisition(14),
adjustment(15),
noStations(16),
operation(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operation sequence level"
::= { inroute 1 }
frameDelay OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Delay in frames between TX and RX processing. Developers only"
::= { inroute 2 }
sectionBW OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bandwidth in Bits/second of single slot in frame"
::= { inroute 3 }
netRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sum of all requests of all stations (slots)"
::= { inroute 4 }
freeSlots OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of free-allocated slots in current frame"
::= { inroute 5 }
netLoad OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Network load in % (values, greater than 100% mean overload)"
::= { inroute 6 }
-- Server
serverStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
init(1),
noConfig(2),
useConfig(3),
redundant(4),
startRX(5),
cotmPointing(6),
startHubTX(7),
noRX(8),
identify(9),
getNetConfig(10),
calcDelays(11),
startTDMA(12),
startTX(13),
acquisition(14),
adjustment(15),
noStations(16),
operation(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server reply status"
::= { server 1 }
frameDuration OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frame duration in 10M ticks"
::= { server 2 }
-- Remotes statistics table ( No SNMP_NEXT, direct remotes 1-252 addressing by index)
rxBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Summary number of bytes, received from this remote"
::= { remTable 1 }
p1Bytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P1(Low) priority bytes, received from this remote"
::= { remTable 2 }
p4Bytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P4(Med) priority bytes, received from this remote"
::= { remTable 3 }
p7Bytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P7(High) priority bytes, received from this remote"
::= { remTable 4 }
crcErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of CRC errors, during reception of this remote"
::= { remTable 5 }
carrierToNoise OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive carrier-to-noise ratio of this remote in 0.1 dB steps"
::= { remTable 6 }
freqOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive Frequency offset of this remote in Hz"
::= { remTable 7 }
remRecvHub OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"How this remote receives the hub in 0.1 dB steps"
::= { remTable 8 }
linkState OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
off(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link state of this remote"
::= { remTable 9 }
lastHeard OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time in seconds since last burst was received from remote. Developers only"
::= { remTable 10 }
downTimes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"How many times remote changed state to DOWN"
::= { remTable 11 }
totalRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current non-real-time + real-time request from remote"
::= { remTable 12 }
nrtRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current non-real-time request from remote"
::= { remTable 13 }
rtmRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current real-time request from remote"
::= { remTable 14 }
currentFP OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sections, allocated in current frame plan for remote"
::= { remTable 15 }
txLvl OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current transmit level x -0.1 dBm (1:360 -> -0.1:-36 dBm)"
::= { remTable 16 }
faults OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Station faults bitmap: 1-service monitoring local warning (LWRN);2-service monitoring local alarm (LFLT);4-service monitoring network warning (NWRN);8-service monitoring network alarm (NFLT);0x10 system fault (SYST);0x20 reboot fault (REBT);0x40 LAN down (LAN);0x80 RX offset fault (OFFS);0x100 CRC errors (CRC);0x200 TLC fault (TLC)"
::= { remTable 17 }
p2Bytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P2 priority bytes, received from this remote"
::= { remTable 18 }
p3Bytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P3 priority bytes, received from this remote"
::= { remTable 19 }
p5Bytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P5 priority bytes, received from this remote"
::= { remTable 20 }
p6Bytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of P6 priority bytes, received from this remote"
::= { remTable 21 }
-- Station data
stationState OBJECT-TYPE
SYNTAX INTEGER {
off(0),
init(1),
noConfig(2),
useConfig(3),
redundant(4),
startRX(5),
cotmPointing(6),
startHubTX(7),
noRX(8),
identify(9),
getNetConfig(10),
calcDelays(11),
startTDMA(12),
startTX(13),
acquisition(14),
adjustment(15),
noStations(16),
operation(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remote initialization sequence level"
::= { station 1 }
remnrtRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request for non-real-time bandwidth in sections"
::= { station 2 }
remrtRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request for real-time bandwidth in sections"
::= { station 3 }
fpLost OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lost frame plans number"
::= { station 4 }
lvlOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Offset between reference level and C/N level on hub. Developers only"
::= { station 5 }
lvlAdjust OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TX power level adjustment value in 0.1 dB steps"
::= { station 6 }
frqOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frequency offset on hub. Developers only"
::= { station 7 }
frqAdjust OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TX frequency adjustment value in Hz. Developers only"
::= { station 8 }
timeOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timing offset on hub in symbols"
::= { station 9 }
timeAdjust OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TX timing adjustment value in 10M ticks"
::= { station 10 }
-- Traffic Shaper stats ( No SNMP_NEXT, direct stream 0-500 addressing by index)
streamSpeed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of current stream"
::= { shaper 1 }
streamP1Speed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of P1(Low) priority sub-stream"
::= { shaper 2 }
streamP4Speed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of P4(Med) priority sub-stream"
::= { shaper 3 }
streamP7Speed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of P7(High) priority sub-stream"
::= { shaper 4 }
streamDelay OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current packets delay in stream x 0.1s"
::= { shaper 5 }
streamQueue OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current stream queue length in bytes"
::= { shaper 6 }
streamP2Speed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of P2 priority sub-stream"
::= { shaper 7 }
streamP3Speed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of P3 priority sub-stream"
::= { shaper 8 }
streamP5Speed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of P5 priority sub-stream"
::= { shaper 9 }
streamP6Speed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current speed in Kbits per second of P6 priority sub-stream"
::= { shaper 10 }
-- System stats
temperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current temperature"
::= { system 1 }
cpuLoad OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current CPU load in percent"
::= { system 2 }
buffers OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current buffers usage in percent"
::= { system 3 }
redundancy OBJECT-TYPE
SYNTAX INTEGER {
idle(0),
backup(1),
faults(2),
trying(3),
active(4),
off(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current redundancy state"
::= { system 4 }
swVersion OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version. Four numbers of version contained in four bytes
in order of precedence (see as hexadecimal)."
::= { system 5 }
releaseDate OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Release date. Two low bytes of number contain year,
then month and day (see as hexadecimal)."
::= { system 6 }
-- Mobile
version OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software (protocol) version. Number 10 means V1.0"
::= { mobile 1 }
serialNumber OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number of this unit. If printed on the screen should be
printed as hexadecimal! Example - 4660 returned should be printed
as 1234 in hex."
::= { mobile 2 }
inputLevel OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input baseband RF level in -0.1dBm steps. 500 means -50 dBm.
Higher value means lower level. 800 (-80dBm) means no signal."
::= { mobile 3 }
rxState OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Composite value to provide controller with receive and overall state.
0 means no RX lock.
1 means absence of coordinates (send location data).
2 means absence of TX status (send TX control command).
3-250 means RX lock and shows demodulator C/N level in 0.1dBm
steps (e.g. 100 means C/N=10 dB).
Actual in all modes of operation. In SCPC/Star modes shows
SCPC demodulator level, in FullMesh mode burst demodulator level."
::= { mobile 4 }
searchState OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"GET
Value in percent (0-100) of current carrier search sequence.
As search for narrow (<1Msps) carrier with high offset (DRO
LNB) can last up-to 30 seconds, controller can wait until
the whole acquisition bandwidth is scanned at least once.
SET
Writing any value restarts search cycle."
::= { mobile 5 }
txControl OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"GET
Current TX status (0-off, 1-on).
SET
Writing 0 turns TX off, 1 - turns on."
::= { mobile 6 }
location OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"GET
Not applicable.
SET
NMEA RMC string
$GPRMC,hhmmss.ss,A,GGMM.MM,P,gggmm.mm,J,v.v,b.b,ddmmyy,x.x,n,m*hh<CR><LF>
Location should be re-supplied if changed more than 1 minute by any coordinate."
::= { mobile 7 }
END
|