1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
|
-- *****************************************************************
-- Meru Networks Enterprise Specific MIB
--
-- Copyright (c) 2005 by Meru Networks
-- All rights reserved
--
-- *****************************************************************
MERU-CONFIG-CONTROLLER-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
MwlOperationalState,
MwlAvailabilityStatus,
MwlAlarmState,
MwlControllerHwType,
MwlRegionSettings,
MwlBonding,
MwlEnableDisableOption,
MwlVpnClientProtocol,
MwlVpnConnectivityStatus,
MwlOnOffSwitch
FROM MERU-TC;
mwConfigController 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
Controller Configuration infrastructure"
::= { mwConfiguration 1 }
mwWncVars OBJECT IDENTIFIER ::= { mwConfigController 1 }
mwSystemFileVars OBJECT IDENTIFIER ::= { mwConfigController 3 }
mwVpnServer OBJECT IDENTIFIER ::= { mwConfigController 10 }
mwVpnClient OBJECT IDENTIFIER ::= { mwConfigController 11 }
mwWncVarsDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Description"
::= { mwWncVars 1 }
mwWncVarsLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Location"
::= { mwWncVars 2 }
mwWncVarsContact OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Contact"
::= { mwWncVars 3 }
mwWncVarsAutoApUpgrade OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Automatic AP Upgrade"
::= { mwWncVars 4 }
mwWncVarsDhcpServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes DHCP Server"
::= { mwWncVars 5 }
mwWncVarsStatPollingPeriod OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Statistics Polling Period (seconds)/0 disable Polling. The value must be either 0, or 5-65535"
::= { mwWncVars 6 }
mwWncVarsAuditPeriod OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Audit Polling Period (seconds)/0 disable Polling. The value must be either 0, or 5-65535"
::= { mwWncVars 7 }
mwWncVarsApInitScript OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Default AP Init Script"
::= { mwWncVars 8 }
mwWncVarsDhcpRelayPassThroughFlag OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes DHCP Relay Passthrough"
::= { mwWncVars 9 }
mwWncVarsManagementFromWirelessClients OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Management by wireless stations"
::= { mwWncVars 10 }
mwWncVarsControllerIndex OBJECT-TYPE
SYNTAX Integer32(0..31)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Controller Index. The value must be either 0, or 0-31"
::= { mwWncVars 11 }
mwWncVarsFastPath OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes FastPath Mode"
::= { mwWncVars 14 }
mwWncVarsBonding OBJECT-TYPE
SYNTAX MwlBonding
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Bonding Mode"
::= { mwWncVars 15 }
mwWncVarsNodeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Controller ID"
::= { mwWncVars 18 }
mwWncVarsHostName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Host Name"
::= { mwWncVars 19 }
mwWncVarsUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Uptime"
::= { mwWncVars 20 }
mwWncVarsOperationalState OBJECT-TYPE
SYNTAX MwlOperationalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Operational State"
::= { mwWncVars 21 }
mwWncVarsAvailabilityStatus OBJECT-TYPE
SYNTAX MwlAvailabilityStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Availability Status"
::= { mwWncVars 22 }
mwWncVarsAlarmState OBJECT-TYPE
SYNTAX MwlAlarmState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Alarm State"
::= { mwWncVars 23 }
mwWncVarsVirtualIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Virtual IP Address"
::= { mwWncVars 24 }
mwWncVarsVirtualNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Virtual Netmask"
::= { mwWncVars 25 }
mwWncVarsDefaultGatewayAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Default Gateway"
::= { mwWncVars 26 }
mwWncVarsSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Software Version"
::= { mwWncVars 27 }
mwWncVarsSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Network Device Id"
::= { mwWncVars 28 }
mwWncVarsSystemId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes System Id"
::= { mwWncVars 29 }
mwWncVarsHardwareType OBJECT-TYPE
SYNTAX MwlControllerHwType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Controller Model"
::= { mwWncVars 30 }
mwWncVarsCountry OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Country Setting"
::= { mwWncVars 31 }
mwWncVarsManSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Manufacturing Serial #"
::= { mwWncVars 32 }
mwWncVarsStationAgingOutPeriod OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Station Aging Out Period(minutes). The value must be either 0, or 0-65535"
::= { mwWncVars 33 }
mwWncVarsRoamingDomainState OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Roaming Domain State"
::= { mwWncVars 34 }
mwWncVarsL3RoutingMode OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Layer3 Routing Mode"
::= { mwWncVars 37 }
mwWncVarsRegion OBJECT-TYPE
SYNTAX MwlRegionSettings
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Region Setting"
::= { mwWncVars 38 }
mwWncVarsRoamingTimeOutPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Station Roaming Time Out Period(minutes)"
::= { mwWncVars 41 }
mwSystemFileVarspHostName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Host Name"
::= { mwSystemFileVars 1 }
mwSystemFileVarspDnsDomainName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes DNS Domain Name"
::= { mwSystemFileVars 2 }
mwUdpBcastUpstreamTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwUdpBcastUpstreamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Upstream UDP Broadcast Port "
::= { mwConfigController 4 }
mwUdpBcastUpstreamEntry OBJECT-TYPE
SYNTAX MwUdpBcastUpstreamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Upstream UDP Broadcast Port "
INDEX { mwUdpBcastUpstreamTableIndex }
::= { mwUdpBcastUpstreamTable 1 }
MwUdpBcastUpstreamEntry ::= SEQUENCE {
mwUdpBcastUpstreamTableIndex Integer32,
mwUdpBcastUpstreamPort Unsigned32,
mwUdpBcastUpstreamRowStatus RowStatus
}
mwUdpBcastUpstreamTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwUdpBcastUpstreamEntry 1 }
mwUdpBcastUpstreamPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes UDP Port"
::= { mwUdpBcastUpstreamEntry 2 }
mwUdpBcastUpstreamRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwUdpBcastUpstreamEntry 3 }
mwUdpBcastDownstreamTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwUdpBcastDownstreamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Downstream UDP Broadcast Port "
::= { mwConfigController 5 }
mwUdpBcastDownstreamEntry OBJECT-TYPE
SYNTAX MwUdpBcastDownstreamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Downstream UDP Broadcast Port "
INDEX { mwUdpBcastDownstreamTableIndex }
::= { mwUdpBcastDownstreamTable 1 }
MwUdpBcastDownstreamEntry ::= SEQUENCE {
mwUdpBcastDownstreamTableIndex Integer32,
mwUdpBcastDownstreamPort Unsigned32,
mwUdpBcastDownstreamRowStatus RowStatus
}
mwUdpBcastDownstreamTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwUdpBcastDownstreamEntry 1 }
mwUdpBcastDownstreamPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes UDP Port"
::= { mwUdpBcastDownstreamEntry 2 }
mwUdpBcastDownstreamRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwUdpBcastDownstreamEntry 3 }
mwDnsServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwDnsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes DNS Server Table "
::= { mwConfigController 6 }
mwDnsServerEntry OBJECT-TYPE
SYNTAX MwDnsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes DNS Server Table "
INDEX { mwDnsServerTableIndex }
::= { mwDnsServerTable 1 }
MwDnsServerEntry ::= SEQUENCE {
mwDnsServerTableIndex Integer32,
mwDnsServer IpAddress,
mwDnsServerRowStatus RowStatus
}
mwDnsServerTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwDnsServerEntry 1 }
mwDnsServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes DNS Server"
::= { mwDnsServerEntry 2 }
mwDnsServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwDnsServerEntry 3 }
mwWncNetworkConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwWncNetworkConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Controller Network Configuration Parameters "
::= { mwConfigController 7 }
mwWncNetworkConfigEntry OBJECT-TYPE
SYNTAX MwWncNetworkConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Controller Network Configuration Parameters "
INDEX { mwWncNetworkConfigTableIndex }
::= { mwWncNetworkConfigTable 1 }
MwWncNetworkConfigEntry ::= SEQUENCE {
mwWncNetworkConfigTableIndex Integer32,
mwWncNetworkConfigBonding MwlBonding,
mwWncNetworkConfigFastPath MwlOnOffSwitch,
mwWncNetworkConfigOneGigSFP MwlEnableDisableOption,
mwWncNetworkConfigTenGigModule MwlEnableDisableOption,
mwWncNetworkConfigRebridHandOffLogic MwlOnOffSwitch,
mwWncNetworkConfigRowStatus RowStatus
}
mwWncNetworkConfigTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwWncNetworkConfigEntry 1 }
mwWncNetworkConfigFastPath OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Enabling data fastpath forwarding"
::= { mwWncNetworkConfigEntry 2 }
mwWncNetworkConfigBonding OBJECT-TYPE
SYNTAX MwlBonding
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Bonding Mode"
::= { mwWncNetworkConfigEntry 3 }
mwWncNetworkConfigTenGigModule OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Enabling 10 Gig module card"
::= { mwWncNetworkConfigEntry 4 }
mwWncNetworkConfigRebridHandOffLogic OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Client Handoff Logic"
::= { mwWncNetworkConfigEntry 5 }
mwWncNetworkConfigOneGigSFP OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Enabling 1 Gig SF Port Mode"
::= { mwWncNetworkConfigEntry 6 }
mwWncNetworkConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwWncNetworkConfigEntry 7 }
mwVirtualInterfaceProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwVirtualInterfaceProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Virtual Interface "
::= { mwConfigController 8 }
mwVirtualInterfaceProfileEntry OBJECT-TYPE
SYNTAX MwVirtualInterfaceProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Virtual Interface "
INDEX { mwVirtualInterfaceProfileTableIndex }
::= { mwVirtualInterfaceProfileTable 1 }
MwVirtualInterfaceProfileEntry ::= SEQUENCE {
mwVirtualInterfaceProfileTableIndex Integer32,
mwVirtualInterfaceProfileName DisplayString(SIZE (1..32)),
mwVirtualInterfaceProfileState MwlEnableDisableOption,
mwVirtualInterfaceProfileSubnetIp IpAddress,
mwVirtualInterfaceProfileGatewayIp IpAddress,
mwVirtualInterfaceProfileSubnetMask IpAddress,
mwVirtualInterfaceProfileId Integer32(0..64),
mwVirtualInterfaceProfileRowStatus RowStatus
}
mwVirtualInterfaceProfileTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwVirtualInterfaceProfileEntry 1 }
mwVirtualInterfaceProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Virtual Interface Profile Name"
::= { mwVirtualInterfaceProfileEntry 2 }
mwVirtualInterfaceProfileId OBJECT-TYPE
SYNTAX Integer32(0..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Id"
::= { mwVirtualInterfaceProfileEntry 3 }
mwVirtualInterfaceProfileState OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Enable/Disable"
::= { mwVirtualInterfaceProfileEntry 4 }
mwVirtualInterfaceProfileSubnetIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Subnet IP Address"
::= { mwVirtualInterfaceProfileEntry 5 }
mwVirtualInterfaceProfileSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Subnet Mask"
::= { mwVirtualInterfaceProfileEntry 6 }
mwVirtualInterfaceProfileGatewayIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Gateway IP Address"
::= { mwVirtualInterfaceProfileEntry 7 }
mwVirtualInterfaceProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwVirtualInterfaceProfileEntry 8 }
mwDhcpServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwDhcpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Internal DHCP server configuration "
::= { mwConfigController 9 }
mwDhcpServerEntry OBJECT-TYPE
SYNTAX MwDhcpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Internal DHCP server configuration "
INDEX { mwDhcpServerTableIndex }
::= { mwDhcpServerTable 1 }
MwDhcpServerEntry ::= SEQUENCE {
mwDhcpServerTableIndex Integer32,
mwDhcpServerName DisplayString(SIZE (1..32)),
mwDhcpServerState MwlEnableDisableOption,
mwDhcpServerVlanName DisplayString(SIZE (0..32)),
mwDhcpServerOption43 DisplayString(SIZE (0..32)),
mwDhcpServerLeaseTime Integer32(300..65535),
mwDhcpServerIpPoolEnd IpAddress,
mwDhcpServerDomainName DisplayString,
mwDhcpServerDnsServer1 IpAddress,
mwDhcpServerDnsServer2 IpAddress,
mwDhcpServerIpPoolStart IpAddress,
mwDhcpServerNetbiosServer1 IpAddress,
mwDhcpServerNetbiosServer2 IpAddress,
mwDhcpServerVirtualInterfaceProfileName DisplayString(SIZE (0..32)),
mwDhcpServerRowStatus RowStatus
}
mwDhcpServerTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwDhcpServerEntry 1 }
mwDhcpServerName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes DHCP Server Pool Name"
::= { mwDhcpServerEntry 2 }
mwDhcpServerVlanName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes VLAN Name"
::= { mwDhcpServerEntry 3 }
mwDhcpServerVirtualInterfaceProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Virtual Interface Profile Name"
::= { mwDhcpServerEntry 4 }
mwDhcpServerState OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes State"
::= { mwDhcpServerEntry 5 }
mwDhcpServerLeaseTime OBJECT-TYPE
SYNTAX Integer32(300..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Lease Time (in Seconds)"
::= { mwDhcpServerEntry 6 }
mwDhcpServerIpPoolStart OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes IP Pool start"
::= { mwDhcpServerEntry 7 }
mwDhcpServerIpPoolEnd OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes IP Pool end"
::= { mwDhcpServerEntry 8 }
mwDhcpServerDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Domain Name"
::= { mwDhcpServerEntry 9 }
mwDhcpServerDnsServer1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Primary DNS Server"
::= { mwDhcpServerEntry 10 }
mwDhcpServerDnsServer2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Secondary DNS Server"
::= { mwDhcpServerEntry 11 }
mwDhcpServerNetbiosServer1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Primary Netbios Server"
::= { mwDhcpServerEntry 12 }
mwDhcpServerNetbiosServer2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Secondary Netbios Server"
::= { mwDhcpServerEntry 13 }
mwDhcpServerOption43 OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes DHCP Option 43"
::= { mwDhcpServerEntry 14 }
mwDhcpServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwDhcpServerEntry 16 }
mwVpnServerState OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Status"
::= { mwVpnServer 2 }
mwVpnServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes VPN Server IP"
::= { mwVpnServer 3 }
mwVpnServerHostName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes VPN Server Host Name"
::= { mwVpnServer 4 }
mwVpnServerPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes VPN Server Port"
::= { mwVpnServer 5 }
mwVpnServerIpPool OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes IP Pool"
::= { mwVpnServer 6 }
mwVpnServerSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Netmask"
::= { mwVpnServer 7 }
mwVpnClientState OBJECT-TYPE
SYNTAX MwlEnableDisableOption
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes State"
::= { mwVpnClient 2 }
mwVpnClientVpnServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes VPN Server IP"
::= { mwVpnClient 3 }
mwVpnClientVpnServerPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes VPN Server Port"
::= { mwVpnClient 4 }
mwVpnClientStatus OBJECT-TYPE
SYNTAX MwlVpnConnectivityStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Connectivity Status"
::= { mwVpnClient 5 }
mwVpnClientProtocol OBJECT-TYPE
SYNTAX MwlVpnClientProtocol
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Protocol"
::= { mwVpnClient 6 }
mwUdpBcastUpstreamBridgedTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwUdpBcastUpstreamBridgedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Upstream UDP Broadcast Port Bridged "
::= { mwConfigController 12 }
mwUdpBcastUpstreamBridgedEntry OBJECT-TYPE
SYNTAX MwUdpBcastUpstreamBridgedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Upstream UDP Broadcast Port Bridged "
INDEX { mwUdpBcastUpstreamBridgedTableIndex }
::= { mwUdpBcastUpstreamBridgedTable 1 }
MwUdpBcastUpstreamBridgedEntry ::= SEQUENCE {
mwUdpBcastUpstreamBridgedTableIndex Integer32,
mwUdpBcastUpstreamBridgedPort Unsigned32,
mwUdpBcastUpstreamBridgedRowStatus RowStatus
}
mwUdpBcastUpstreamBridgedTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwUdpBcastUpstreamBridgedEntry 1 }
mwUdpBcastUpstreamBridgedPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes UDP Port"
::= { mwUdpBcastUpstreamBridgedEntry 2 }
mwUdpBcastUpstreamBridgedRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwUdpBcastUpstreamBridgedEntry 3 }
mwUdpBcastDownstreamBridgedTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwUdpBcastDownstreamBridgedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Downstream UDP Broadcast Port Bridged "
::= { mwConfigController 13 }
mwUdpBcastDownstreamBridgedEntry OBJECT-TYPE
SYNTAX MwUdpBcastDownstreamBridgedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Downstream UDP Broadcast Port Bridged "
INDEX { mwUdpBcastDownstreamBridgedTableIndex }
::= { mwUdpBcastDownstreamBridgedTable 1 }
MwUdpBcastDownstreamBridgedEntry ::= SEQUENCE {
mwUdpBcastDownstreamBridgedTableIndex Integer32,
mwUdpBcastDownstreamBridgedPort Unsigned32,
mwUdpBcastDownstreamBridgedRowStatus RowStatus
}
mwUdpBcastDownstreamBridgedTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwUdpBcastDownstreamBridgedEntry 1 }
mwUdpBcastDownstreamBridgedPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes UDP Port"
::= { mwUdpBcastDownstreamBridgedEntry 2 }
mwUdpBcastDownstreamBridgedRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwUdpBcastDownstreamBridgedEntry 3 }
mwWncMobilityVarsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwWncMobilityVarsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Controller Mobility Configuration Parameters "
::= { mwConfigController 14 }
mwWncMobilityVarsEntry OBJECT-TYPE
SYNTAX MwWncMobilityVarsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Controller Mobility Configuration Parameters "
INDEX { mwWncMobilityVarsTableIndex }
::= { mwWncMobilityVarsTable 1 }
MwWncMobilityVarsEntry ::= SEQUENCE {
mwWncMobilityVarsTableIndex Integer32,
mwWncMobilityVarsTopoUpdate MwlOnOffSwitch,
mwWncMobilityVarsAdequateRssi Integer32(-75..-25),
mwWncMobilityVarsAssocStationMaxIdlePeriod Unsigned32,
mwWncMobilityVarsRowStatus RowStatus
}
mwWncMobilityVarsTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwWncMobilityVarsEntry 1 }
mwWncMobilityVarsTopoUpdate OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Topology Information Update"
::= { mwWncMobilityVarsEntry 3 }
mwWncMobilityVarsAssocStationMaxIdlePeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Associated Station Max Idle Period"
::= { mwWncMobilityVarsEntry 4 }
mwWncMobilityVarsAdequateRssi OBJECT-TYPE
SYNTAX Integer32(-75..-25)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Adequate Signal Threshold"
::= { mwWncMobilityVarsEntry 6 }
mwWncMobilityVarsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwWncMobilityVarsEntry 7 }
mwWncIpv6VarsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwWncIpv6VarsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes IPv6 Configuration Parameters "
::= { mwConfigController 15 }
mwWncIpv6VarsEntry OBJECT-TYPE
SYNTAX MwWncIpv6VarsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes IPv6 Configuration Parameters "
INDEX { mwWncIpv6VarsTableIndex }
::= { mwWncIpv6VarsTable 1 }
MwWncIpv6VarsEntry ::= SEQUENCE {
mwWncIpv6VarsTableIndex Integer32,
mwWncIpv6VarsNeighborDiscOptimization MwlOnOffSwitch
}
mwWncIpv6VarsTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwWncIpv6VarsEntry 1 }
mwWncIpv6VarsNeighborDiscOptimization OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Neighbor Discovery Optimization"
::= { mwWncIpv6VarsEntry 2 }
END
|