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
|
CAMBIUM-PTP250-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, IpAddress,
enterprises
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
DisplayString
FROM SNMPv2-TC;
cambium MODULE-IDENTITY
LAST-UPDATED "201212070935Z"
ORGANIZATION "Cambium Networks"
CONTACT-INFO
"Post: Bill Jones
Cambium Networks Ltd.
Unit B2,
Linhay Business Park,
Eastern Road,
Ashburton,
Devon.
TQ13 7UP
United Kingdom
Phone: +44 (0) 1364 655 500
Email: bill.jones@cambiumnetworks.com"
DESCRIPTION
"MIB for PTP250"
REVISION "201212070935Z"
DESCRIPTION "PTP250-02-13:
sNMPTrapVersion moved into the sNMPTrapTable."
REVISION "201110181047Z"
DESCRIPTION "PTP250-02-00"
::= { enterprises 17713 }
-- Groups in cambium
ptp OBJECT IDENTIFIER ::= { cambium 1 }
ptmp OBJECT IDENTIFIER ::= { cambium 2 }
ptp250 OBJECT IDENTIFIER ::= { cambium 250 }
-- Groups in ptp250
configuration OBJECT IDENTIFIER ::= { ptp250 1 }
ethernet OBJECT IDENTIFIER ::= { ptp250 2 }
licence OBJECT IDENTIFIER ::= { ptp250 3 }
management OBJECT IDENTIFIER ::= { ptp250 4 }
phyStatus OBJECT IDENTIFIER ::= { ptp250 5 }
alarms OBJECT IDENTIFIER ::= { ptp250 6 }
smtp OBJECT IDENTIFIER ::= { ptp250 7 }
snmpControl OBJECT IDENTIFIER ::= { ptp250 8 }
ntp OBJECT IDENTIFIER ::= { ptp250 9 }
versions OBJECT IDENTIFIER ::= { ptp250 10 }
pubStats OBJECT IDENTIFIER ::= { ptp250 11 }
ptpGroups OBJECT IDENTIFIER ::= { ptp250 98 }
ptpTraps OBJECT IDENTIFIER ::= { ptp250 99 }
ptpTrapPrefix OBJECT IDENTIFIER ::= { ptpTraps 0 }
-- Compliance information
--
ptpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the Cambium Networks PTP MIB"
MODULE -- this module
MANDATORY-GROUPS { configurationGroup
, ethernetGroup
, licenceGroup
, managementGroup
, phyStatusGroup
, alarmsGroup
, smtpGroup
, snmpControlGroup
, ntpGroup
, versionsGroup
, pubStatsGroup
, notificationsGroup
}
::= { ptp250 97 }
configurationGroup OBJECT-GROUP
OBJECTS { iPAddress
, subnetMask
, gatewayIPAddress
, masterSlaveMode
, maximumTransmitPower
, antennaGain
, cableLoss
, channelBandwidth
, remoteIPAddress
, remoteMACAddress
, linkName
, siteName
, band
, configuredModulationMode
, configuredRange
, channelSelection
, vlanTagging
, vlanId
, vlanPriority
, fixedModMode
, dualPayload
}
STATUS current
DESCRIPTION "The configuration object group."
::= { ptpGroups 5 }
ethernetGroup OBJECT-GROUP
OBJECTS { dataPortAutoNegotiation
, dataPortAutoNegAdvertisement
, dataPortStatus
, dataPortSpeedAndDuplex
}
STATUS current
DESCRIPTION "The ethernet object group."
::= { ptpGroups 6 }
licenceGroup OBJECT-GROUP
OBJECTS { regionCode
, productVariant
, productName
}
STATUS current
DESCRIPTION "The licence object group."
::= { ptpGroups 8 }
managementGroup OBJECT-GROUP
OBJECTS { installArmState
, tFTPServerIPAddress
, tFTPServerPortNumber
, tFTPSoftwareUpgradeFileName
, tFTPSoftwareUpgradeStatus
, tFTPSoftwareUpgradeStatusText
, tFTPSoftwareUpgradeStatusAdditionalText
}
STATUS current
DESCRIPTION "The management object group."
::= { ptpGroups 9 }
phyStatusGroup OBJECT-GROUP
OBJECTS { receivePower
, vectorError
, transmitPower
, linkLoss
, currentChannel
, extendedChannel
, receiveModulationMode
, transmitModulationMode
, currentFreqMHz
, extendedFreqMHz
, signalStrengthRatio
, searchState
, noiseFloor
, radarDetectChannel
, measuredRange
}
STATUS current
DESCRIPTION "The phyStatus object group."
::= { ptpGroups 12 }
alarmsGroup OBJECT-GROUP
OBJECTS { noWirelessChannelAvailable
}
STATUS current
DESCRIPTION "The alarms object group."
::= { ptpGroups 13 }
smtpGroup OBJECT-GROUP
OBJECTS { sMTPServerIPAddress
, sMTPServerPortNumber
, sMTPSourceEmailAddress
, sMTPDestinationEmailAddress
, sMTPEnabledMessages
}
STATUS current
DESCRIPTION "The smtp object group."
::= { ptpGroups 15 }
snmpControlGroup OBJECT-GROUP
OBJECTS { sNMPCommunityTableNumber
, sNMPTrapTableNumber
, sNMPEnabledTraps
, sNMPTrapIPAddress
, sNMPTrapPortNumber
, sNMPCommunityString
, sNMPCommunityAccess
, sNMPCommunityOid
, sNMPTrapCommunity
, sNMPTrapVersion
}
STATUS current
DESCRIPTION "The snmpControl object group."
::= { ptpGroups 16 }
ntpGroup OBJECT-GROUP
OBJECTS { nTPState
, nTPPollInterval
, nTPSync
, nTPLastSync
, systemClock
, timeZone
, nTPServerIp
, nTPServerPortNumber
}
STATUS current
DESCRIPTION "The ntp object group."
::= { ptpGroups 17 }
versionsGroup OBJECT-GROUP
OBJECTS { softwareVersion
, hardwareVersion
, bootVersion
}
STATUS current
DESCRIPTION "The versions object group."
::= { ptpGroups 19 }
pubStatsGroup OBJECT-GROUP
OBJECTS { receiveDataRate
, transmitDataRate
, aggregateDataRate
, wirelessLinkStatus
}
STATUS current
DESCRIPTION "The pubStats object group."
::= { ptpGroups 20 }
notificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { dataPortStatusTrap
, installArmStateTrap
, noWirelessChannelAvailableTrap
, linkStatusTrap
, radarDetectTrap
}
STATUS current
DESCRIPTION "The notifications group."
::= { ptpGroups 99 }
SNMPCommunityTableEntry ::=
SEQUENCE { sNMPCommunityTableIndex INTEGER
, sNMPCommunityString OCTET STRING
, sNMPCommunityAccess INTEGER
, sNMPCommunityOid OBJECT IDENTIFIER
}
sNMPCommunityTable OBJECT-TYPE
SYNTAX SEQUENCE OF SNMPCommunityTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SNMP community string configuration table."
::= { snmpControl 2 }
sNMPCommunityTableEntry OBJECT-TYPE
SYNTAX SNMPCommunityTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table SNMPCommunityTable"
INDEX { sNMPCommunityTableIndex }
::= { sNMPCommunityTable 1 }
SNMPTrapTableEntry ::=
SEQUENCE { sNMPTrapTableIndex INTEGER
, sNMPTrapIPAddress IpAddress
, sNMPTrapPortNumber INTEGER
, sNMPTrapCommunity OCTET STRING
, sNMPTrapVersion INTEGER
}
sNMPTrapTable OBJECT-TYPE
SYNTAX SEQUENCE OF SNMPTrapTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SNMP trap configuration table."
::= { snmpControl 4 }
sNMPTrapTableEntry OBJECT-TYPE
SYNTAX SNMPTrapTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table SNMPTrapTable"
INDEX { sNMPTrapTableIndex }
::= { sNMPTrapTable 1 }
-- Configuration group attribute definitions
--
iPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internet protocol (IP) address. This address is used by
the family of Internet protocols to uniquely identify
the unit on a network."
::= { configuration 1 }
subnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A subnet allows the flow of network traffic between
hosts to be segregated based on a network
configuration. By organizing hosts into
logical groups, subnetting can improve network
security and performance."
::= { configuration 2 }
gatewayIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of a computer on the current network that
is currently acting as a network gateway. A gateway
acts as an entrance / exit to packets from / to
other networks."
::= { configuration 3 }
remoteMACAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MAC address of the PTP wireless unit forming the other
end of the PTP link"
::= { configuration 4 }
masterSlaveMode OBJECT-TYPE
SYNTAX INTEGER {
slave(0),
master(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PTP wireless link operates using a master and slave
relationship"
::= { configuration 5 }
maximumTransmitPower OBJECT-TYPE
SYNTAX Integer32 (-15..27)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum transmit power the wireless unit is permitted to
use when establishing and maintaining the wireless
link"
::= { configuration 6 }
antennaGain OBJECT-TYPE
SYNTAX Integer32 (0..610)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Antenna Gain. Expressed in 10ths of dBi. NB: This
attribute is ignored for variants with an
integral antenna."
::= { configuration 7 }
cableLoss OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss in the cable between the ODU and the antenna.
Expressed in 10ths of dB. NB: This attribute is
ignored for variants with an integral antenna."
::= { configuration 8 }
channelBandwidth OBJECT-TYPE
SYNTAX INTEGER {
bw20MHz(0),
bw40MHz(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The selected bandwidth of the transmit and
receive radio channels"
::= { configuration 9 }
remoteIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP Address of the peer wireless unit"
::= { configuration 10 }
linkName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the PTP link allocated by the System
Administrator. Used to establish a
connection with the correct PTP wireless unit
at the other end of the link. NOTE: The link name MUST
be the same at both ends of the PTP link."
::= { configuration 11 }
siteName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains a user-provided description of the
site name together with any additional notes"
::= { configuration 12 }
configuredModulationMode OBJECT-TYPE
SYNTAX INTEGER {
modBpskHalf(0),
modQpskHalf(1),
modQpskThreeQuarters(2),
mod16QamHalf(3),
mod16QamThreeQuarters(4),
mod64QamTwoThirds(5),
mod64QamThreeQuarters(6),
mod64QamFiveSixths(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fixed modulation mode or maximum adaptive modulation mode
to be used by the wireless link"
::= { configuration 13 }
band OBJECT-TYPE
SYNTAX INTEGER {
unset(0),
freq5400MHz(1),
freq5800MHz(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The frequency band to be
used by the wireless link"
::= { configuration 14 }
configuredRange OBJECT-TYPE
SYNTAX Integer32 (0..5400)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Configured distance between the two peer wireless units
expressed in hundredths of a kilometer."
::= { configuration 15 }
channelSelection OBJECT-TYPE
SYNTAX BITS {
channum100(0),
channum104(1),
channum108(2),
channum112(3),
channum116(4),
channum120(5),
channum124(6),
channum128(7),
channum132(8),
channum136(9),
channum140(10),
channum149(11),
channum153(12),
channum157(13),
channum161(14),
channum165(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The channels selected for use by the user. The
current channel will be selected from this list."
::= { configuration 16 }
vlanTagging OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether or not to use VLAN tagging for management."
::= { configuration 17 }
vlanId OBJECT-TYPE
SYNTAX Integer32 (0..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VLAN ID for management."
::= { configuration 18 }
vlanPriority OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VLAN priority for management."
::= { configuration 19 }
fixedModMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If disabled, allows automatic modulation mode selection."
::= { configuration 22 }
dualPayload OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If enabled, allows dual payload modulation modes to be selected."
::= { configuration 23 }
-- Ethernet group attribute definitions
--
dataPortAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This controls whether the local Ethernet interface
configuration is automatically negotiated
or forced."
::= { ethernet 1 }
dataPortAutoNegAdvertisement OBJECT-TYPE
SYNTAX BITS {
negInvalid(0),
neg10MbpsHalfDuplex(1),
neg10MbpsFullDuplex(2),
neg100MbpsHalfDuplex(3),
neg100MbpsFullDuplex(4),
neg1000MbpsFullDuplex(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This sets the different Ethernet configurations that
will be advertised during auto negotiation."
::= { ethernet 2 }
dataPortStatus OBJECT-TYPE
SYNTAX INTEGER {
down(0),
up(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of the Ethernet link. NB: a change of
state may generate an SNMP trap and/or SMTP email
alert"
::= { ethernet 3 }
dataPortSpeedAndDuplex OBJECT-TYPE
SYNTAX INTEGER {
speed1000MbpsFullDuplex(0),
speed100MbpsFullDuplex(1),
speed100MbpsHalfDuplex(2),
speed10MbpsFullDuplex(3),
speed10MbpsHalfDuplex(4),
speedUnknown6(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed and duplex of the Ethernet link"
::= { ethernet 4 }
-- Licence group attribute definitions
--
regionCode OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The region code prohibits the wireless unit from
operating outside the regulated limits.
NB: a change of state may generate an SNMP trap
and/or SMTP email alert"
::= { licence 1 }
productVariant OBJECT-TYPE
SYNTAX INTEGER {
ptpXX400Full(0),
ptpXX400Deprecated1(1),
ptpXX400Deprecated2(2),
ptpXX400Lite(3),
spare1(4),
ptpXX300(5),
spare2(6),
spare3(7),
ptpXX500FullDeprecated(8),
ptpXX500LiteDeprecated(9),
ptpXX500(10),
ptpXX600Lite(11),
ptpXX600Full(12),
spare5(13),
spare6(14),
ptp800(15),
ptp250(16)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product variant"
::= { licence 2 }
productName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the product variant"
::= { licence 3 }
-- Management group attribute definitions
--
installArmState OBJECT-TYPE
SYNTAX INTEGER {
disarmed(0),
armed(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the unit is being installed. NB: a change
of state may generate an SNMP trap and/or SMTP email
alert"
::= { management 1 }
tFTPServerIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address of the TFTP Server from which the TFTP
Software Upgrade File Name will be retrieved"
::= { management 2 }
tFTPServerPortNumber OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the TFTP Server from which the TFTP
Software Upgrade File Name will be retrieved"
::= { management 3 }
tFTPSoftwareUpgradeFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Filename of the Software Upgrade to be loaded from the
TFTP Server"
::= { management 4 }
tFTPSoftwareUpgradeStatus OBJECT-TYPE
SYNTAX INTEGER {
idle(0),
uploadinprogress(1),
uploadsuccessfulprogrammingFLASH(2),
upgradesuccessfulreboottorunthenewsoftwareimage(3),
upgradefailed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the TFTP Software upgrade process"
::= { management 5 }
tFTPSoftwareUpgradeStatusText OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Descriptive text describing the status of the TFTP
Software upgrade process, including any error
details"
::= { management 6 }
tFTPSoftwareUpgradeStatusAdditionalText OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Any additional text describing the status of the TFTP
Software upgrade process, including any error
details"
::= { management 7 }
-- PhyStatus group attribute definitions
--
receivePower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Receive power expressed in tenths of a dBm"
::= { phyStatus 1 }
vectorError OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vector error measurement compares the received
signal's IQ modulation characteristics to an
ideal signal to determine the composite error
vector magnitude. The value represented by this
attribute is the average vector error over the
previous second expressed in tenths of a dB"
::= { phyStatus 2 }
transmitPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmit power expressed in tenths of a dBm"
::= { phyStatus 3 }
linkLoss OBJECT-TYPE
SYNTAX Integer32 (-500..500)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The wireless link loss expressed in tenths of a dB"
::= { phyStatus 5 }
currentChannel OBJECT-TYPE
SYNTAX Integer32 (0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current active channel"
::= { phyStatus 6 }
extendedChannel OBJECT-TYPE
SYNTAX Integer32 (0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current extended channel in 40MHz mode"
::= { phyStatus 7 }
receiveModulationMode OBJECT-TYPE
SYNTAX INTEGER {
acquisition(0),
modBpskHalfSingle(1),
modQpskHalfSingle(2),
modQpskThreeQuartersSingle(3),
mod16QamHalfSingle(4),
mod16QamThreeQuartersSingle(5),
mod64QamTwoThirdsSingle(6),
mod64QamThreeQuartersSingle(7),
mod64QamFiveSixthsSingle(8),
modBpskHalfDual(9),
modQpskHalfDual(10),
modQpskThreeQuartersDual(11),
mod16QamHalfDual(12),
mod16QamThreeQuartersDual(13),
mod64QamTwoThirdsDual(14),
mod64QamThreeQuartersDual(15),
mod64QamFiveSixthsDual(16)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current active receive modulation mode"
::= { phyStatus 8 }
transmitModulationMode OBJECT-TYPE
SYNTAX INTEGER {
acquisition(0),
modBpskHalfSingle(1),
modQpskHalfSingle(2),
modQpskThreeQuartersSingle(3),
mod16QamHalfSingle(4),
mod16QamThreeQuartersSingle(5),
mod64QamTwoThirdsSingle(6),
mod64QamThreeQuartersSingle(7),
mod64QamFiveSixthsSingle(8),
modBpskHalfDual(9),
modQpskHalfDual(10),
modQpskThreeQuartersDual(11),
mod16QamHalfDual(12),
mod16QamThreeQuartersDual(13),
mod64QamTwoThirdsDual(14),
mod64QamThreeQuartersDual(15),
mod64QamFiveSixthsDual(16)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current active transmit modulation mode"
::= { phyStatus 9 }
currentFreqMHz OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current channel frequency expressed in integer MHz"
::= { phyStatus 11 }
extendedFreqMHz OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Extended channel frequency expressed in integer MHz"
::= { phyStatus 12 }
signalStrengthRatio OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal strength ratio (Vertical / Horizontal) : the
number of dB larger the Vertical antenna input is
than the Horizontal antenna input expressed in
tenths of a dB"
::= { phyStatus 13 }
searchState OBJECT-TYPE
SYNTAX INTEGER {
up(0),
registering(1),
acquiring(2),
searching(3),
radarCAC(4),
initialising(5),
noChannels(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Search status of the wireless unit. 'Registering' means
that the unit has locked to an OFDM signal, and the
wireless link is up. 'Searching' means that no
wireless signal has been detected. 'Acquiring'
means that a wireless signal has been detected, but
the unit has not locked to an OFDM signal."
::= { phyStatus 14 }
noiseFloor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Noise floor expressed in tenths of a dBm"
::= { phyStatus 15 }
radarDetectChannel OBJECT-TYPE
SYNTAX Integer32 (0..63)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Channel on which Radar has been detected.
(Note that this variable is accessible-for-notify only)."
::= { phyStatus 16 }
measuredRange OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measured distance between the two peer wireless units
expressed in tenths of Km."
::= { phyStatus 17 }
-- Alarms group attribute definitions
--
noWirelessChannelAvailable OBJECT-TYPE
SYNTAX INTEGER {
ok(0),
noWirelessChannelAvailable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Spectrum Management was unable to locate a suitable
wireless channel to operate on"
::= { alarms 1 }
-- Smtp group attribute definitions
--
sMTPServerIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address of the SMTP server"
::= { smtp 1 }
sMTPServerPortNumber OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port number of the SMTP server"
::= { smtp 2 }
sMTPSourceEmailAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 'from' email address used when constructing the
automatically generated e-mail message"
::= { smtp 3 }
sMTPDestinationEmailAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 'to' email address used when constructing the
automatically generated e-mail message"
::= { smtp 4 }
sMTPEnabledMessages OBJECT-TYPE
SYNTAX BITS {
dataPortUpDown(0),
wirelessLinkUpDown(1),
coldStart(2),
radarDetect(3),
installArmState(4),
noChannelAvailable(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This controls which SMTP messages the unit will send"
::= { smtp 5 }
-- SnmpControl group attribute definitions
--
sNMPCommunityTableNumber OBJECT-TYPE
SYNTAX Integer32 (2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of entries in the sNMPCommunityTable."
::= { snmpControl 1 }
sNMPTrapTableNumber OBJECT-TYPE
SYNTAX Integer32 (2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of entries in the sNMPTrapTable."
::= { snmpControl 3 }
sNMPEnabledTraps OBJECT-TYPE
SYNTAX BITS {
dataPortUpDown(0),
wirelessLinkUpDown(1),
coldStart(2),
radarDetect(3),
installArmState(4),
noChannelAvailable(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This controls which SNMP Traps the unit will send"
::= { snmpControl 6 }
-- SNMPCommunityTable group attribute definitions
--
sNMPCommunityTableIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SNMP community value, used to index the SNMPCommunityTable."
::= { sNMPCommunityTableEntry 1 }
sNMPCommunityString OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The community string for this entry"
::= { sNMPCommunityTableEntry 2 }
sNMPCommunityAccess OBJECT-TYPE
SYNTAX INTEGER {
readOnly(0),
readWrite(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether this community allows read-only or read-write access"
::= { sNMPCommunityTableEntry 3 }
sNMPCommunityOid OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID at which the root of this community's subtree starts"
::= { sNMPCommunityTableEntry 4 }
-- SNMPTrapTable group attribute definitions
--
sNMPTrapTableIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SNMP trap value, used to index the SNMPTrapTable."
::= { sNMPTrapTableEntry 1 }
sNMPTrapIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address to which all SNMP Traps are sent."
::= { sNMPTrapTableEntry 2 }
sNMPTrapPortNumber OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination port for SNMP Traps (default=162). A value
of 0 will disable the trap receiver."
::= { sNMPTrapTableEntry 3 }
sNMPTrapCommunity OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The community string for this trap entry"
::= { sNMPTrapTableEntry 4 }
sNMPTrapVersion OBJECT-TYPE
SYNTAX INTEGER {
v1(0),
v2c(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SNMP protocol version for this trap entry"
::= { sNMPTrapTableEntry 5 }
-- Ntp group attribute definitions
--
nTPState OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NTP control state"
::= { ntp 1 }
nTPPollInterval OBJECT-TYPE
SYNTAX Integer32 (60..43200)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The NTP server polling interval"
::= { ntp 2 }
nTPSync OBJECT-TYPE
SYNTAX INTEGER {
noSync(0),
inSync(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If NTP Sync fails then check the server settings in the
Remote Management page, or disable NTP"
::= { ntp 3 }
nTPLastSync OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last NTP sync time"
::= { ntp 4 }
systemClock OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System clock presented as local time"
::= { ntp 5 }
timeZone OBJECT-TYPE
SYNTAX INTEGER {
gmtMinus1200(0),
gmtMinus1130(1),
gmtMinus1100(2),
gmtMinus1030(3),
gmtMinus1000(4),
gmtMinus0930(5),
gmtMinus0900(6),
gmtMinus0830(7),
gmtMinus0800(8),
gmtMinus0730(9),
gmtMinus0700(10),
gmtMinus0630(11),
gmtMinus0600(12),
gmtMinus0530(13),
gmtMinus0500(14),
gmtMinus0430(15),
gmtMinus0400(16),
gmtMinus0330(17),
gmtMinus0300(18),
gmtMinus0230(19),
gmtMinus0200(20),
gmtMinus0130(21),
gmtMinus0100(22),
gmtMinus0030(23),
gmtZero(24),
gmtPlus0030(25),
gmtPlus0100(26),
gmtPlus0130(27),
gmtPlus0200(28),
gmtPlus0230(29),
gmtPlus0300(30),
gmtPlus0330(31),
gmtPlus0400(32),
gmtPlus0430(33),
gmtPlus0500(34),
gmtPlus0530(35),
gmtPlus0600(36),
gmtPlus0630(37),
gmtPlus0700(38),
gmtPlus0730(39),
gmtPlus0800(40),
gmtPlus0830(41),
gmtPlus0900(42),
gmtPlus0930(43),
gmtPlus1000(44),
gmtPlus1030(45),
gmtPlus1100(46),
gmtPlus1130(47),
gmtPlus1200(48),
gmtPlus1230(49),
gmtPlus1300(50)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time zone offsets from Greenwich Mean Time (GMT)"
::= { ntp 6 }
nTPServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the NTP server IP address."
::= { ntp 7 }
nTPServerPortNumber OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port number of the NTP server"
::= { ntp 8 }
-- Versions group attribute definitions
--
softwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current software version"
::= { versions 1 }
hardwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware platform version"
::= { versions 2 }
bootVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Boot code software version"
::= { versions 3 }
-- PubStats group attribute definitions
--
receiveDataRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average data rate over the last one second interval
(tenths of Mbps)"
::= { pubStats 1 }
transmitDataRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average data rate over the last one second interval
(tenths of Mbps)"
::= { pubStats 2 }
aggregateDataRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average data rate over the last one second interval
(tenths of Mbps)"
::= { pubStats 3 }
wirelessLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
down(0),
up(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of the wireless link"
::= { pubStats 4 }
-- Enterprise NOTIFICATION definitions
--
dataPortStatusTrap NOTIFICATION-TYPE
OBJECTS { dataPortStatus }
STATUS current
DESCRIPTION
"Status of the Ethernet link has changed."
::= { ptpTrapPrefix 1 }
installArmStateTrap NOTIFICATION-TYPE
OBJECTS { installArmState }
STATUS current
DESCRIPTION
"Unit install arm state has changed"
::= { ptpTrapPrefix 2 }
noWirelessChannelAvailableTrap NOTIFICATION-TYPE
OBJECTS { noWirelessChannelAvailable }
STATUS current
DESCRIPTION
"Wireless channel availability has changed"
::= { ptpTrapPrefix 3 }
linkStatusTrap NOTIFICATION-TYPE
OBJECTS { wirelessLinkStatus }
STATUS current
DESCRIPTION
"Wireless link status has changed"
::= { ptpTrapPrefix 4 }
radarDetectTrap NOTIFICATION-TYPE
OBJECTS { radarDetectChannel }
STATUS current
DESCRIPTION
"Radar has been detected on one or more channels"
::= { ptpTrapPrefix 5 }
END
|