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
|
MIMOSA-NETWORKS-PTMP-MIB DEFINITIONS ::= BEGIN
-- Copyright (C) 2017, Mimosa Networks, Inc. All Rights Reserved.
--
-- Mimosa Networks MIB
-- Revision: 0.3
-- Date: April 05, 2017
--
-- Mimosa Networks, Inc.
-- 469 El Camino Real, Suite 100
-- Santa Clara, CA 95050
-- support@mimosa.co
--
-- This MIB defines the MIB specification for Mimosa Network's Products
--
-- Mimosa reserves the right to make changes to this MIB specification as
-- well as other information related to this specification without prior
-- notice. The user of this specification should consult Mimosa Networks,
-- to determine if any such changes have been made.
--
-- Current MIBs are available from Mimosa Networks at the following URLs:
--
-- http://help.mimosa.co
--
-- In no event shall Mimosa Networks, Inc. be liable for any indirect,
-- consequential, special or incidental damages whatsoever (including
-- but not limited to lost profits or lost revenue) arising out of or
-- related to this specification or the information contained in it.
-- This non-liability extends to even if Mimosa Networks Inc. has been
-- advised of, known, or should have known, the potential for such damages.
-- Mimosa Networks, Inc. hereby grants end-users, and other parties a
-- a non-exclusive license to use this MIB specification in order to
-- manage products of Mimosa Networks, Inc.
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY,
IpAddress, Integer32, Counter64,
Unsigned32 FROM SNMPv2-SMI
DisplayString, TruthValue,
MacAddress, TimeStamp FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
DecimalOne, DecimalTwo,
Mimosa5GHzFrequency,
Mimosa5GHzChannelNumber FROM MIMOSA-MIB-TC
mimosaWireless, mimosaConformanceGroup FROM MIMOSA-NETWORKS-BASE-MIB;
-- *****************************************************************
-- *** Mimosa PTMP variables are specified below. ***
-- *****************************************************************
mimosaPtmp MODULE-IDENTITY
LAST-UPDATED "201704050000Z"
ORGANIZATION "Mimosa Networks"
CONTACT-INFO
"
Postal: Mimosa Networks, Inc.
469 El Camino Real, Suite 100
Santa Clara, CA 95050
US
Tel: +1-408-628-1277
E-mail: inquiry@mimosa.co
"
DESCRIPTION
"The MIB module for Mimosa PTMP products"
REVISION "201704050000Z"
DESCRIPTION
"The first version of this MIB"
::= { mimosaWireless 9 }
mimosaPtmpSsid OBJECT IDENTIFIER ::= { mimosaPtmp 1 }
mimosaPtmpLinkInfo OBJECT IDENTIFIER ::= { mimosaPtmp 2 }
mimosaPtmpChannelPower OBJECT IDENTIFIER ::= { mimosaPtmp 3 }
mimosaPtmpApStats OBJECT IDENTIFIER ::= { mimosaPtmp 4 }
mimosaPtmpClientInfo OBJECT IDENTIFIER ::= { mimosaPtmp 5 }
mimosaPtmpClientStats OBJECT IDENTIFIER ::= { mimosaPtmp 6 }
mimosaPtmpMgmtInfo OBJECT IDENTIFIER ::= { mimosaPtmp 7 }
-- *************************************************************************
-- *** Mimosa SSID Information variables are specified below. ***
-- *************************************************************************
mimosaPtmpSsidTable OBJECT-TYPE
SYNTAX SEQUENCE OF MimosaPtmpSsidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of A5 SSID entries"
::= { mimosaPtmpSsid 1 }
mimosaPtmpSsidEntry OBJECT-TYPE
SYNTAX MimosaPtmpSsidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry that describes each SSID and all its related configuration"
INDEX { mimosaPtmpSsidIndex }
::= { mimosaPtmpSsidTable 1 }
MimosaPtmpSsidEntry ::=
SEQUENCE {
mimosaPtmpSsidIndex Integer32,
mimosaPtmpSsidName DisplayString,
mimosaPtmpSsidType INTEGER,
mimosaPtmpSsidEnabled TruthValue,
mimosaPtmpSsidBroadcastEnabled TruthValue,
mimosaPtmpSsidIsolationEnabled TruthValue
}
mimosaPtmpSsidIndex OBJECT-TYPE
SYNTAX Integer32(1..24)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Describes the index used to access a particular entry in the SSID
table."
::= { mimosaPtmpSsidEntry 1 }
mimosaPtmpSsidName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the name of the SSID"
::= { mimosaPtmpSsidEntry 2 }
mimosaPtmpSsidType OBJECT-TYPE
SYNTAX INTEGER {
hotspot(0),
cpe(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the type of clients that will connect to this SSID. CPE
represents fixed, or Hotspot represents mobile devices"
::= { mimosaPtmpSsidEntry 3 }
mimosaPtmpSsidEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes if the SSID is enabled (True) or disabled (False)"
::= { mimosaPtmpSsidEntry 4 }
mimosaPtmpSsidBroadcastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes if the Broadcast feature for this SSID is enabled or
disabled"
::= { mimosaPtmpSsidEntry 5 }
mimosaPtmpSsidIsolationEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes if the client isolation is enabled or disabled"
::= { mimosaPtmpSsidEntry 6 }
-- *************************************************************************
-- *** Mimosa PTMP Link Information variables are specified below. ***
-- *************************************************************************
mimosaPtmpWirelessMode OBJECT-TYPE
SYNTAX INTEGER {
srs (1),
wifiinterop (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the wireless protocol configured on the Mimosa Device"
::= { mimosaPtmpLinkInfo 1 }
mimosaPtmpWirelessGender OBJECT-TYPE
SYNTAX INTEGER {
a (1),
b (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the wireless protocol gender that defines the transmit
and receive timing"
::= { mimosaPtmpLinkInfo 2 }
mimosaPtmpWirelessTrafficSplit OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes how the bandwidth is split between the AP and Station"
::= { mimosaPtmpLinkInfo 3 }
mimosaPtmpWirelessWindowLength OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the length of the transmit time slot in milliseconds"
::= { mimosaPtmpLinkInfo 4 }
-- *************************************************************************
-- *** Mimosa Radio Channel Power Information variables are specified . ***
-- *************************************************************************
mimosaPtmpAutoChannelEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes if the Auto Channel feature is Enabled or Disabled. This
function selects the channel that results in the best RF
performance."
::= { mimosaPtmpChannelPower 1 }
mimosaPtmpAntennaGain OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the antenna gain for connectorized version of the device.
Measured in dBi."
::= { mimosaPtmpChannelPower 2 }
mimosaPtmpChannelPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF MimosaPtmpChannelPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Channel and Power related information per radio."
::= { mimosaPtmpChannelPower 3 }
mimosaPtmpChannelPowerEntry OBJECT-TYPE
SYNTAX MimosaPtmpChannelPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing channel and power information"
INDEX { mimosaPtmpChPwrRadioIndex }
::= { mimosaPtmpChannelPowerTable 1 }
MimosaPtmpChannelPowerEntry ::=
SEQUENCE {
mimosaPtmpChPwrRadioIndex Unsigned32,
mimosaPtmpChPwrRadioName DisplayString,
mimosaPtmpChPwrCntrFreqCfg Mimosa5GHzFrequency,
mimosaPtmpChPwrPrimChannelCfg Mimosa5GHzChannelNumber,
mimosaPtmpChPwrChWidthCfg Unsigned32,
mimosaPtmpChPwrTxPowerCfg Integer32,
mimosaPtmpChPwrCntrFreqCur Mimosa5GHzFrequency,
mimosaPtmpChPwrPrimChannelCur Mimosa5GHzChannelNumber,
mimosaPtmpChPwrChWidthCur Unsigned32,
mimosaPtmpChPwrTxPowerCur Integer32,
mimosaPtmpChPwrAgcMode INTEGER,
mimosaPtmpChPwrMinRxPower Integer32
}
mimosaPtmpChPwrRadioIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Describes the index of the radio."
::= { mimosaPtmpChannelPowerEntry 1 }
mimosaPtmpChPwrRadioName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the name of the radio."
::= { mimosaPtmpChannelPowerEntry 2 }
mimosaPtmpChPwrCntrFreqCfg OBJECT-TYPE
SYNTAX Mimosa5GHzFrequency
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the configured center frequency of the channel used on the
access point. The center frequency represents the absolute center
of the selected channel width without any offset. Measured in MHz"
::= { mimosaPtmpChannelPowerEntry 3 }
mimosaPtmpChPwrPrimChannelCfg OBJECT-TYPE
SYNTAX Mimosa5GHzChannelNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the primary channel number that corresponds with the
operating frequency."
::= { mimosaPtmpChannelPowerEntry 4 }
mimosaPtmpChPwrChWidthCfg OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the channel width for access point operation: 20 MHz,
40 MHz or 80 MHz"
::= { mimosaPtmpChannelPowerEntry 5 }
mimosaPtmpChPwrTxPowerCfg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the desired transmit power level. The allowed options
are determined by a combination of country and chosen frequency.
Measured in dBm"
::= { mimosaPtmpChannelPowerEntry 6 }
mimosaPtmpChPwrCntrFreqCur OBJECT-TYPE
SYNTAX Mimosa5GHzFrequency
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the current center frequency of the channel used on the
access point. The center frequency represents the absolute center
of the selected channel width without any offset. Measured in MHz"
::= { mimosaPtmpChannelPowerEntry 7 }
mimosaPtmpChPwrPrimChannelCur OBJECT-TYPE
SYNTAX Mimosa5GHzChannelNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the current primary channel number that corresponds with the
operating frequency."
::= { mimosaPtmpChannelPowerEntry 8 }
mimosaPtmpChPwrChWidthCur OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the current channel width for access point operation: 20 MHz,
40 MHz or 80 MHz"
::= { mimosaPtmpChannelPowerEntry 9 }
mimosaPtmpChPwrTxPowerCur OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the current transmit power level. The allowed options
are determined by a combination of country and chosen frequency.
Measured in dBm"
::= { mimosaPtmpChannelPowerEntry 10 }
mimosaPtmpChPwrAgcMode OBJECT-TYPE
SYNTAX INTEGER {
off (0),
manual (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the setting for Automatic Gain Control (AGC) feature,
which is used to set the signal level below which the radio
ignores incoming RF interference. The choices are Off or Manual"
::= { mimosaPtmpChannelPowerEntry 11 }
mimosaPtmpChPwrMinRxPower OBJECT-TYPE
SYNTAX Integer32 (-90..-10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the Rx power level (in manual AGC Mode) below your
expected signal, but above other interference, measured in dBm"
::= { mimosaPtmpChannelPowerEntry 12 }
mimosaPtmpChannelExclusionTable OBJECT-TYPE
SYNTAX SEQUENCE OF MimosaPtmpChannelExclusionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Exclusions and Restrictions"
::= { mimosaPtmpChannelPower 4 }
mimosaPtmpChannelExclusionEntry OBJECT-TYPE
SYNTAX MimosaPtmpChannelExclusionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry that describes each SSID and all its related configuration"
INDEX { mimosaPtmpChannelExclusionIndex }
::= { mimosaPtmpChannelExclusionTable 1 }
MimosaPtmpChannelExclusionEntry ::=
SEQUENCE {
mimosaPtmpChannelExclusionIndex Integer32,
mimosaPtmpChannelExclusionStart Integer32,
mimosaPtmpChannelExclusionEnd Integer32
}
mimosaPtmpChannelExclusionIndex OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Describes the index used to access a particular entry in the
Exclusion list table."
::= { mimosaPtmpChannelExclusionEntry 1 }
mimosaPtmpChannelExclusionStart OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the lower limit for the exclusion range, not including
this frequency"
::= { mimosaPtmpChannelExclusionEntry 2 }
mimosaPtmpChannelExclusionEnd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the upper limit for the exclusion range, not including
this frequency."
::= { mimosaPtmpChannelExclusionEntry 3 }
-- *************************************************************************
-- *** Mimosa Access Point Statistics ***
-- *************************************************************************
mimosaPtmpApStatsRxBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of bytes received by the AP in single-User mode"
::= { mimosaPtmpApStats 1 }
mimosaPtmpApStatsTxBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of bytes transmitted by the AP in single-user
mode"
::= { mimosaPtmpApStats 2 }
mimosaPtmpApStatsRxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of packets received by the AP in single-user mode"
::= { mimosaPtmpApStats 3 }
mimosaPtmpApStatsTxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of packets transmitted by the AP in
single-user mode"
::= { mimosaPtmpApStats 4 }
mimosaPtmpApStatsTxPer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the packet error rate on the transmit path of the
AP, in single-user mode"
::= { mimosaPtmpApStats 5 }
mimosaPtmpApStatsLastUpdated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the last updated time for these statistics"
::= { mimosaPtmpApStats 6 }
-- *************************************************************************
-- *** Mimosa Access Point Client Information ***
-- *************************************************************************
mimosaPtmpClientInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF MimosaPtmpClientInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of all the associated clients and related information of
each of them."
::= { mimosaPtmpClientInfo 1 }
mimosaPtmpClientInfoEntry OBJECT-TYPE
SYNTAX MimosaPtmpClientInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry that describes each client and related configuration and
statistics."
INDEX { mimosaPtmpClientInfoIndex }
::= { mimosaPtmpClientInfoTable 1 }
MimosaPtmpClientInfoEntry ::=
SEQUENCE { mimosaPtmpClientInfoIndex Unsigned32,
mimosaPtmpClientInfoMacAddress MacAddress,
mimosaPtmpClientName DisplayString,
mimosaPtmpClientFWVersion DisplayString,
mimosaPtmpClientIPAddress IpAddress,
mimosaPtmpClientAssociatedTime TimeStamp,
mimosaPtmpClientPlanName DisplayString,
mimosaPtmpClientUlCommitted Unsigned32,
mimosaPtmpClientUlPeak Unsigned32,
mimosaPtmpClientDlCommitted Unsigned32,
mimosaPtmpClientDlPeak Unsigned32,
mimosaPtmpClientInfoLastUpdated TimeStamp }
mimosaPtmpClientInfoIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Describes the index used to access a particular entry in the
Client Traffic Shaping Information table."
::= { mimosaPtmpClientInfoEntry 1 }
mimosaPtmpClientInfoMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the MAC address of the client associated to this access-
point."
::= { mimosaPtmpClientInfoEntry 2 }
mimosaPtmpClientName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the name associated with this client."
::= { mimosaPtmpClientInfoEntry 3 }
mimosaPtmpClientFWVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the firmware version of this client.
This is supported only if the client is a Mimosa device."
::= { mimosaPtmpClientInfoEntry 4 }
mimosaPtmpClientIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the IP Address associated with this client."
::= { mimosaPtmpClientInfoEntry 5 }
mimosaPtmpClientAssociatedTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes how long the client is associated with this access-point."
::= { mimosaPtmpClientInfoEntry 6 }
mimosaPtmpClientPlanName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the Traffic Shaping plan associated with this client."
::= { mimosaPtmpClientInfoEntry 7 }
mimosaPtmpClientUlCommitted OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the Uplink Committed Rate configured for the client."
::= { mimosaPtmpClientInfoEntry 8 }
mimosaPtmpClientUlPeak OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the Uplink Peak Rate configured for the client."
::= { mimosaPtmpClientInfoEntry 9 }
mimosaPtmpClientDlCommitted OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the Downlink Committed Rate configured for the client."
::= { mimosaPtmpClientInfoEntry 10 }
mimosaPtmpClientDlPeak OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the Downlink Peak Rate configured for the client."
::= { mimosaPtmpClientInfoEntry 11 }
mimosaPtmpClientInfoLastUpdated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the last updated time of this information for the Client."
::= { mimosaPtmpClientInfoEntry 12 }
-- *************************************************************************
-- *** Mimosa Access Point Client Statistics ***
-- *************************************************************************
mimosaPtmpClientStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MimosaPtmpClientStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of all the associated clients and related information of each
of them."
::= { mimosaPtmpClientStats 1 }
mimosaPtmpClientStatsEntry OBJECT-TYPE
SYNTAX MimosaPtmpClientStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry that describes each client all its related configuration and
statistics."
INDEX { mimosaPtmpClientStatsIndex }
::= { mimosaPtmpClientStatsTable 1 }
MimosaPtmpClientStatsEntry ::=
SEQUENCE { mimosaPtmpClientStatsIndex Unsigned32,
mimosaPtmpClientStatsMacAddress MacAddress,
mimosaPtmpClientAssocBW Unsigned32,
mimosaPtmpClientRxBytes Counter64,
mimosaPtmpClientTxBytes Counter64,
mimosaPtmpClientRxPkts Counter64,
mimosaPtmpClientTxPkts Counter64,
mimosaPtmpClientRxPhyRate Unsigned32,
mimosaPtmpClientTxPhyRate Unsigned32,
mimosaPtmpClientTxAvgPer DecimalTwo,
mimosaPtmpClientRssiAvg DecimalOne,
mimosaPtmpClientStatsLastUpdated TimeStamp
}
mimosaPtmpClientStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Describes the index used to access a particular entry in the
Client Information table."
::= { mimosaPtmpClientStatsEntry 1 }
mimosaPtmpClientStatsMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the MAC address of the client associated to this access-
point."
::= { mimosaPtmpClientStatsEntry 2 }
mimosaPtmpClientAssocBW OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the associated bandwidth of the client."
::= { mimosaPtmpClientStatsEntry 3 }
mimosaPtmpClientRxBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of bytes received from this client."
::= { mimosaPtmpClientStatsEntry 4 }
mimosaPtmpClientTxBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of bytes transmitted to this client."
::= { mimosaPtmpClientStatsEntry 5 }
mimosaPtmpClientRxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of packets received from this client."
::= { mimosaPtmpClientStatsEntry 6 }
mimosaPtmpClientTxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the number of packets transmitted to this client."
::= { mimosaPtmpClientStatsEntry 7 }
mimosaPtmpClientRxPhyRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the receive rate of this client."
::= { mimosaPtmpClientStatsEntry 8 }
mimosaPtmpClientTxPhyRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the transmit rate of this client."
::= { mimosaPtmpClientStatsEntry 9 }
mimosaPtmpClientTxAvgPer OBJECT-TYPE
SYNTAX DecimalTwo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the average packet error rate on the transmit side for
this client."
::= { mimosaPtmpClientStatsEntry 10 }
mimosaPtmpClientRssiAvg OBJECT-TYPE
SYNTAX DecimalOne
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the average RSSI for this Client."
::= { mimosaPtmpClientStatsEntry 11 }
mimosaPtmpClientStatsLastUpdated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the last updated time of this information for the Client."
::= { mimosaPtmpClientStatsEntry 12 }
-- *************************************************************************
-- *** Mimosa PTMP Management Information variables are specified below. ***
-- *************************************************************************
mimosaPtmpMgmtIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the IP Address configured on the Mimosa Device"
::= { mimosaPtmpMgmtInfo 1 }
mimosaPtmpMgmtIpNetmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the IP netmask configured on the Mimosa Device"
::= { mimosaPtmpMgmtInfo 2 }
mimosaPtmpMgmtIpGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the IP Address of the Gateway configured on the Mimosa
Device"
::= { mimosaPtmpMgmtInfo 3 }
mimosaPtmpMgmtIpMode OBJECT-TYPE
SYNTAX DisplayString (SIZE (4..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the IP Address assignment mode configured on the Mimosa
Device"
::= { mimosaPtmpMgmtInfo 4 }
mimosaPtmpMgmtPrimaryDNS OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the IP Address of the Primary DNS server configured on the
Mimosa Device"
::= { mimosaPtmpMgmtInfo 5 }
mimosaPtmpMgmtSecondaryDNS OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the IP Address of the Secondary DNS server configured on the
Mimosa Device"
::= { mimosaPtmpMgmtInfo 6 }
mimosaPtmpMgmtVlanStatus OBJECT-TYPE
SYNTAX INTEGER {
disable (0),
enable (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the status of management vlan configured on the Mimosa Device"
::= { mimosaPtmpMgmtInfo 7 }
mimosaPtmpMgmtVlanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the management vlan-id configured on the Mimosa Device"
::= { mimosaPtmpMgmtInfo 8 }
mimosaPtmpMgmtVlanPassthrough OBJECT-TYPE
SYNTAX INTEGER {
disable (0),
enable (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the status of the vlan passthrough configured on the Mimosa Device"
::= { mimosaPtmpMgmtInfo 9 }
mimosaPtmpMgmtEthernetMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the Ethernet MAC address configured on the Mimosa Device"
::= { mimosaPtmpMgmtInfo 10 }
---
--- Conformance/Compliance Statements
---
mimosaPtmpConformance OBJECT IDENTIFIER ::= { mimosaConformanceGroup 2 }
mimosaPtmpCompliances OBJECT IDENTIFIER ::= { mimosaPtmpConformance 1 }
mimosaPtmpGroups OBJECT IDENTIFIER ::= { mimosaPtmpConformance 2 }
mimosaPtmpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for PTMP supported Access Points that
implement this MIB."
MODULE
GROUP mimosaPtmpSsidGroup
DESCRIPTION
"The mimosaPtmpSsidGroup is mandatory only for access-point device
supporting PTMP."
GROUP mimosaPtmpLinkInfoGroup
DESCRIPTION
"The mimosaPtmpLinkInfoGroup is mandatory only for access-point
device supporting PTMP."
GROUP mimosaPtmpChannelPowerGroup
DESCRIPTION
"The mimosaPtmpChannelPowerGroup is mandatory only for access-point
device supporting PTMP."
GROUP mimosaPtmpApStatsGroup
DESCRIPTION
"The mimosaPtmpApStatsGroup is mandatory only for access-point
device supporting PTMP."
GROUP mimosaPtmpClientStatsGroup
DESCRIPTION
"The mimosaPtmpClientStatsGroup is mandatory only for access-point
device supporting PTMP."
GROUP mimosaPtmpClientInfoGroup
DESCRIPTION
"The mimosaPtmpClientInfoGroup is mandatory only for access-point
device supporting PTMP."
GROUP mimosaPtmpMgmtInfoGroup
DESCRIPTION
"The mimosaPtmpMgmtInfoGroup is mandatory only for access-point
device supporting PTMP."
::= { mimosaPtmpCompliances 1 }
mimosaPtmpSsidGroup OBJECT-GROUP
OBJECTS {
mimosaPtmpSsidName,
mimosaPtmpSsidType,
mimosaPtmpSsidEnabled,
mimosaPtmpSsidBroadcastEnabled,
mimosaPtmpSsidIsolationEnabled
}
STATUS current
DESCRIPTION
"A collection of objects for the SSID Table."
::= { mimosaPtmpGroups 1 }
mimosaPtmpLinkInfoGroup OBJECT-GROUP
OBJECTS {
mimosaPtmpWirelessMode,
mimosaPtmpWirelessGender,
mimosaPtmpWirelessTrafficSplit,
mimosaPtmpWirelessWindowLength
}
STATUS current
DESCRIPTION
"A collection of objects for the wireless link objects."
::= { mimosaPtmpGroups 2 }
mimosaPtmpChannelPowerGroup OBJECT-GROUP
OBJECTS {
mimosaPtmpAutoChannelEnabled,
mimosaPtmpAntennaGain,
mimosaPtmpChPwrRadioName,
mimosaPtmpChPwrCntrFreqCfg,
mimosaPtmpChPwrPrimChannelCfg,
mimosaPtmpChPwrChWidthCfg,
mimosaPtmpChPwrTxPowerCfg,
mimosaPtmpChPwrCntrFreqCur,
mimosaPtmpChPwrPrimChannelCur,
mimosaPtmpChPwrChWidthCur,
mimosaPtmpChPwrTxPowerCur,
mimosaPtmpChPwrAgcMode,
mimosaPtmpChPwrMinRxPower,
mimosaPtmpChannelExclusionStart,
mimosaPtmpChannelExclusionEnd
}
STATUS current
DESCRIPTION
"A collection of objects for the wireless channel and power settings."
::= { mimosaPtmpGroups 3 }
mimosaPtmpApStatsGroup OBJECT-GROUP
OBJECTS {
mimosaPtmpApStatsRxBytes,
mimosaPtmpApStatsTxBytes,
mimosaPtmpApStatsRxPkts,
mimosaPtmpApStatsTxPkts,
mimosaPtmpApStatsTxPer,
mimosaPtmpApStatsLastUpdated
}
STATUS current
DESCRIPTION
"A collection of objects describing the AP related statistics."
::= { mimosaPtmpGroups 4 }
mimosaPtmpClientInfoGroup OBJECT-GROUP
OBJECTS {
mimosaPtmpClientName,
mimosaPtmpClientFWVersion,
mimosaPtmpClientIPAddress,
mimosaPtmpClientAssociatedTime,
mimosaPtmpClientPlanName,
mimosaPtmpClientUlCommitted,
mimosaPtmpClientUlPeak,
mimosaPtmpClientDlCommitted,
mimosaPtmpClientDlPeak,
mimosaPtmpClientInfoLastUpdated
}
STATUS current
DESCRIPTION
"A collection of objects describing the client details."
::= { mimosaPtmpGroups 5 }
mimosaPtmpClientStatsGroup OBJECT-GROUP
OBJECTS {
mimosaPtmpClientStatsMacAddress,
mimosaPtmpClientAssocBW,
mimosaPtmpClientRxBytes,
mimosaPtmpClientRxPkts,
mimosaPtmpClientTxPkts,
mimosaPtmpClientRssiAvg,
mimosaPtmpClientRxPhyRate,
mimosaPtmpClientTxAvgPer,
mimosaPtmpClientTxPhyRate,
mimosaPtmpClientTxBytes,
mimosaPtmpClientStatsLastUpdated
}
STATUS current
DESCRIPTION
"A collection of objects describing the client statistics."
::= { mimosaPtmpGroups 6 }
mimosaPtmpMgmtInfoGroup OBJECT-GROUP
OBJECTS {
mimosaPtmpMgmtIpAddress,
mimosaPtmpMgmtIpNetmask,
mimosaPtmpMgmtIpGateway,
mimosaPtmpMgmtIpMode,
mimosaPtmpMgmtPrimaryDNS,
mimosaPtmpMgmtSecondaryDNS,
mimosaPtmpMgmtVlanStatus,
mimosaPtmpMgmtVlanId,
mimosaPtmpMgmtVlanPassthrough,
mimosaPtmpMgmtEthernetMac
}
STATUS current
DESCRIPTION
"A collection of objects describing the client details."
::= { mimosaPtmpGroups 7 }
END
|