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
|
-- =============================================================================
-- Copyright (c) 2004-2015 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:
-- The file defines a MIB that provides WLAN application configuration information.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2015-05-26 Initial version, created by lifei (Richard)
-- =============================================================================
HH3C-WLAN-FLEXAPP-CFG-MIB DEFINITIONS ::= BEGIN
IMPORTS
TruthValue,
MacAddress
FROM SNMPv2-TC
MODULE-IDENTITY,
NOTIFICATION-TYPE,
OBJECT-TYPE,
Integer32,
IpAddress
FROM SNMPv2-SMI
hh3cDot11
FROM HH3C-DOT11-REF-MIB;
hh3cWlanFlexAppCFG MODULE-IDENTITY
LAST-UPDATED "201505261800Z" -- May 26, 2015 at 18:00 GMT
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip: 100085"
DESCRIPTION
"This MIB provides information about WLAN application configuration."
REVISION "201505261800Z" -- May 26, 2015 at 18:00 GMT
DESCRIPTION
"Added new nodes."
::= { hh3cDot11 19 }
--
-- Node definitions
--
hh3cWlanModuleConfigGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 1 }
-- Module Group has the following children:
-- hh3cWlanModuleConfigTable ::= { hh3cWlanModuleConfigGroup 1 }
-- hh3cWlanModuleInfoTable ::= { hh3cWlanModuleConfigGroup 2 }
hh3cWlanIOTConfigGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 2 }
-- IOT Configure Group has the following children:
-- hh3cWlanIOTConfigTable ::= { hh3cWlanIOTConfigGroup 1 }
hh3cWlanModuleNotifyGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 3 }
-- Module Notify Group has the following children:
-- hh3cWlanModuleTraps ::= { hh3cWlanModuleNotifyGroup 0 }
-- hh3cWlanModuleTrapVarObjects ::= { hh3cWlanModuleNotifyGroup 1 }
hh3cWlanBLEConfigGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 4 }
-- BLE Configure Group has the following children:
-- hh3cWlanBLEConfigTable ::= { hh3cWlanBLEConfigGroup 1 }
-- hh3cWlanBLEModuleConfigTable ::= { hh3cWlanBLEConfigGroup 2 }
hh3cWlanAEConfigGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 5 }
-- AE Configure Group has the following children:
-- hh3cWlanAEConfigTable ::= { hh3cWlanAEConfigGroup 1 }
-- hh3cWlanAERadioConfigTable ::= { hh3cWlanAEConfigGroup 2 }
hh3cWlanCommonConfigGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 6 }
-- common Configure Group has the following children:
-- hh3cWlanCommonConfigTable ::= { hh3cWlanCommonConfigGroup 1 }
hh3cWlanCUPIDConfigGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 7 }
-- CUPID Configure Group has the following children:
-- hh3cWlanCUPIDConfigTable ::= { hh3cWlanCUPIDConfigGroup 1 }
hh3cWlanFPConfigGroup OBJECT IDENTIFIER ::= { hh3cWlanFlexAppCFG 8 }
-- fingerprint Configure Group has the following children:
-- hh3cWlanFPConfigTable ::= { hh3cWlanFPConfigGroup 1 }
-- *****************************************************************************
-- * hh3cWlanModuleConfigTable Definition
-- *****************************************************************************
hh3cWlanModuleConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanModuleConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure module parameters for a module to operate."
::= { hh3cWlanModuleConfigGroup 1 }
hh3cWlanModuleConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanModuleConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains module configuration information."
INDEX
{
hh3cWlanAPSerialID,
hh3cWlanModuleID
}
::= { hh3cWlanModuleConfigTable 1 }
Hh3cWlanModuleConfigEntry ::= SEQUENCE
{
hh3cWlanAPSerialID OCTET STRING,
hh3cWlanModuleID Integer32,
hh3cWlanModuleType INTEGER,
hh3cWlanModuleStatus TruthValue,
hh3cWlanModuleReset INTEGER,
hh3cWlanModuleRstFac INTEGER,
hh3cWlanModuleUpWareStatus TruthValue,
hh3cWlanModuleTxPower Integer32,
hh3cWlanModuleManualUpdate OCTET STRING
}
hh3cWlanAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanModuleConfigEntry 1 }
hh3cWlanModuleID OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the module ID of a module."
::= { hh3cWlanModuleConfigEntry 2 }
hh3cWlanModuleType OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
ble(1),
iot(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the type of a module."
::= { hh3cWlanModuleConfigEntry 3 }
hh3cWlanModuleStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of a module."
::= { hh3cWlanModuleConfigEntry 4 }
hh3cWlanModuleReset OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
reboot(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When read the value from the node
none: Represents the module has been rebooted and the status of the module is normal.
When write the value to the node
reboot: Represents module rebooting. Other values are not supported."
::= { hh3cWlanModuleConfigEntry 5 }
hh3cWlanModuleRstFac OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
restore(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When read the value from the node
none: Represents the module has been restored and the status of the module is normal.
When write the value to the node
restore: Represents module restoring. Other values are not supported."
::= { hh3cWlanModuleConfigEntry 6 }
hh3cWlanModuleUpWareStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of module auto update."
::= { hh3cWlanModuleConfigEntry 7 }
hh3cWlanModuleTxPower OBJECT-TYPE
SYNTAX Integer32(1..4)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the packet transmit power."
::= { hh3cWlanModuleConfigEntry 8 }
hh3cWlanModuleManualUpdate OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the file path for module firmware updating."
::= { hh3cWlanModuleConfigEntry 9 }
-- *****************************************************************************
-- * End of hh3cWlanModuleConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanModuleInfoTable Definition
-- *****************************************************************************
hh3cWlanModuleInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanModuleInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains information about each module of an AP."
::= { hh3cWlanModuleConfigGroup 2 }
hh3cWlanModuleInfoEntry OBJECT-TYPE
SYNTAX Hh3cWlanModuleInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains IOT module information."
INDEX
{
hh3cDot11IOTAPSerialID,
hh3cDot11IOTModuleID
}
::= { hh3cWlanModuleInfoTable 1 }
Hh3cWlanModuleInfoEntry ::= SEQUENCE
{
hh3cDot11IOTAPSerialID OCTET STRING,
hh3cDot11IOTModuleID Integer32,
hh3cDot11IOTModuleType INTEGER,
hh3cDot11IOTModuleModel OCTET STRING,
hh3cDot11IOTModuleHwVersion OCTET STRING,
hh3cDot11IOTModuleSwVersion OCTET STRING,
hh3cDot11IOTModuleSerialId OCTET STRING
}
hh3cDot11IOTAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanModuleInfoEntry 1 }
hh3cDot11IOTModuleID OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents a module."
::= { hh3cWlanModuleInfoEntry 2 }
hh3cDot11IOTModuleType OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
h3c(1),
iot(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the type of a module."
::= { hh3cWlanModuleInfoEntry 3 }
hh3cDot11IOTModuleModel OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the model of a module."
::= { hh3cWlanModuleInfoEntry 4 }
hh3cDot11IOTModuleHwVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the hardware version of a module."
::= { hh3cWlanModuleInfoEntry 5 }
hh3cDot11IOTModuleSwVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the software version of a module."
::= { hh3cWlanModuleInfoEntry 6 }
hh3cDot11IOTModuleSerialId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the sequence ID of a module."
::= { hh3cWlanModuleInfoEntry 7 }
-- *****************************************************************************
-- * End of hh3cDot11APModuleInfoTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanIOTConfigTable Definition
-- *****************************************************************************
hh3cWlanIOTConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanIOTConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure IOT parameters."
::= { hh3cWlanIOTConfigGroup 1 }
hh3cWlanIOTConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanIOTConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains module configuration information."
INDEX
{
hh3cWlanIOTAPSerialID
}
::= { hh3cWlanIOTConfigTable 1 }
Hh3cWlanIOTConfigEntry ::= SEQUENCE
{
hh3cWlanIOTAPSerialID OCTET STRING,
hh3cWlanIOTEngineAdd IpAddress,
hh3cWlanIOTEnginePort Integer32
}
hh3cWlanIOTAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanIOTConfigEntry 1 }
hh3cWlanIOTEngineAdd OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the IPv4 address of the location server."
::= { hh3cWlanIOTConfigEntry 2 }
hh3cWlanIOTEnginePort OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port to listen for IOT messages from the server."
::= { hh3cWlanIOTConfigEntry 3 }
-- *****************************************************************************
-- * End of hh3cWlanIOTConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanModuleTraps Definition
-- *****************************************************************************
-- AP Management Notification
hh3cWlanModuleTraps OBJECT IDENTIFIER
::= { hh3cWlanModuleNotifyGroup 0 }
hh3cWlanModuleInsertTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cWlanTrapAPMacAddress,
hh3cWlanTrapModuleID,
hh3cWlanTrapModulePhyType,
hh3cWlanTrapModuleModel,
hh3cWlanTrapModuleHwVersion,
hh3cWlanTrapModuleSwVersion,
hh3cWlanTrapModuleSequenceId
}
STATUS current
DESCRIPTION
"This notification will be generated when an IOT module is inserted."
::= { hh3cWlanModuleTraps 1 }
hh3cWlanModuleRomveTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cWlanTrapAPMacAddress,
hh3cWlanTrapModuleID,
hh3cWlanTrapModulePhyType,
hh3cWlanTrapModuleModel,
hh3cWlanTrapModuleHwVersion,
hh3cWlanTrapModuleSwVersion,
hh3cWlanTrapModuleSequenceId
}
STATUS current
DESCRIPTION
"This notification will be generated when an IOT module is removed."
::= { hh3cWlanModuleTraps 2 }
hh3cWlanModuleMissMatch NOTIFICATION-TYPE
OBJECTS
{
hh3cWlanTrapAPMacAddress,
hh3cWlanTrapModuleID,
hh3cWlanTrapModuleCfgType,
hh3cWlanTrapModulePhyType,
hh3cWlanTrapModuleModel
}
STATUS current
DESCRIPTION
"This notification will be generated when the configured
type doesn't match the module type."
::= { hh3cWlanModuleTraps 3 }
-- AP Management Notification variable object
hh3cWlanModuleTrapVarObjects OBJECT IDENTIFIER
::= { hh3cWlanModuleNotifyGroup 1 }
hh3cWlanTrapAPMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the MAC address of an AP."
::= {hh3cWlanModuleTrapVarObjects 1 }
hh3cWlanTrapModuleID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the ID of a module."
::= { hh3cWlanModuleTrapVarObjects 2 }
hh3cWlanTrapModuleCfgType OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
h3c(1),
iot(2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the configuration type of a module."
::= { hh3cWlanModuleTrapVarObjects 3 }
hh3cWlanTrapModulePhyType OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
h3c(1),
iot(2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the physical type of a module."
::= { hh3cWlanModuleTrapVarObjects 4 }
hh3cWlanTrapModuleModel OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the model of a module."
::= { hh3cWlanModuleTrapVarObjects 5 }
hh3cWlanTrapModuleHwVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the hardware version of a module."
::= { hh3cWlanModuleTrapVarObjects 6 }
hh3cWlanTrapModuleSwVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the software version of a module."
::= { hh3cWlanModuleTrapVarObjects 7 }
hh3cWlanTrapModuleSequenceId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the sequence ID of a module."
::= { hh3cWlanModuleTrapVarObjects 8 }
-- *****************************************************************************
-- * End of hh3cWlanModuleTraps Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanBLEConfigTable Definition
-- *****************************************************************************
hh3cWlanBLEConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanBLEConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure Bluetooth Low Energy (BLE) parameters."
::= { hh3cWlanBLEConfigGroup 1 }
hh3cWlanBLEConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanBLEConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains BLE location configuration information."
INDEX
{
hh3cWlanBLEAPSerialID
}
::= { hh3cWlanBLEConfigTable 1 }
Hh3cWlanBLEConfigEntry ::= SEQUENCE
{
hh3cWlanBLEAPSerialID OCTET STRING,
hh3cWlanBLEStatus TruthValue,
hh3cWlanBLEEngineAdd IpAddress,
hh3cWlanBLEEnginePort Integer32,
hh3cWlanBLEVendorPort Integer32,
hh3cWlanBLERssiStatus TruthValue,
hh3cWlanBLERssiThreshold Integer32,
hh3cWlanBLEConnectPassword OCTET STRING,
hh3cWlanBLECommandPassword OCTET STRING,
hh3cWlanBLEReportStatus TruthValue,
hh3cWlanBLEReportInterval Integer32,
hh3cWlanBLEAgingTime Integer32,
hh3cWlanBLERealTimeReportStatus TruthValue,
hh3cWlanBLERealTimePrefix OCTET STRING
}
hh3cWlanBLEAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanBLEConfigEntry 1 }
hh3cWlanBLEStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of BLE location."
::= { hh3cWlanBLEConfigEntry 2 }
hh3cWlanBLEEngineAdd OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the server's IPv4 address to which BLE messages are sent."
::= { hh3cWlanBLEConfigEntry 3 }
hh3cWlanBLEEnginePort OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port of the location server."
::= { hh3cWlanBLEConfigEntry 4 }
hh3cWlanBLEVendorPort OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port to listen for BLE messages from the server."
::= { hh3cWlanBLEConfigEntry 5 }
hh3cWlanBLERssiStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of BLE RSSI-based packet filtering."
::= { hh3cWlanBLEConfigEntry 6 }
hh3cWlanBLERssiThreshold OBJECT-TYPE
SYNTAX Integer32(5..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the max RSSI value of clients' packets."
::= { hh3cWlanBLEConfigEntry 7 }
hh3cWlanBLEConnectPassword OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0|4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the BLE module connection password."
::= { hh3cWlanBLEConfigEntry 8 }
hh3cWlanBLECommandPassword OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0|12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the BLE module command password."
::= { hh3cWlanBLEConfigEntry 9 }
hh3cWlanBLEReportStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of BLE location reporting."
::= { hh3cWlanBLEConfigEntry 10 }
hh3cWlanBLEReportInterval OBJECT-TYPE
SYNTAX Integer32(1..86400)
UNITS "Second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the interval at which an AP sends BLE messages to the server."
::= { hh3cWlanBLEConfigEntry 11 }
hh3cWlanBLEAgingTime OBJECT-TYPE
SYNTAX Integer32(60..3600)
UNITS "Second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the aging time for iBeacon devices."
::= { hh3cWlanBLEConfigEntry 12 }
hh3cWlanBLERealTimeReportStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of BLE realtime reporting."
::= { hh3cWlanBLEConfigEntry 13 }
hh3cWlanBLERealTimePrefix OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0|8..18))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the manufacturer prefix of BLE devices to
be located. The prefix must be an even number."
::= { hh3cWlanBLEConfigEntry 14 }
-- *****************************************************************************
-- * End of hh3cWlanBLEConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanBLEModuleConfigTable Definition
-- *****************************************************************************
hh3cWlanBLEModuleConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanBLEModuleConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure BLE module parameters."
::= { hh3cWlanBLEConfigGroup 2 }
hh3cWlanBLEModuleConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanBLEModuleConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains BLE module configuration information."
INDEX
{
hh3cWlanBLEModuleAPSerialID,
hh3cWlanBLEModuleID
}
::= { hh3cWlanBLEModuleConfigTable 1 }
Hh3cWlanBLEModuleConfigEntry ::= SEQUENCE
{
hh3cWlanBLEModuleAPSerialID OCTET STRING,
hh3cWlanBLEModuleID Integer32,
hh3cWlanBLEAdvReportStatus TruthValue,
hh3cWlanBLEAdvReportInterval Integer32,
hh3cWlanBLEAdvUUID OCTET STRING,
hh3cWlanBLEAdvMajorID Integer32,
hh3cWlanBLEAdvMinorID Integer32
}
hh3cWlanBLEModuleAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanBLEModuleConfigEntry 1 }
hh3cWlanBLEModuleID OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the ID of a module."
::= { hh3cWlanBLEModuleConfigEntry 2 }
hh3cWlanBLEAdvReportStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of BLE advertisement reporting."
::= { hh3cWlanBLEModuleConfigEntry 3 }
hh3cWlanBLEAdvReportInterval OBJECT-TYPE
SYNTAX Integer32(50..1000)
UNITS "Second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the interval at which a BLE module sends advertisement packets."
::= { hh3cWlanBLEModuleConfigEntry 4 }
hh3cWlanBLEAdvUUID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0|32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UUID of BLE advertisement packets."
::= { hh3cWlanBLEModuleConfigEntry 5 }
hh3cWlanBLEAdvMajorID OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the major ID of BLE advertisement packets."
::= { hh3cWlanBLEModuleConfigEntry 6 }
hh3cWlanBLEAdvMinorID OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the minor ID of BLE advertisement packets."
::= { hh3cWlanBLEModuleConfigEntry 7 }
-- *****************************************************************************
-- * End of hh3cWlanBLEModuleConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanAEConfigTable Definition
-- *****************************************************************************
hh3cWlanAEConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanAEConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure AeroScout (AE) parameters."
::= { hh3cWlanAEConfigGroup 1 }
hh3cWlanAEConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanAEConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains AE location configuration information."
INDEX
{
hh3cWlanAEAPSerialID
}
::= { hh3cWlanAEConfigTable 1 }
Hh3cWlanAEConfigEntry ::= SEQUENCE
{
hh3cWlanAEAPSerialID OCTET STRING,
hh3cWlanAEStatus TruthValue,
hh3cWlanAEEngineAddr IpAddress,
hh3cWlanAEEnginePort Integer32,
hh3cWlanAEVendorPort Integer32,
hh3cWlanAETimeStamp INTEGER,
hh3cWlanAEVersion INTEGER,
hh3cWlanAETagMultiAddr MacAddress,
hh3cWlanAEEngineDetection INTEGER,
hh3cWlanAEReportMode INTEGER
}
hh3cWlanAEAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanAEConfigEntry 1 }
hh3cWlanAEStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of AE location."
::= { hh3cWlanAEConfigEntry 2 }
hh3cWlanAEEngineAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the server's IPv4 address to which AE messages are sent."
::= { hh3cWlanAEConfigEntry 3 }
hh3cWlanAEEnginePort OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port of the location server."
::= { hh3cWlanAEConfigEntry 4 }
hh3cWlanAEVendorPort OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port to listen for AE messages from the server."
::= { hh3cWlanAEConfigEntry 5 }
hh3cWlanAETimeStamp OBJECT-TYPE
SYNTAX INTEGER
{
absolute(1),
relative(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of timestamp."
::= { hh3cWlanAEConfigEntry 6 }
hh3cWlanAEVersion OBJECT-TYPE
SYNTAX INTEGER
{
v2(2),
v3(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the version of the AE protocol."
::= { hh3cWlanAEConfigEntry 7 }
hh3cWlanAETagMultiAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents Tag's multicast MAC address."
::= { hh3cWlanAEConfigEntry 8 }
hh3cWlanAEEngineDetection OBJECT-TYPE
SYNTAX INTEGER
{
static(1),
dynamic(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the location mode."
::= { hh3cWlanAEConfigEntry 9 }
hh3cWlanAEReportMode OBJECT-TYPE
SYNTAX INTEGER
{
local(1),
central(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the report mode."
::= { hh3cWlanAEConfigEntry 10 }
-- *****************************************************************************
-- * End of hh3cWlanAEConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanAERadioConfigTable Definition
-- *****************************************************************************
hh3cWlanAERadioConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanAERadioConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure AE parameters."
::= { hh3cWlanAEConfigGroup 2 }
hh3cWlanAERadioConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanAERadioConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains AE location configuration information."
INDEX
{
hh3cWlanAERadioAPSerialID,
hh3cWlanAEAPRadioID
}
::= { hh3cWlanAERadioConfigTable 1 }
Hh3cWlanAERadioConfigEntry ::= SEQUENCE
{
hh3cWlanAERadioAPSerialID OCTET STRING,
hh3cWlanAEAPRadioID Integer32,
hh3cWlanAERadioStatus TruthValue,
hh3cWlanAEMUStatus TruthValue,
hh3cWlanAETagStatus TruthValue
}
hh3cWlanAERadioAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanAERadioConfigEntry 1 }
hh3cWlanAEAPRadioID OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the ID of a radio."
::= { hh3cWlanAERadioConfigEntry 2 }
hh3cWlanAERadioStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of radio-based location."
::= { hh3cWlanAERadioConfigEntry 3 }
hh3cWlanAEMUStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of MU message reporting."
::= { hh3cWlanAERadioConfigEntry 4 }
hh3cWlanAETagStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of Tag message reporting."
::= { hh3cWlanAERadioConfigEntry 5 }
-- *****************************************************************************
-- * End of hh3cWlanAERadioConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanCommonConfigTable Definition
-- *****************************************************************************
hh3cWlanCommonConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanCommonConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure common parameters."
::= { hh3cWlanCommonConfigGroup 1 }
hh3cWlanCommonConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanCommonConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains common configuration information."
INDEX
{
hh3cWlanCommonAPSerialID
}
::= { hh3cWlanCommonConfigTable 1 }
Hh3cWlanCommonConfigEntry ::= SEQUENCE
{
hh3cWlanCommonAPSerialID OCTET STRING,
hh3cWlanDilutionStatus TruthValue,
hh3cWlanDilutionFactor Integer32,
hh3cWlanDilutionTimeout Integer32,
hh3cWlanIgnoreBeacon TruthValue,
hh3cWlanRateLimitStatus TruthValue,
hh3cWlanRateLimitCir Integer32,
hh3cWlanRateLimitCbs Integer32,
hh3cWlanClientRateLimitStatus TruthValue,
hh3cWlanClientRateLimitCir Integer32,
hh3cWlanClientRateLimitCbs Integer32,
hh3cWlanRssiStatus TruthValue,
hh3cWlanRssiThreshold Integer32,
hh3cWlanIgnoreApFrame TruthValue
}
hh3cWlanCommonAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanCommonConfigEntry 1 }
hh3cWlanDilutionStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of packet dilution."
::= { hh3cWlanCommonConfigEntry 2 }
hh3cWlanDilutionFactor OBJECT-TYPE
SYNTAX Integer32(0..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the packet dilution factor."
::= { hh3cWlanCommonConfigEntry 3 }
hh3cWlanDilutionTimeout OBJECT-TYPE
SYNTAX Integer32(0..60)
UNITS "Second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the packet dilution timeout."
::= { hh3cWlanCommonConfigEntry 4 }
hh3cWlanIgnoreBeacon OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of beacon ignoring."
::= { hh3cWlanCommonConfigEntry 5 }
hh3cWlanRateLimitStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of location packet rate limiting."
::= { hh3cWlanCommonConfigEntry 6 }
hh3cWlanRateLimitCir OBJECT-TYPE
SYNTAX Integer32(0|8..1300000)
UNITS "Kbps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the CIR for sending location packets."
::= { hh3cWlanCommonConfigEntry 7 }
hh3cWlanRateLimitCbs OBJECT-TYPE
SYNTAX Integer32(0|500..130000000)
UNITS "Bytes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the CBS for sending location packets."
::= { hh3cWlanCommonConfigEntry 8 }
hh3cWlanClientRateLimitStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of client packet rate limiting."
::= { hh3cWlanCommonConfigEntry 9 }
hh3cWlanClientRateLimitCir OBJECT-TYPE
SYNTAX Integer32(0..1300000)
UNITS "Kbps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the CIR for receiving client packets."
::= { hh3cWlanCommonConfigEntry 10 }
hh3cWlanClientRateLimitCbs OBJECT-TYPE
SYNTAX Integer32(0|80..130000000)
UNITS "Bytes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the CBS for receiving client packets."
::= { hh3cWlanCommonConfigEntry 11 }
hh3cWlanRssiStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of RSSI-based packet filtering."
::= { hh3cWlanCommonConfigEntry 12 }
hh3cWlanRssiThreshold OBJECT-TYPE
SYNTAX Integer32(5..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the max RSSI value of clients' packets."
::= { hh3cWlanCommonConfigEntry 13 }
hh3cWlanIgnoreApFrame OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of AP packet ignoring."
::= { hh3cWlanCommonConfigEntry 14 }
-- *****************************************************************************
-- * End of hh3cWlanCommonConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanCUPIDConfigTable Definition
-- *****************************************************************************
hh3cWlanCUPIDConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanCUPIDConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure CUPID parameters."
::= { hh3cWlanCUPIDConfigGroup 1 }
hh3cWlanCUPIDConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanCUPIDConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains CUPID location configuration information."
INDEX
{
hh3cWlanCupidAPSerialID
}
::= { hh3cWlanCUPIDConfigTable 1 }
Hh3cWlanCUPIDConfigEntry ::= SEQUENCE
{
hh3cWlanCupidAPSerialID OCTET STRING,
hh3cWlanCupidStatus TruthValue,
hh3cWlanCupidEngineAddr IpAddress,
hh3cWlanCupidEnginePort Integer32,
hh3cWlanCupidVendorPort Integer32,
hh3cWlanCupidReportStatus TruthValue,
hh3cWlanCupidReportInterval Integer32,
hh3cWlanCupidUnassSta TruthValue,
hh3cWlanCupidUnassMeasureSta TruthValue,
hh3cWlanCupidReportMode INTEGER,
hh3cWlanCUPIDReportFormat INTEGER
}
hh3cWlanCupidAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanCUPIDConfigEntry 1 }
hh3cWlanCupidStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of CUPID location."
::= { hh3cWlanCUPIDConfigEntry 2 }
hh3cWlanCupidEngineAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the IPv4 address of the CUPID location server."
::= { hh3cWlanCUPIDConfigEntry 3 }
hh3cWlanCupidEnginePort OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port of the CUPID location server."
::= { hh3cWlanCUPIDConfigEntry 4 }
hh3cWlanCupidVendorPort OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port to listen for CUPID messages from the server."
::= { hh3cWlanCUPIDConfigEntry 5 }
hh3cWlanCupidReportStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of CUPID location reporting."
::= { hh3cWlanCUPIDConfigEntry 6 }
hh3cWlanCupidReportInterval OBJECT-TYPE
SYNTAX Integer32(1..10)
UNITS "Second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the interval for sending CUPID location packets."
::= { hh3cWlanCUPIDConfigEntry 7 }
hh3cWlanCupidUnassSta OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of unassociated client information
reporting for CUPID location."
::= { hh3cWlanCUPIDConfigEntry 8 }
hh3cWlanCupidUnassMeasureSta OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of CUPID location for unassociated clients."
::= { hh3cWlanCUPIDConfigEntry 9 }
hh3cWlanCupidReportMode OBJECT-TYPE
SYNTAX INTEGER
{
local(1),
central(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the report mode."
::= { hh3cWlanCUPIDConfigEntry 10 }
hh3cWlanCUPIDReportFormat OBJECT-TYPE
SYNTAX INTEGER
{
general(1),
lightweight(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the report format."
::= { hh3cWlanCUPIDConfigEntry 11 }
-- *****************************************************************************
-- * End of hh3cWlanCUPIDConfigTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * hh3cWlanFPConfigTable Definition
-- *****************************************************************************
hh3cWlanFPConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cWlanFPConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administrators must configure RF fingerprinting parameters."
::= { hh3cWlanFPConfigGroup 1 }
hh3cWlanFPConfigEntry OBJECT-TYPE
SYNTAX Hh3cWlanFPConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains RF fingerprinting configuration information."
INDEX
{
hh3cWlanFPAPSerialID
}
::= { hh3cWlanFPConfigTable 1 }
Hh3cWlanFPConfigEntry ::= SEQUENCE
{
hh3cWlanFPAPSerialID OCTET STRING,
hh3cWlanFPStatus TruthValue,
hh3cWlanFPEngineAddr IpAddress,
hh3cWlanFPEnginePort Integer32,
hh3cWlanFPVendorPort Integer32,
hh3cWlanFPRawFrameReport TruthValue,
hh3cWlanFPMUReport TruthValue,
hh3cWlanFPReportMode INTEGER,
hh3cWlanFPReportFormat INTEGER,
hh3cWlanFPTagMultiAddr MacAddress
}
hh3cWlanFPAPSerialID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the serial ID of an AP."
::= { hh3cWlanFPConfigEntry 1 }
hh3cWlanFPStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the enabled or disabled status of RF fingerprinting."
::= { hh3cWlanFPConfigEntry 2 }
hh3cWlanFPEngineAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the IPv4 address of the RF fingerprinting server."
::= { hh3cWlanFPConfigEntry 3 }
hh3cWlanFPEnginePort OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port of the RF fingerprinting server."
::= { hh3cWlanFPConfigEntry 4 }
hh3cWlanFPVendorPort OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the UDP port to listen for RF fingerprinting
packets from the server."
::= { hh3cWlanFPConfigEntry 5 }
hh3cWlanFPRawFrameReport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of raw frame reporting for RF fingerprinting."
::= { hh3cWlanFPConfigEntry 6 }
hh3cWlanFPMUReport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the status of MU information reporting for RF fingerprinting."
::= { hh3cWlanFPConfigEntry 7 }
hh3cWlanFPReportMode OBJECT-TYPE
SYNTAX INTEGER
{
local(1),
central(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the report mode."
::= { hh3cWlanFPConfigEntry 8 }
hh3cWlanFPReportFormat OBJECT-TYPE
SYNTAX INTEGER
{
general(1),
lightweight(2),
cupidhybrid(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the report format."
::= { hh3cWlanFPConfigEntry 9 }
hh3cWlanFPTagMultiAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents Tag's multicast MAC address."
::= { hh3cWlanFPConfigEntry 10 }
-- *****************************************************************************
-- * End of hh3cWlanFPConfigTable Definition
-- *****************************************************************************
END
|