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
|
-- *****************************************************************
-- Meru Networks Enterprise Specific MIB
--
-- Copyright (c) 2005 by Meru Networks
-- All rights reserved
--
-- *****************************************************************
MERU-CONFIG-AP-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
MwlAlarmState,
MwlLedMode,
MwlOnOffSwitch,
MwlPowerSupply,
MwlApIndoorOutdoorType,
MwlApIpAssignmentType,
MwlDiscoveryOrder,
MwlApDiscoveryState,
MwlEnableDisableOption,
MwlVpnMode,
MwlVpnAuthenticationType,
MwlOperationalState,
MwlAvailabilityStatus,
MwlApHwType,
MwlCertificateStatus,
MwlCertRequestStatus,
MwlVpnConnectivityStatus,
MwlVpnAuthenticationStatus
FROM MERU-TC;
mwConfigAp 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
AP Configuration infrastructure"
::= { mwConfiguration 2 }
mwApTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Table "
::= { mwConfigAp 1 }
mwApEntry OBJECT-TYPE
SYNTAX MwApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Table "
INDEX { mwApTableIndex }
::= { mwApTable 1 }
MwApEntry ::= SEQUENCE {
mwApTableIndex Integer32,
mwApDescr DisplayString(SIZE (1..63)),
mwApFloor DisplayString(SIZE (0..64)),
mwApNodeId Unsigned32,
mwApContact DisplayString(SIZE (0..64)),
mwApLedMode MwlLedMode,
mwApLocation DisplayString(SIZE (0..64)),
mwApBuilding DisplayString(SIZE (0..64)),
mwApParentId Unsigned32,
mwApInitScript DisplayString(SIZE (0..64)),
mwApEncryption MwlOnOffSwitch,
mwApSerialNumber MacAddress,
mwApIndoorOutdoor MwlApIndoorOutdoorType,
mwApPowerSupplyType MwlPowerSupply,
mwApKeepAliveTimeout Integer32(1..1800),
mwApLinkProbingDuration Unsigned32,
mwApUpTime TimeTicks,
mwApHwRev DisplayString,
mwApHwType MwlApHwType,
mwApVlanName DisplayString,
mwApParentMac MacAddress,
mwApAlarmState MwlAlarmState,
mwApBootVersion DisplayString,
mwApFPGAVersion DisplayString,
mwApIpAddress IpAddress,
mwApRuntimeVersion DisplayString,
mwApOperationalState MwlOperationalState,
mwApAvailabilityStatus MwlAvailabilityStatus,
mwApRuntimeDiscoveryOrder MwlApDiscoveryState,
mwApRowStatus RowStatus
}
mwApTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApEntry 1 }
mwApDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwApEntry 2 }
mwApFloor OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Floor"
::= { mwApEntry 3 }
mwApNodeId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwApEntry 4 }
mwApContact OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Contact"
::= { mwApEntry 6 }
mwApLedMode OBJECT-TYPE
SYNTAX MwlLedMode
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes LED Mode"
::= { mwApEntry 7 }
mwApLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Location"
::= { mwApEntry 8 }
mwApBuilding OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Building"
::= { mwApEntry 9 }
mwApParentId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Parent AP ID"
::= { mwApEntry 10 }
mwApInitScript OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP Init Script"
::= { mwApEntry 11 }
mwApEncryption OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Dataplane Encryption"
::= { mwApEntry 12 }
mwApSerialNumber OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Address"
::= { mwApEntry 13 }
mwApIndoorOutdoor OBJECT-TYPE
SYNTAX MwlApIndoorOutdoorType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP Indoor/Outdoor type"
::= { mwApEntry 14 }
mwApLinkProbingDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Link Probing Duration"
::= { mwApEntry 16 }
mwApUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Uptime"
::= { mwApEntry 17 }
mwApHwRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Hardware Revision"
::= { mwApEntry 18 }
mwApHwType OBJECT-TYPE
SYNTAX MwlApHwType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Model"
::= { mwApEntry 19 }
mwApParentMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Parent MAC Address"
::= { mwApEntry 20 }
mwApAlarmState OBJECT-TYPE
SYNTAX MwlAlarmState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Alarm State"
::= { mwApEntry 21 }
mwApBootVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Boot Image Version"
::= { mwApEntry 22 }
mwApFPGAVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes FPGA Version"
::= { mwApEntry 23 }
mwApRuntimeVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Runtime Image Version"
::= { mwApEntry 24 }
mwApOperationalState OBJECT-TYPE
SYNTAX MwlOperationalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Operational State"
::= { mwApEntry 26 }
mwApAvailabilityStatus OBJECT-TYPE
SYNTAX MwlAvailabilityStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Availability Status"
::= { mwApEntry 27 }
mwApRuntimeDiscoveryOrder OBJECT-TYPE
SYNTAX MwlApDiscoveryState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Connectivity Layer"
::= { mwApEntry 28 }
mwApPowerSupplyType OBJECT-TYPE
SYNTAX MwlPowerSupply
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Power Supply Type"
::= { mwApEntry 29 }
mwApKeepAliveTimeout OBJECT-TYPE
SYNTAX Integer32(1..1800)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes KeepAlive Timeout(seconds)"
::= { mwApEntry 30 }
mwApVlanName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VLAN Name"
::= { mwApEntry 38 }
mwApIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP IP Address for L3"
::= { mwApEntry 39 }
mwApRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwApEntry 56 }
mwAp2controllerMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwAp2controllerMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assignments of APs to Controllers "
::= { mwConfigAp 2 }
mwAp2controllerMapEntry OBJECT-TYPE
SYNTAX MwAp2controllerMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assignments of APs to Controllers "
INDEX { mwAp2controllerMapTableIndex }
::= { mwAp2controllerMapTable 1 }
MwAp2controllerMapEntry ::= SEQUENCE {
mwAp2controllerMapTableIndex Integer32,
mwAp2controllerMapApMac MacAddress,
mwAp2controllerMapDestinationController DisplayString,
mwAp2controllerMapRowStatus RowStatus
}
mwAp2controllerMapTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwAp2controllerMapEntry 1 }
mwAp2controllerMapApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP MAC Address"
::= { mwAp2controllerMapEntry 2 }
mwAp2controllerMapDestinationController OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Destination Controller"
::= { mwAp2controllerMapEntry 3 }
mwAp2controllerMapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwAp2controllerMapEntry 4 }
mwApip2controllerMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApip2controllerMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assignments of AP subnet to Controllers "
::= { mwConfigAp 3 }
mwApip2controllerMapEntry OBJECT-TYPE
SYNTAX MwApip2controllerMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Assignments of AP subnet to Controllers "
INDEX { mwApip2controllerMapTableIndex }
::= { mwApip2controllerMapTable 1 }
MwApip2controllerMapEntry ::= SEQUENCE {
mwApip2controllerMapTableIndex Integer32,
mwApip2controllerMapApSubnetIp IpAddress,
mwApip2controllerMapApSubnetMask IpAddress,
mwApip2controllerMapDestinationController DisplayString,
mwApip2controllerMapRowStatus RowStatus
}
mwApip2controllerMapTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApip2controllerMapEntry 1 }
mwApip2controllerMapApSubnetIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP IP Subnet"
::= { mwApip2controllerMapEntry 2 }
mwApip2controllerMapApSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP Netmask"
::= { mwApip2controllerMapEntry 3 }
mwApip2controllerMapDestinationController OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Destination Controller"
::= { mwApip2controllerMapEntry 4 }
mwApip2controllerMapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwApip2controllerMapEntry 5 }
mwApSwapTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApSwapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Replacement Table "
::= { mwConfigAp 4 }
mwApSwapEntry OBJECT-TYPE
SYNTAX MwApSwapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Replacement Table "
INDEX { mwApSwapTableIndex }
::= { mwApSwapTable 1 }
MwApSwapEntry ::= SEQUENCE {
mwApSwapTableIndex Integer32,
mwApSwapNewApMac MacAddress,
mwApSwapCurrentApMac MacAddress,
mwApSwapRowStatus RowStatus
}
mwApSwapTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApSwapEntry 1 }
mwApSwapNewApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes New AP MAC Address"
::= { mwApSwapEntry 2 }
mwApSwapCurrentApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes AP MAC Address"
::= { mwApSwapEntry 3 }
mwApSwapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwApSwapEntry 4 }
mwApConnectivityTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApConnectivityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Network Connectivity configuration "
::= { mwConfigAp 5 }
mwApConnectivityEntry OBJECT-TYPE
SYNTAX MwApConnectivityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Network Connectivity configuration "
INDEX { mwApConnectivityTableIndex }
::= { mwApConnectivityTable 1 }
MwApConnectivityEntry ::= SEQUENCE {
mwApConnectivityTableIndex Integer32,
mwApConnectivityWncIp IpAddress,
mwApConnectivityHostName DisplayString(SIZE (0..63)),
mwApConnectivityPrimaryDns IpAddress,
mwApConnectivityWncHostName DisplayString(SIZE (0..63)),
mwApConnectivityAssignedType MwlApIpAssignmentType,
mwApConnectivitySecondaryDns IpAddress,
mwApConnectivityWncDomainName DisplayString,
mwApConnectivityConfigureIpAddr IpAddress,
mwApConnectivityConfigureNetMask IpAddress,
mwApConnectivityConfigureGatewayAddr IpAddress,
mwApConnectivityConfiguredDiscoveryOrder MwlDiscoveryOrder,
mwApConnectivityNodeId Integer32,
mwApConnectivityNodeName DisplayString,
mwApConnectivityVPNState MwlEnableDisableOption,
mwApConnectivityVPNStatus MwlVpnMode,
mwApConnectivityDomainName DisplayString,
mwApConnectivityVpnServerIp IpAddress,
mwApConnectivityWncTunnelIp IpAddress,
mwApConnectivityRuntimeDns1 IpAddress,
mwApConnectivityRuntimeDns2 IpAddress,
mwApConnectivityRuntimeDns3 IpAddress,
mwApConnectivityRuntimeDns4 IpAddress,
mwApConnectivityRuntimeDns5 IpAddress,
mwApConnectivityRuntimeDns6 IpAddress,
mwApConnectivityRuntimeDns7 IpAddress,
mwApConnectivityRuntimeDns8 IpAddress,
mwApConnectivityVpnServerPort Unsigned32,
mwApConnectivityRuntimeIpAddr IpAddress,
mwApConnectivityVPNAuthMethod MwlVpnAuthenticationType,
mwApConnectivityRuntimeNetMask IpAddress,
mwApConnectivityVpnServerHostName DisplayString(SIZE (0..63)),
mwApConnectivityRuntimeGatewayAddr IpAddress,
mwApConnectivityRuntimeTunnelIpAddr IpAddress,
mwApConnectivityRuntimeDiscoveryState MwlApDiscoveryState
}
mwApConnectivityTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApConnectivityEntry 1 }
mwApConnectivityWncIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Controller Address"
::= { mwApConnectivityEntry 2 }
mwApConnectivityHostName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes AP Host Name"
::= { mwApConnectivityEntry 3 }
mwApConnectivityPrimaryDns OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Primary DNS Server"
::= { mwApConnectivityEntry 4 }
mwApConnectivityWncHostName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Controller Host Name"
::= { mwApConnectivityEntry 5 }
mwApConnectivityAssignedType OBJECT-TYPE
SYNTAX MwlApIpAssignmentType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes IP Type"
::= { mwApConnectivityEntry 6 }
mwApConnectivitySecondaryDns OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Secondary DNS Server "
::= { mwApConnectivityEntry 7 }
mwApConnectivityWncDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Controller Domain Name"
::= { mwApConnectivityEntry 8 }
mwApConnectivityConfigureIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Static IP Address"
::= { mwApConnectivityEntry 9 }
mwApConnectivityConfigureNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Static IP Netmask"
::= { mwApConnectivityEntry 10 }
mwApConnectivityConfigureGatewayAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Static Default Gateway"
::= { mwApConnectivityEntry 11 }
mwApConnectivityConfiguredDiscoveryOrder OBJECT-TYPE
SYNTAX MwlDiscoveryOrder
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Discovery Protocol"
::= { mwApConnectivityEntry 12 }
mwApConnectivityNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwApConnectivityEntry 13 }
mwApConnectivityNodeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwApConnectivityEntry 14 }
mwApConnectivityDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Domain Name"
::= { mwApConnectivityEntry 15 }
mwApConnectivityRuntimeDns1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 1"
::= { mwApConnectivityEntry 16 }
mwApConnectivityRuntimeDns2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 2"
::= { mwApConnectivityEntry 17 }
mwApConnectivityRuntimeDns3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 3"
::= { mwApConnectivityEntry 18 }
mwApConnectivityRuntimeDns4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 4"
::= { mwApConnectivityEntry 19 }
mwApConnectivityRuntimeDns5 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 5"
::= { mwApConnectivityEntry 20 }
mwApConnectivityRuntimeDns6 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 6"
::= { mwApConnectivityEntry 21 }
mwApConnectivityRuntimeDns7 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 7"
::= { mwApConnectivityEntry 22 }
mwApConnectivityRuntimeDns8 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes DNS Server 8"
::= { mwApConnectivityEntry 23 }
mwApConnectivityRuntimeIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes IP Address "
::= { mwApConnectivityEntry 24 }
mwApConnectivityRuntimeNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes NetMask"
::= { mwApConnectivityEntry 25 }
mwApConnectivityRuntimeGatewayAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Gateway"
::= { mwApConnectivityEntry 26 }
mwApConnectivityRuntimeDiscoveryState OBJECT-TYPE
SYNTAX MwlApDiscoveryState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Connectivity Layer"
::= { mwApConnectivityEntry 27 }
mwApConnectivityVPNState OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN"
::= { mwApConnectivityEntry 28 }
mwApConnectivityVPNAuthMethod OBJECT-TYPE
SYNTAX MwlVpnAuthenticationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN Authentication Method"
::= { mwApConnectivityEntry 29 }
mwApConnectivityWncTunnelIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Controller Tunnel IP Address"
::= { mwApConnectivityEntry 30 }
mwApConnectivityRuntimeTunnelIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Tunnel IP "
::= { mwApConnectivityEntry 31 }
mwApConnectivityVpnServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN Server IP"
::= { mwApConnectivityEntry 32 }
mwApConnectivityVpnServerHostName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN Server Host Name"
::= { mwApConnectivityEntry 33 }
mwApConnectivityVpnServerPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN Server Port"
::= { mwApConnectivityEntry 34 }
mwApConnectivityVPNStatus OBJECT-TYPE
SYNTAX MwlVpnMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN Connectivity Mode"
::= { mwApConnectivityEntry 35 }
mwApCertificateTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApCertificateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Certificate configuration "
::= { mwConfigAp 6 }
mwApCertificateEntry OBJECT-TYPE
SYNTAX MwApCertificateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP Certificate configuration "
INDEX { mwApCertificateTableIndex }
::= { mwApCertificateTable 1 }
MwApCertificateEntry ::= SEQUENCE {
mwApCertificateTableIndex Integer32,
mwApCertificateNodeId Integer32,
mwApCertificateNodeName DisplayString,
mwApCertificateApHwType MwlApHwType,
mwApCertificateValidity DateAndTime,
mwApCertificateSerialNumber MacAddress,
mwApCertificateApCertReqStatus MwlCertRequestStatus,
mwApCertificateOperationalState MwlOperationalState,
mwApCertificateAvailabilityStatus MwlAvailabilityStatus,
mwApCertificateStatus MwlCertificateStatus,
mwApCertificateCertificateAuthority DisplayString,
mwApCertificateRowStatus RowStatus
}
mwApCertificateTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApCertificateEntry 1 }
mwApCertificateNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwApCertificateEntry 2 }
mwApCertificateNodeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwApCertificateEntry 3 }
mwApCertificateSerialNumber OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes MAC Address"
::= { mwApCertificateEntry 4 }
mwApCertificateOperationalState OBJECT-TYPE
SYNTAX MwlOperationalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Operational State"
::= { mwApCertificateEntry 5 }
mwApCertificateAvailabilityStatus OBJECT-TYPE
SYNTAX MwlAvailabilityStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Availability Status"
::= { mwApCertificateEntry 6 }
mwApCertificateStatus OBJECT-TYPE
SYNTAX MwlCertificateStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Certificate Status"
::= { mwApCertificateEntry 7 }
mwApCertificateApCertReqStatus OBJECT-TYPE
SYNTAX MwlCertRequestStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes User Req Status"
::= { mwApCertificateEntry 8 }
mwApCertificateCertificateAuthority OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes CA"
::= { mwApCertificateEntry 9 }
mwApCertificateValidity OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Validity (MM/DD/YYYY)"
::= { mwApCertificateEntry 10 }
mwApCertificateApHwType OBJECT-TYPE
SYNTAX MwlApHwType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Model"
::= { mwApCertificateEntry 11 }
mwApCertificateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwApCertificateEntry 20 }
mwApVpnClientInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwApVpnClientInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP VPN Clients Info "
::= { mwConfigAp 7 }
mwApVpnClientInfoEntry OBJECT-TYPE
SYNTAX MwApVpnClientInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes AP VPN Clients Info "
INDEX { mwApVpnClientInfoTableIndex }
::= { mwApVpnClientInfoTable 1 }
MwApVpnClientInfoEntry ::= SEQUENCE {
mwApVpnClientInfoTableIndex Integer32,
mwApVpnClientInfoApMac MacAddress,
mwApVpnClientInfoNodeId Integer32,
mwApVpnClientInfoNodeName DisplayString,
mwApVpnClientInfoRealIpAddr IpAddress,
mwApVpnClientInfoTunnelIpAddr IpAddress,
mwApVpnClientInfoVpnConnectivityStatus MwlVpnConnectivityStatus,
mwApVpnClientInfoVpnAuthenticationStatus MwlVpnAuthenticationStatus
}
mwApVpnClientInfoTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwApVpnClientInfoEntry 1 }
mwApVpnClientInfoNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP ID"
::= { mwApVpnClientInfoEntry 2 }
mwApVpnClientInfoNodeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP Name"
::= { mwApVpnClientInfoEntry 3 }
mwApVpnClientInfoApMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes AP MAC"
::= { mwApVpnClientInfoEntry 4 }
mwApVpnClientInfoTunnelIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN IP Address "
::= { mwApVpnClientInfoEntry 5 }
mwApVpnClientInfoRealIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Real IP Address "
::= { mwApVpnClientInfoEntry 6 }
mwApVpnClientInfoVpnConnectivityStatus OBJECT-TYPE
SYNTAX MwlVpnConnectivityStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN Connectivity Status"
::= { mwApVpnClientInfoEntry 7 }
mwApVpnClientInfoVpnAuthenticationStatus OBJECT-TYPE
SYNTAX MwlVpnAuthenticationStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes VPN Authentication Status"
::= { mwApVpnClientInfoEntry 8 }
END
|