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
|
--
-- Copyright (c) 2006-2013. Aerohive Netowrks, Inc
-- All rights reserved.
AH-INTERFACE-MIB DEFINITIONS ::= BEGIN
--
-- Imports
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC
ahAPInterface, AhString, AhNodeID, AhInterfaceMode, AhInterfaceType, AhMACProtocol
FROM AH-SMI-MIB
ifIndex, ifEntry
FROM IF-MIB;
ahInterface MODULE-IDENTITY
LAST-UPDATED "201608310000Z" -- Aug 31, 2016
ORGANIZATION "Aerohive Networks, Inc"
CONTACT-INFO "info@aerohive.com
1011 McCarthy Boulevard
Milpitas, CA 95035"
DESCRIPTION "This module contains the MIB definition of
interface related information."
::= { ahAPInterface 1 }
AhAuthenticationMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Authentication method supported within Aerohive AP"
SYNTAX INTEGER {
cwp (0),
open (1),
wep-open (2),
wep-shared (3),
wpa-psk (4),
wpa2-psk (5),
wpa-8021x (6),
wpa2-8021X (7),
wpa-auto-psk (8),
wpa-auto-8021x (9),
dynamic-wep (10)
}
AhEncrytionMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Encryption method supported within Aerohive AP"
SYNTAX INTEGER {
AES (0),
TKIP (1),
WEP (2),
Non (3)
}
--
-- Aerohive Extension to ifTable
-- interfaceName
-- SSIDName
-- interfaceMode
--
ahXIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF AhXIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of all the Interface/SSID info
not covered by the rfc 2863"
::= { ahInterface 1 }
ahXIfEntry OBJECT-TYPE
SYNTAX AhXIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Individual entry of Interface/SSID table"
AUGMENTS { ifEntry }
::= { ahXIfTable 1 }
AhXIfEntry ::= SEQUENCE {
ahIfName AhString,
ahSSIDName AhString,
ahIfPromiscuous TruthValue,
ahIfType AhInterfaceType,
ahIfMode AhInterfaceMode,
ahIfConfMode AhInterfaceMode
}
ahIfName OBJECT-TYPE
SYNTAX AhString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name - uniquely identifies an AP Interface."
::= { ahXIfEntry 1 }
ahSSIDName OBJECT-TYPE
SYNTAX AhString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name - identifies a wireless interface with Access mode.
If the interface is not a wireless interface with Access mode, the
SSIDName should be set N/A"
::= { ahXIfEntry 2 }
ahIfPromiscuous OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether an interface is in promiscuous
mode or not."
::= { ahXIfEntry 3 }
ahIfType OBJECT-TYPE
SYNTAX AhInterfaceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether an interface is a physical
or virtual one."
::= { ahXIfEntry 4 }
ahIfMode OBJECT-TYPE
SYNTAX AhInterfaceMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether an interface is used for Access
or Backhaul currently."
::= { ahXIfEntry 5 }
ahIfConfMode OBJECT-TYPE
SYNTAX AhInterfaceMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether an interface is configured for Access
or Backhaul."
::= { ahXIfEntry 6 }
--
-- AssociationTable
-- ClientMac
-- RSSI
-- linkUpTime
--
-- Association are attached to wireless interface with Access mode only
--
ahAssociationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AhAssociationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of directly connected APs"
::= { ahInterface 2 }
ahAssociationEntry OBJECT-TYPE
SYNTAX AhAssociationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Individual entry of client table"
INDEX { ifIndex, ahClientMac }
::= { ahAssociationTable 1 }
AhAssociationEntry ::= SEQUENCE {
ahClientMac AhNodeID,
ahClientIP IpAddress,
ahClientHostname AhString,
ahClientRSSI Integer32,
ahClientLinkUptime Counter32,
ahClientCWPUsed TruthValue,
ahClientAuthMethod AhAuthenticationMethod,
ahClientEncryptionMethod AhEncrytionMethod,
ahClientMACProtocol AhMACProtocol,
ahClientSSID AhString,
ahClientVLAN Integer32,
ahClientUserProfId Integer32,
ahClientChannel Integer32,
ahClientLastTxRate Integer32,
ahClientUsername AhString,
ahClientRxDataFrames Counter32,
ahClientRxDataOctets Counter32,
ahClientRxMgtFrames Counter32,
ahClientRxUnicastFrames Counter32,
ahClientRxMICFailures Counter32,
ahClientLastRxRate Integer32,
ahClientTxDataFrames Counter32,
ahClientTxBeDataFrames Counter32,
ahClientTxBgDataFrames Counter32,
ahClientTxViDataFrames Counter32,
ahClientTxVoDataFrames Counter32,
ahClientTxMgtFrames Counter32,
ahClientTxDataOctets Counter32,
ahClientTxUnicastFrames Counter32,
ahClientTxMulticastFrames Counter32,
ahClientTxBroadcastFrames Counter32,
ahClientTxAirtime Counter64,
ahClientRxAirtime Counter64,
ahClientAssociationTime Counter32,
ahClientBSSID AhNodeID
}
ahClientMac OBJECT-TYPE
SYNTAX AhNodeID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Uniquely identifies a client."
::= { ahAssociationEntry 1 }
ahClientIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address of the client if known. Otherwise, this
field should be 0"
::= { ahAssociationEntry 2 }
ahClientHostname OBJECT-TYPE
SYNTAX AhString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The host name of the client if known. Otherwise, this
field should be empty"
::= { ahAssociationEntry 3 }
ahClientRSSI OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An indicator for the RSSI of the client
derived from last communication"
::= { ahAssociationEntry 4 }
ahClientLinkUptime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Link up time in second"
::= { ahAssociationEntry 5 }
ahClientCWPUsed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The boolean indicating whether Captive Web Portal
is used."
::= { ahAssociationEntry 6 }
ahClientAuthMethod OBJECT-TYPE
SYNTAX AhAuthenticationMethod
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The authentication method the client uses to communicated
with AP"
::= { ahAssociationEntry 7 }
ahClientEncryptionMethod OBJECT-TYPE
SYNTAX AhEncrytionMethod
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The encryption method the client uses to communicated
with AP"
::= { ahAssociationEntry 8 }
ahClientMACProtocol OBJECT-TYPE
SYNTAX AhMACProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The radio mode the client uses to communicated
with AP"
::= { ahAssociationEntry 9 }
ahClientSSID OBJECT-TYPE
SYNTAX AhString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The SSID used by client to communicated
with AP"
::= { ahAssociationEntry 10 }
ahClientVLAN OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The VLAN used by client to communicated
with AP"
::= { ahAssociationEntry 11 }
ahClientUserProfId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The user profile id used by client to communicated
with AP"
::= { ahAssociationEntry 12 }
ahClientChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The radio channel used by client to communicated
with AP"
::= { ahAssociationEntry 13 }
ahClientLastTxRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The rate (KBPS) of last transmitting frame to the client."
::= { ahAssociationEntry 14 }
ahClientUsername OBJECT-TYPE
SYNTAX AhString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The client user name to login to the network.
It contain empty string if the authentication
method is other than EAP (802.1x)."
::= { ahAssociationEntry 15 }
ahClientRxDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of data frames received from client
to AP"
::= { ahAssociationEntry 16 }
ahClientRxDataOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of data octets received from client
to AP"
::= { ahAssociationEntry 17 }
ahClientRxMgtFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of mgt frames received from client
to AP"
::= { ahAssociationEntry 18 }
ahClientRxUnicastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of unitcast frames received from client
to AP"
::= { ahAssociationEntry 19 }
ahClientRxMulticastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of multicast frames received
from client to AP."
::= { ahAssociationEntry 20 }
ahClientRxBroadcastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of broadcast frames received
from client to AP."
::= { ahAssociationEntry 21 }
ahClientRxMICFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of frames dropped due to Message
Integrity Check failure from client to AP."
::= { ahAssociationEntry 22 }
ahClientTxDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted data frames
from ."
::= { ahAssociationEntry 23 }
ahClientTxMgtFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted management frames
from ."
::= { ahAssociationEntry 24 }
ahClientTxDataOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted data in octets
from ."
::= { ahAssociationEntry 25 }
ahClientTxUnicastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of unitcast frames transmitted from client
to AP"
::= { ahAssociationEntry 26 }
ahClientTxMulticastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of multicast frames transmitted from client
to AP"
::= { ahAssociationEntry 27 }
ahClientTxBroadcastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of broadcast frames transmitted from client
to AP"
::= { ahAssociationEntry 28 }
ahClientLastRxRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The rate (KBPS) of last received frame from client."
::= { ahAssociationEntry 29 }
ahClientTxBeDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted best effort priority data frames
from AP to client."
::= { ahAssociationEntry 30 }
ahClientTxBgDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted back ground priority data frames
from AP to client."
::= { ahAssociationEntry 31 }
ahClientTxViDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted video priority data frames
from AP to client."
::= { ahAssociationEntry 32 }
ahClientTxVoDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted voice priority data frames
from AP to client."
::= { ahAssociationEntry 33 }
ahClientTxAirtime OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative transmit time in microseconds ()
from AP to client."
::= { ahAssociationEntry 34 }
ahClientRxAirtime OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative receive time in microseconds (us)
from client to AP."
::= { ahAssociationEntry 35 }
ahClientAssociationTime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The association time(s) of client connect to AP."
::= { ahAssociationEntry 36 }
ahClientBSSID OBJECT-TYPE
SYNTAX AhNodeID
MAX-ACCESS read-only
STATUS current
DESCRIPTION "It is the basic service set identifier of the client."
::= { ahAssociationEntry 37 }
--
-- ahIfRadioStatsTable
--
-- Statistics for Aerohive HiveAP Radio interfaces.
--
ahRadioStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AhRadioStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of radio interface statistics."
::= { ahInterface 3 }
ahRadioStatsEntry OBJECT-TYPE
SYNTAX AhRadioStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Individual entry of client table"
INDEX { ifIndex }
::= { ahRadioStatsTable 1 }
AhRadioStatsEntry ::= SEQUENCE {
ahRadioTxDataFrames Counter32,
ahRadioTxBeDataFrames Counter32,
ahRadioTxBgDataFrames Counter32,
ahRadioTxViDataFrames Counter32,
ahRadioTxVoDataFrames Counter32,
ahRadioTxUnicastDataFrames Counter32,
ahRadioTxMulticastDataFrames Counter32,
ahRadioTxBroadcastDataFrames Counter32,
ahRadioTxNonBeaconMgtFrames Counter32,
ahRadioTxBeaconFrames Counter32,
ahRadioTxTotalRetries Counter32,
ahRadioTxTotalFramesDropped Counter32,
ahRadioTxTotalFrameErrors Counter32,
ahRadioTxFEForExcessiveHWRetries Counter32,
ahRadioTXRTSFailures Counter32,
ahRadioRxTotalDataFrames Counter32,
ahRadioRxUnicastDataFrames Counter32,
ahRadioRxMulticastDataFrames Counter32,
ahRadioRxBroadcastDataFrames Counter32,
ahRadioRxMgtFrames Counter32,
ahRadioRxTotalFrameDropped Counter32,
ahRadioTxAirtime Counter64,
ahRadioRxAirtime Counter64
}
ahRadioTxDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmit data frames for the given
interface."
::= { ahRadioStatsEntry 1 }
ahRadioTxUnicastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted unicast frames
for the given interface."
::= { ahRadioStatsEntry 2 }
ahRadioTxMulticastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted multicast frames
for the given interface."
::= { ahRadioStatsEntry 3 }
ahRadioTxBroadcastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted broadcast frames
for the given interface."
::= { ahRadioStatsEntry 4 }
ahRadioTxNonBeaconMgtFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmit management frames
other than beacon for the given interface."
::= { ahRadioStatsEntry 5 }
ahRadioTxBeaconFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmit beacon frames for the given
interface."
::= { ahRadioStatsEntry 6 }
ahRadioTxTotalRetries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of transmit retries for the given
interface."
::= { ahRadioStatsEntry 7 }
ahRadioTxTotalFramesDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmit frames dropped
for the given interface."
::= { ahRadioStatsEntry 8 }
ahRadioTxTotalFrameErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of transmit frames in error
for the given interface."
::= { ahRadioStatsEntry 9 }
ahRadioTxFEForExcessiveHWRetries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmit frames in error due to
excessive hardware retries for the given interface."
::= { ahRadioStatsEntry 10 }
ahRadioRxTotalDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of received data frames
for the given interface."
::= { ahRadioStatsEntry 11 }
ahRadioRxUnicastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received unicast frames
for the given interface."
::= { ahRadioStatsEntry 12 }
ahRadioRxMulticastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received multicast frames
for the given interface."
::= { ahRadioStatsEntry 13 }
ahRadioRxBroadcastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received broadcast frames
for the given interface."
::= { ahRadioStatsEntry 14 }
ahRadioRxMgtFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received management frames
for the given interface."
::= { ahRadioStatsEntry 15 }
ahRadioRxTotalFrameDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of dropped received frames
for the given interface."
::= { ahRadioStatsEntry 16 }
ahRadioTxBeDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted best effort priority data frames
from the radio."
::= { ahRadioStatsEntry 17 }
ahRadioTxBgDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted back ground priority data frames
from the radio."
::= { ahRadioStatsEntry 18 }
ahRadioTxViDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted video priority data frames
from the radio."
::= { ahRadioStatsEntry 19 }
ahRadioTxVoDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted voice priority data frames
from the radio."
::= { ahRadioStatsEntry 20 }
ahRadioTXRTSFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted RTS failures
from the Radio."
::= { ahRadioStatsEntry 21 }
ahRadioTxAirtime OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative transmit time in microseconds (us)
from the given Radio."
::= { ahRadioStatsEntry 22 }
ahRadioRxAirtime OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative receive time in microseconds (us)
to the given radio."
::= { ahRadioStatsEntry 23 }
--
-- ahVIfStatsTable
--
-- Statistics for Aerohive HiveAP Virtual Interfaces (VIf).
--
ahVIfStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AhVIfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of virtual interface (vif) statistics."
::= { ahInterface 4 }
ahVIfStatsEntry OBJECT-TYPE
SYNTAX AhVIfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Individual entry of VIf statistics"
INDEX { ifIndex }
::= { ahVIfStatsTable 1 }
AhVIfStatsEntry ::= SEQUENCE {
ahVIfRxDataFrames Counter32,
ahVIfRxUnicastDataFrames Counter32,
ahVIfRxMulticastDataFrames Counter32,
ahVIfRxBroadcastDataFrames Counter32,
ahVIfRxErrorFrames Counter32,
ahVIfRxDroppedFrames Counter32,
ahVIfTxDataFrames Counter32,
ahVIfTxBeDataFrames Counter32,
ahVIfTxBgDataFrames Counter32,
ahVIfTxViDataFrames Counter32,
ahVIfTxVoDataFrames Counter32,
ahVIfTxUnicastDataFrames Counter32,
ahVIfTxMulticastDataFrames Counter32,
ahVIfTxBroadcastDataFrames Counter32,
ahVIfTxErrorFrames Counter32,
ahVIfTxDroppedFrames Counter32,
ahVifTxAirtime Counter64,
ahVifRxAirtime Counter64
}
ahVIfRxDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received data frames for the given
virtual interface."
::= { ahVIfStatsEntry 1 }
ahVIfRxUnicastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received unicast data frames
for the given virtual interface."
::= { ahVIfStatsEntry 2 }
ahVIfRxMulticastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received multicast data frames
for the given virtual interface."
::= { ahVIfStatsEntry 3 }
ahVIfRxBroadcastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received broadcast data frames
for the given virtual interface."
::= { ahVIfStatsEntry 4 }
ahVIfRxErrorFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received error frames for the given
virtual interface."
::= { ahVIfStatsEntry 5 }
ahVIfRxDroppedFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received dropped frames for the given
virtual interface."
::= { ahVIfStatsEntry 6 }
ahVIfTxDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of trasmitted data frames
for the given virtual interface."
::= { ahVIfStatsEntry 7 }
ahVIfTxUnicastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted unicast data frames
for the given virtual interface."
::= { ahVIfStatsEntry 8 }
ahVIfTxMulticastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted multicast data frames
for the given virtual interface."
::= { ahVIfStatsEntry 9 }
ahVIfTxBroadcastDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted broadcast data frames
for the given virtual interface."
::= { ahVIfStatsEntry 10 }
ahVIfTxErrorFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of trasmitted frames encontered error
for the given virtual interface."
::= { ahVIfStatsEntry 11 }
ahVIfTxDroppedFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of trasmitted frames dropped due to error
condition for the given virtual interface."
::= { ahVIfStatsEntry 12 }
ahVIfTxBeDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted best effort priority data frames
from the virtual interface."
::= { ahVIfStatsEntry 13 }
ahVIfTxBgDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted back ground priority data frames
from the virtual interface."
::= { ahVIfStatsEntry 14 }
ahVIfTxViDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted video priority data frames
from the virtual interface."
::= { ahVIfStatsEntry 15 }
ahVIfTxVoDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of transmitted voice priority data frames
from the virtual interface."
::= { ahVIfStatsEntry 16 }
ahVifTxAirtime OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative transmit time in microseconds (us)
from the given SSID."
::= { ahVIfStatsEntry 17 }
ahVifRxAirtime OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative receive time in microseconds (us)
to the given SSID."
::= { ahVIfStatsEntry 18 }
--
-- ahIfRadioAttributeTable
--
-- Attribute for Aerohive HiveAP Radio interfaces.
--
ahRadioAttributeTable OBJECT-TYPE
SYNTAX SEQUENCE OF AhRadioAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of radio interface statistics."
::= { ahInterface 5 }
ahRadioAttributeEntry OBJECT-TYPE
SYNTAX AhRadioAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Individual entry for each Radio"
INDEX { ifIndex }
::= { ahRadioAttributeTable 1 }
AhRadioAttributeEntry ::= SEQUENCE {
ahRadioChannel Integer32,
ahRadioTxPower Integer32,
ahRadioNoiseFloor Integer32
}
ahRadioChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The channel number currently in use for this radio."
::= { ahRadioAttributeEntry 1 }
ahRadioTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The transmit power currently for the radio in dbm. The range
is 0 to 20 dBm"
::= { ahRadioAttributeEntry 2 }
ahRadioNoiseFloor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The noise floor for the radio dbm. The range is 0 to 256 dBm.
The value of this variable is the actual value plus 256 dBm."
::= { ahRadioAttributeEntry 3 }
END
|