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
|
-- *****************************************************************
-- Meru Networks Enterprise Specific MIB
--
-- Copyright (c) 2005 by Meru Networks
-- All rights reserved
--
-- *****************************************************************
MERU-TOPOLOGY-MIB DEFINITIONS ::= BEGIN
IMPORTS
NOTIFICATION-TYPE,
OBJECT-TYPE,
MODULE-IDENTITY,
OBJECT-IDENTITY,
enterprises,
Counter32,
Counter64,
Gauge32,
TimeTicks,
IpAddress,
Integer32
FROM SNMPv2-SMI
Ipv6Address
FROM IPV6-TC
TEXTUAL-CONVENTION,
TimeInterval,
TimeStamp,
DateAndTime,
TruthValue,
DisplayString,
MacAddress,
RowStatus
FROM SNMPv2-TC
mwConfiguration
FROM MERU-SMI
MwlEncryptionAlgorithm,
MwlCapabilityModeBits,
MwlApType,
MwlApIfModeType,
MwlAssociationState,
MwlOnOffSwitch
FROM MERU-TC;
mwTopology MODULE-IDENTITY
LAST-UPDATED "200506050000Z"
ORGANIZATION "Meru Networks"
CONTACT-INFO "support@merunetworks.com"
DESCRIPTION
"This MIB defines all the managed objects used to manage the Meru WLAN
Topology Configuration infrastructure"
::= { mwConfiguration 13 }
mwApAssignedTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApAssignedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assigned Stations "
::= { mwTopology 1 }
mwApAssignedEntry OBJECT-TYPE
SYNTAX MwApAssignedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assigned Stations "
INDEX { mwApAssignedTableIndex }
::= { mwApAssignedTable 1 }
MwApAssignedEntry ::= SEQUENCE {
mwApAssignedTableIndex Integer32,
mwApAssignedApMac MacAddress,
mwApAssignedEssid DisplayString,
mwApAssigneddbState MwlAssociationState,
mwApAssignedPrevRssi Integer32,
mwApAssignedRxPackets Unsigned32,
mwApAssignedTxPackets Unsigned32,
mwApAssignedRadioType MwlApIfModeType,
mwApAssignedAuthKeyType MwlEncryptionAlgorithm,
mwApAssignedCurrentRssi Integer32,
mwApAssignedVirtualPort MacAddress,
mwApAssignedNmsApNodeId Integer32,
mwApAssignedApDeviceType MwlApType,
mwApAssignedLastActivity TimeTicks,
mwApAssignedCapabilities MwlCapabilityModeBits,
mwApAssignedNmsApNodeName DisplayString
}
mwApAssignedTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApAssignedEntry 1 }
mwApAssignedApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Client MAC"
::= { mwApAssignedEntry 2 }
mwApAssignedEssid OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes SSID"
::= { mwApAssignedEntry 3 }
mwApAssigneddbState OBJECT-TYPE
SYNTAX MwlAssociationState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Association State"
::= { mwApAssignedEntry 4 }
mwApAssignedPrevRssi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Previous RSSI"
::= { mwApAssignedEntry 5 }
mwApAssignedRxPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Packets Received"
::= { mwApAssignedEntry 6 }
mwApAssignedTxPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Packets Sent"
::= { mwApAssignedEntry 7 }
mwApAssignedRadioType OBJECT-TYPE
SYNTAX MwlApIfModeType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes RF Band"
::= { mwApAssignedEntry 8 }
mwApAssignedAuthKeyType OBJECT-TYPE
SYNTAX MwlEncryptionAlgorithm
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Key Type"
::= { mwApAssignedEntry 9 }
mwApAssignedCurrentRssi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Current RSSI"
::= { mwApAssignedEntry 10 }
mwApAssignedNmsApNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwApAssignedEntry 11 }
mwApAssignedApDeviceType OBJECT-TYPE
SYNTAX MwlApType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Type"
::= { mwApAssignedEntry 12 }
mwApAssignedLastActivity OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Last Activity"
::= { mwApAssignedEntry 13 }
mwApAssignedNmsApNodeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwApAssignedEntry 14 }
mwApAssignedVirtualPort OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Virtual Port"
::= { mwApAssignedEntry 15 }
mwApAssignedCapabilities OBJECT-TYPE
SYNTAX MwlCapabilityModeBits
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Capabilities"
::= { mwApAssignedEntry 16 }
mwApDiscoveredTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApDiscoveredEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Discovered APs and Stations "
::= { mwTopology 2 }
mwApDiscoveredEntry OBJECT-TYPE
SYNTAX MwApDiscoveredEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Discovered APs and Stations "
INDEX { mwApDiscoveredTableIndex }
::= { mwApDiscoveredTable 1 }
MwApDiscoveredEntry ::= SEQUENCE {
mwApDiscoveredTableIndex Integer32,
mwApDiscoveredApMac MacAddress,
mwApDiscoveredEssid DisplayString,
mwApDiscoveredBssid MacAddress,
mwApDiscoveredChannel Unsigned32,
mwApDiscoveredPrevRssi Integer32,
mwApDiscoveredRxPackets Unsigned32,
mwApDiscoveredRadioType MwlApIfModeType,
mwApDiscoveredWiredRogue MwlOnOffSwitch,
mwApDiscoveredCurrentRssi Integer32,
mwApDiscoveredNmsApNodeId Integer32,
mwApDiscoveredApDeviceType MwlApType,
mwApDiscoveredLastActivity TimeTicks,
mwApDiscoveredNmsApNodeName DisplayString,
mwApDiscoveredConfirmedChannel Unsigned32
}
mwApDiscoveredTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApDiscoveredEntry 1 }
mwApDiscoveredApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes MAC Address"
::= { mwApDiscoveredEntry 2 }
mwApDiscoveredEssid OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes SSID"
::= { mwApDiscoveredEntry 3 }
mwApDiscoveredBssid OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes BSSID"
::= { mwApDiscoveredEntry 4 }
mwApDiscoveredChannel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Operated Channel"
::= { mwApDiscoveredEntry 5 }
mwApDiscoveredPrevRssi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Previous RSSI"
::= { mwApDiscoveredEntry 6 }
mwApDiscoveredRxPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Packets Received"
::= { mwApDiscoveredEntry 7 }
mwApDiscoveredRadioType OBJECT-TYPE
SYNTAX MwlApIfModeType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes RF Band"
::= { mwApDiscoveredEntry 8 }
mwApDiscoveredWiredRogue OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Rogue Detected on the wire"
::= { mwApDiscoveredEntry 9 }
mwApDiscoveredCurrentRssi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Current RSSI"
::= { mwApDiscoveredEntry 10 }
mwApDiscoveredNmsApNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwApDiscoveredEntry 11 }
mwApDiscoveredApDeviceType OBJECT-TYPE
SYNTAX MwlApType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Device Type"
::= { mwApDiscoveredEntry 12 }
mwApDiscoveredLastActivity OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Last activity"
::= { mwApDiscoveredEntry 13 }
mwApDiscoveredNmsApNodeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwApDiscoveredEntry 14 }
mwApDiscoveredConfirmedChannel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Confirmed-Channel"
::= { mwApDiscoveredEntry 15 }
mwTopoApTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwTopoApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Wireless Resources "
::= { mwTopology 4 }
mwTopoApEntry OBJECT-TYPE
SYNTAX MwTopoApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Wireless Resources "
INDEX { mwTopoApTableIndex }
::= { mwTopoApTable 1 }
MwTopoApEntry ::= SEQUENCE {
mwTopoApTableIndex Integer32,
mwTopoApNodeId Unsigned32,
mwTopoApNodeName DisplayString,
mwTopoApAttachedCount Unsigned32,
mwTopoApAssignedCount Unsigned32,
mwTopoApNeighborsCount Unsigned32,
mwTopoApResourceRequest Unsigned32,
mwTopoApResourceAllocated Unsigned32
}
mwTopoApTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwTopoApEntry 1 }
mwTopoApNodeId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwTopoApEntry 2 }
mwTopoApNodeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwTopoApEntry 3 }
mwTopoApAttachedCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Attached Count"
::= { mwTopoApEntry 4 }
mwTopoApAssignedCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Assigned Count"
::= { mwTopoApEntry 5 }
mwTopoApNeighborsCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Neighbor Count"
::= { mwTopoApEntry 6 }
mwTopoApResourceRequest OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Resource Requested"
::= { mwTopoApEntry 7 }
mwTopoApResourceAllocated OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Resource Allocated"
::= { mwTopoApEntry 8 }
mwTopoApapTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwTopoApapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Number of AP edges "
::= { mwTopology 5 }
mwTopoApapEntry OBJECT-TYPE
SYNTAX MwTopoApapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Number of AP edges "
INDEX { mwTopoApapTableIndex }
::= { mwTopoApapTable 1 }
MwTopoApapEntry ::= SEQUENCE {
mwTopoApapTableIndex Integer32,
mwTopoApapHeadId Unsigned32,
mwTopoApapTailId Unsigned32,
mwTopoApapHeadName DisplayString,
mwTopoApapTailName DisplayString
}
mwTopoApapTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwTopoApapEntry 1 }
mwTopoApapHeadId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Detecting AP ID"
::= { mwTopoApapEntry 2 }
mwTopoApapTailId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Sibling AP ID"
::= { mwTopoApapEntry 3 }
mwTopoApapHeadName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Detecting AP Name"
::= { mwTopoApapEntry 4 }
mwTopoApapTailName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Sibling AP Name"
::= { mwTopoApapEntry 5 }
mwTopoStaTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwTopoStaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Stations Topology "
::= { mwTopology 6 }
mwTopoStaEntry OBJECT-TYPE
SYNTAX MwTopoStaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Stations Topology "
INDEX { mwTopoStaTableIndex }
::= { mwTopoStaTable 1 }
MwTopoStaEntry ::= SEQUENCE {
mwTopoStaTableIndex Integer32,
mwTopoStaBssId MacAddress,
mwTopoStaMssId MacAddress,
mwTopoStaMacAddress MacAddress,
mwTopoStaAssocState MwlAssociationState,
mwTopoStaAssignedAp Unsigned32,
mwTopoStaHandoffTime DateAndTime,
mwTopoStaLastActiveTime DateAndTime,
mwTopoStaAssignedApName DisplayString
}
mwTopoStaTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwTopoStaEntry 1 }
mwTopoStaBssId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes BSSID"
::= { mwTopoStaEntry 2 }
mwTopoStaMssId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes MSSID"
::= { mwTopoStaEntry 3 }
mwTopoStaMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes MAC Address"
::= { mwTopoStaEntry 4 }
mwTopoStaAssocState OBJECT-TYPE
SYNTAX MwlAssociationState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Association State"
::= { mwTopoStaEntry 5 }
mwTopoStaAssignedAp OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Assigned AP"
::= { mwTopoStaEntry 6 }
mwTopoStaHandoffTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Last Handoff Time"
::= { mwTopoStaEntry 7 }
mwTopoStaLastActiveTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Last Active Time"
::= { mwTopoStaEntry 8 }
mwTopoStaAssignedApName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Assigned AP Name"
::= { mwTopoStaEntry 9 }
mwTopoStaapTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwTopoStaapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Station/AP Edge Records "
::= { mwTopology 7 }
mwTopoStaapEntry OBJECT-TYPE
SYNTAX MwTopoStaapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Station/AP Edge Records "
INDEX { mwTopoStaapTableIndex }
::= { mwTopoStaapTable 1 }
MwTopoStaapEntry ::= SEQUENCE {
mwTopoStaapTableIndex Integer32,
mwTopoStaapRssi Integer32,
mwTopoStaapStaId MacAddress,
mwTopoStaapApId Unsigned32,
mwTopoStaapApName DisplayString,
mwTopoStaapAssigned MwlOnOffSwitch
}
mwTopoStaapTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwTopoStaapEntry 1 }
mwTopoStaapRssi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes RSSI"
::= { mwTopoStaapEntry 2 }
mwTopoStaapStaId OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Station MAC Address"
::= { mwTopoStaapEntry 3 }
mwTopoStaapApId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwTopoStaapEntry 4 }
mwTopoStaapApName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwTopoStaapEntry 5 }
mwTopoStaapAssigned OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Assigned"
::= { mwTopoStaapEntry 6 }
mwApNeighborTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Neighbors List "
::= { mwTopology 8 }
mwApNeighborEntry OBJECT-TYPE
SYNTAX MwApNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Neighbors List "
INDEX { mwApNeighborTableIndex }
::= { mwApNeighborTable 1 }
MwApNeighborEntry ::= SEQUENCE {
mwApNeighborTableIndex Integer32,
mwApNeighborApMac MacAddress,
mwApNeighborChannel Unsigned32,
mwApNeighborNmsApNodeId Integer32,
mwApNeighborNeighborApId Integer32,
mwApNeighborNeighborApMac MacAddress,
mwApNeighborNmsApInterfaceId Integer32,
mwApNeighborNeighborApCurrentRssi Integer32,
mwApNeighborNeighborApControllerIndex Integer32
}
mwApNeighborTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApNeighborEntry 1 }
mwApNeighborNmsApNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP-ID"
::= { mwApNeighborEntry 2 }
mwApNeighborNmsApInterfaceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Interface Id"
::= { mwApNeighborEntry 3 }
mwApNeighborApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes MAC Address"
::= { mwApNeighborEntry 4 }
mwApNeighborChannel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Channel"
::= { mwApNeighborEntry 5 }
mwApNeighborNeighborApId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Neighbor AP-ID"
::= { mwApNeighborEntry 6 }
mwApNeighborNeighborApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes MAC Address"
::= { mwApNeighborEntry 7 }
mwApNeighborNeighborApControllerIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes ControllerIndex"
::= { mwApNeighborEntry 8 }
mwApNeighborNeighborApCurrentRssi OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes RSSI"
::= { mwApNeighborEntry 9 }
mwApNeighborDetailsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApNeighborDetailsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Neighbors Consolidated List "
::= { mwTopology 9 }
mwApNeighborDetailsEntry OBJECT-TYPE
SYNTAX MwApNeighborDetailsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Neighbors Consolidated List "
INDEX { mwApNeighborDetailsTableIndex }
::= { mwApNeighborDetailsTable 1 }
MwApNeighborDetailsEntry ::= SEQUENCE {
mwApNeighborDetailsTableIndex Integer32,
mwApNeighborDetailsChannel Unsigned32,
mwApNeighborDetailsLocalAp Integer32,
mwApNeighborDetailsRemoteAp Integer32,
mwApNeighborDetailsRssiLevel1 Integer32,
mwApNeighborDetailsRssiLevel2 Integer32,
mwApNeighborDetailsRssiLevel3 Integer32,
mwApNeighborDetailsRssiLevel4 Integer32,
mwApNeighborDetailsNmsApNodeId Integer32,
mwApNeighborDetailsNmsApInterfaceId Integer32
}
mwApNeighborDetailsTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApNeighborDetailsEntry 1 }
mwApNeighborDetailsNmsApNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP-ID"
::= { mwApNeighborDetailsEntry 2 }
mwApNeighborDetailsNmsApInterfaceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Interface Id"
::= { mwApNeighborDetailsEntry 3 }
mwApNeighborDetailsChannel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Channel"
::= { mwApNeighborDetailsEntry 4 }
mwApNeighborDetailsLocalAp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Number of Local APs"
::= { mwApNeighborDetailsEntry 5 }
mwApNeighborDetailsRemoteAp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Number of Remote APs"
::= { mwApNeighborDetailsEntry 6 }
mwApNeighborDetailsRssiLevel1 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Number of APs with RSSI greater than -45"
::= { mwApNeighborDetailsEntry 7 }
mwApNeighborDetailsRssiLevel2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Number of APs with RSSI greater than -65"
::= { mwApNeighborDetailsEntry 8 }
mwApNeighborDetailsRssiLevel3 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Number of APs with RSSI greater than -85"
::= { mwApNeighborDetailsEntry 9 }
mwApNeighborDetailsRssiLevel4 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Number of APs with RSSI less than -85"
::= { mwApNeighborDetailsEntry 10 }
END
|