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
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
|
-- *****************************************************************
-- Meru Networks Enterprise Specific MIB
--
-- Copyright (c) 2005 by Meru Networks
-- All rights reserved
--
-- *****************************************************************
MERU-CONFIG-SECURITY-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
MwlL2SecurityModeBits,
MwlCypherSuiteBits,
MwlCaptivePortalMode,
MwlCaptivePortalAuthMethod,
MwlTunnelTerminationModeBits,
MwlKDDI,
MwlAclEnvState,
MwlFirewallCapability,
MwlManagementFrameProtection,
MwlRadiusMacDelimiter,
MwlRadiusPasswordType,
MwlRadiusCalledStationIdType,
MwlAuthenticationType,
MwlOnOffSwitch,
MwlCaptivePortalAuthenticationType,
MwlCaptivePortalExternalServerType,
MwlProfileOwner
FROM MERU-TC;
mwConfigSecurity 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
Security Configuration infrastructure"
::= { mwConfiguration 9 }
mwWapiServer OBJECT IDENTIFIER ::= { mwConfigSecurity 6 }
mwSecurityProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwSecurityProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Security Configuration Table "
::= { mwConfigSecurity 1 }
mwSecurityProfileEntry OBJECT-TYPE
SYNTAX MwSecurityProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Security Configuration Table "
INDEX { mwSecurityProfileTableIndex }
::= { mwSecurityProfileTable 1 }
MwSecurityProfileEntry ::= SEQUENCE {
mwSecurityProfileTableIndex Integer32,
mwSecurityProfileName DisplayString(SIZE (1..32)),
mwSecurityProfileKDDI MwlKDDI,
mwSecurityProfileEnvState MwlAclEnvState,
mwSecurityProfileReKeyPeriod Unsigned32,
mwSecurityProfileCypherSuites MwlCypherSuiteBits,
mwSecurityProfileReAuthEnable MwlOnOffSwitch,
mwSecurityProfileMFP11wSupport MwlManagementFrameProtection,
mwSecurityProfileL2ModesAllowed MwlL2SecurityModeBits,
mwSecurityProfileStaticWepKeyPos Integer32(1..4),
mwSecurityProfileSecurityLogging MwlOnOffSwitch,
mwSecurityProfileGroupKeyInterval Unsigned32,
mwSecurityProfilePMKCachingStatus MwlOnOffSwitch,
mwSecurityProfileFirewallFilterId DisplayString(SIZE (0..16)),
mwSecurityProfileBKSACachingPeriod Unsigned32,
mwSecurityProfileTunnelTermination MwlTunnelTerminationModeBits,
mwSecurityProfileSharedAuthEnabled MwlOnOffSwitch,
mwSecurityProfileEnableMacFiltering MwlOnOffSwitch,
mwSecurityProfileFirewallCapability MwlFirewallCapability,
mwSecurityProfileCaptivePortalEnabled MwlCaptivePortalMode,
mwSecurityProfileCaptivePortalProfile DisplayString(SIZE (0..32)),
mwSecurityProfileNetworkInitiation8021x MwlOnOffSwitch,
mwSecurityProfilePrimaryRadiusProfileName DisplayString(SIZE (0..16)),
mwSecurityProfileCaptivePortalBypassForMAC MwlOnOffSwitch,
mwSecurityProfileSecondaryRadiusProfileName DisplayString(SIZE (0..16)),
mwSecurityProfilePassthroughFirewallFilterId DisplayString(SIZE (0..16)),
mwSecurityProfileMACAuthPrimaryRadiusProfileName DisplayString,
mwSecurityProfileCaptivePortalAuthenticationMethod MwlCaptivePortalAuthMethod,
mwSecurityProfileMACAuthSecondaryRadiusProfileName DisplayString,
mwSecurityProfileMACAccountingPrimaryRadiusProfileName DisplayString,
mwSecurityProfileMACAccountingSecondaryRadiusProfileName DisplayString,
mwSecurityProfileOwner MwlProfileOwner,
mwSecurityProfilePskKey DisplayString(SIZE (0..66)),
mwSecurityProfileStaticWepKey DisplayString(SIZE (0..28)),
mwSecurityProfileRowStatus RowStatus
}
mwSecurityProfileTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwSecurityProfileEntry 1 }
mwSecurityProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Security Profile Name"
::= { mwSecurityProfileEntry 2 }
mwSecurityProfileKDDI OBJECT-TYPE
SYNTAX MwlKDDI
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Key Rotation"
::= { mwSecurityProfileEntry 3 }
mwSecurityProfileReKeyPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Re-Key Period (seconds)"
::= { mwSecurityProfileEntry 5 }
mwSecurityProfileCypherSuites OBJECT-TYPE
SYNTAX MwlCypherSuiteBits
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Data Encrypt"
::= { mwSecurityProfileEntry 6 }
mwSecurityProfileReAuthEnable OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Reauthentication"
::= { mwSecurityProfileEntry 7 }
mwSecurityProfileL2ModesAllowed OBJECT-TYPE
SYNTAX MwlL2SecurityModeBits
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes L2 Modes Allowed"
::= { mwSecurityProfileEntry 8 }
mwSecurityProfileStaticWepKeyPos OBJECT-TYPE
SYNTAX Integer32(1..4)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Static WEP Key Index"
::= { mwSecurityProfileEntry 10 }
mwSecurityProfileSecurityLogging OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Security Logging"
::= { mwSecurityProfileEntry 11 }
mwSecurityProfileGroupKeyInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Group Keying Interval (seconds)"
::= { mwSecurityProfileEntry 12 }
mwSecurityProfileFirewallFilterId OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Firewall Filter ID"
::= { mwSecurityProfileEntry 13 }
mwSecurityProfileSharedAuthEnabled OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Shared Key Authentication"
::= { mwSecurityProfileEntry 14 }
mwSecurityProfileEnableMacFiltering OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Filtering"
::= { mwSecurityProfileEntry 15 }
mwSecurityProfileFirewallCapability OBJECT-TYPE
SYNTAX MwlFirewallCapability
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Firewall Capability"
::= { mwSecurityProfileEntry 16 }
mwSecurityProfileCaptivePortalEnabled OBJECT-TYPE
SYNTAX MwlCaptivePortalMode
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Captive Portal"
::= { mwSecurityProfileEntry 17 }
mwSecurityProfileNetworkInitiation8021x OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes 802.1X Network Initiation"
::= { mwSecurityProfileEntry 18 }
mwSecurityProfilePrimaryRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Primary RADIUS Profile Name"
::= { mwSecurityProfileEntry 19 }
mwSecurityProfileSecondaryRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Secondary RADIUS Profile Name"
::= { mwSecurityProfileEntry 20 }
mwSecurityProfilePskKey OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..66))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Pre-shared Key (Alphanumeric/Hexadecimal)"
::= { mwSecurityProfileEntry 21 }
mwSecurityProfileStaticWepKey OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..28))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes WEP Key (Alphanumeric/Hexadecimal)"
::= { mwSecurityProfileEntry 22 }
mwSecurityProfilePassthroughFirewallFilterId OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Passthrough Firewall Filter ID"
::= { mwSecurityProfileEntry 23 }
mwSecurityProfileOwner OBJECT-TYPE
SYNTAX MwlProfileOwner
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Owner"
::= { mwSecurityProfileEntry 25 }
mwSecurityProfileCaptivePortalAuthenticationMethod OBJECT-TYPE
SYNTAX MwlCaptivePortalAuthMethod
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Captive Portal Authentication Method"
::= { mwSecurityProfileEntry 27 }
mwSecurityProfileTunnelTermination OBJECT-TYPE
SYNTAX MwlTunnelTerminationModeBits
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Tunnel Termination"
::= { mwSecurityProfileEntry 31 }
mwSecurityProfileBKSACachingPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes BKSA Caching Period (seconds)"
::= { mwSecurityProfileEntry 32 }
mwSecurityProfilePMKCachingStatus OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes PMK Caching"
::= { mwSecurityProfileEntry 33 }
mwSecurityProfileEnvState OBJECT-TYPE
SYNTAX MwlAclEnvState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes ACL Environment State"
::= { mwSecurityProfileEntry 47 }
mwSecurityProfileMACAuthPrimaryRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Auth Primary RADIUS Profile Name"
::= { mwSecurityProfileEntry 48 }
mwSecurityProfileMACAuthSecondaryRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Auth Secondary RADIUS Profile Name"
::= { mwSecurityProfileEntry 49 }
mwSecurityProfileCaptivePortalProfile OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Captive Portal profile"
::= { mwSecurityProfileEntry 50 }
mwSecurityProfileMFP11wSupport OBJECT-TYPE
SYNTAX MwlManagementFrameProtection
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes 802.11W - Management Frame Protection"
::= { mwSecurityProfileEntry 51 }
mwSecurityProfileMACAccountingPrimaryRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Accounting Primary RADIUS Profile Name"
::= { mwSecurityProfileEntry 52 }
mwSecurityProfileMACAccountingSecondaryRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Accounting Secondary RADIUS Profile Name"
::= { mwSecurityProfileEntry 53 }
mwSecurityProfileCaptivePortalBypassForMAC OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Captive Portal Bypass For MAC Authentication"
::= { mwSecurityProfileEntry 54 }
mwSecurityProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwSecurityProfileEntry 61 }
mwSslVarsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwSslVarsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Captive Portal "
::= { mwConfigSecurity 2 }
mwSslVarsEntry OBJECT-TYPE
SYNTAX MwSslVarsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Captive Portal "
INDEX { mwSslVarsTableIndex }
::= { mwSslVarsTable 1 }
MwSslVarsEntry ::= SEQUENCE {
mwSslVarsTableIndex Integer32,
mwSslVarsSslLifeTime Unsigned32,
mwSslVarsCPCertificate DisplayString(SIZE (0..255)),
mwSslVarsCertificateFileName DisplayString(SIZE (0..128))
}
mwSslVarsTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwSslVarsEntry 1 }
mwSslVarsSslLifeTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Server Lifetime"
::= { mwSslVarsEntry 12 }
mwSslVarsCertificateFileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Certificate File Name"
::= { mwSslVarsEntry 15 }
mwSslVarsCPCertificate OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes CP Certificate"
::= { mwSslVarsEntry 26 }
mwRadiusProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwRadiusProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes RADIUS Configuration Table "
::= { mwConfigSecurity 3 }
mwRadiusProfileEntry OBJECT-TYPE
SYNTAX MwRadiusProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes RADIUS Configuration Table "
INDEX { mwRadiusProfileTableIndex }
::= { mwRadiusProfileTable 1 }
MwRadiusProfileEntry ::= SEQUENCE {
mwRadiusProfileTableIndex Integer32,
mwRadiusProfileName DisplayString(SIZE (1..16)),
mwRadiusProfileDescr DisplayString(SIZE (0..128)),
mwRadiusProfileCoaFlag MwlOnOffSwitch,
mwRadiusProfileRadiusIp IpAddress,
mwRadiusProfileRadiusPort Unsigned32,
mwRadiusProfileRadiusRelayApId Unsigned32,
mwRadiusProfileRadiusMacDelimiter MwlRadiusMacDelimiter,
mwRadiusProfileRadiusPasswordType MwlRadiusPasswordType,
mwRadiusProfileCalledStationIdType MwlRadiusCalledStationIdType,
mwRadiusProfileRadiusServerTimeout Integer32(1..20),
mwRadiusProfileRadiusServerRetries Integer32(1..10),
mwRadiusProfileRemoteRadiusServerFlag MwlOnOffSwitch,
mwRadiusProfileOwner MwlProfileOwner,
mwRadiusProfileRadiusSecret DisplayString(SIZE (1..64)),
mwRadiusProfileRowStatus RowStatus
}
mwRadiusProfileTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwRadiusProfileEntry 1 }
mwRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes RADIUS Profile Name"
::= { mwRadiusProfileEntry 2 }
mwRadiusProfileDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Description"
::= { mwRadiusProfileEntry 3 }
mwRadiusProfileRadiusIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes RADIUS IP"
::= { mwRadiusProfileEntry 4 }
mwRadiusProfileRadiusPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes RADIUS Port"
::= { mwRadiusProfileEntry 5 }
mwRadiusProfileRadiusMacDelimiter OBJECT-TYPE
SYNTAX MwlRadiusMacDelimiter
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes MAC Address Delimiter"
::= { mwRadiusProfileEntry 6 }
mwRadiusProfileRadiusPasswordType OBJECT-TYPE
SYNTAX MwlRadiusPasswordType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Password Type"
::= { mwRadiusProfileEntry 7 }
mwRadiusProfileRadiusSecret OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes RADIUS Secret"
::= { mwRadiusProfileEntry 8 }
mwRadiusProfileOwner OBJECT-TYPE
SYNTAX MwlProfileOwner
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Owner"
::= { mwRadiusProfileEntry 9 }
mwRadiusProfileCalledStationIdType OBJECT-TYPE
SYNTAX MwlRadiusCalledStationIdType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Called-Station-ID Type"
::= { mwRadiusProfileEntry 10 }
mwRadiusProfileCoaFlag OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes COA"
::= { mwRadiusProfileEntry 11 }
mwRadiusProfileRadiusRelayApId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes RADIUS Relay AP-ID"
::= { mwRadiusProfileEntry 12 }
mwRadiusProfileRemoteRadiusServerFlag OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Remote RADIUS Server"
::= { mwRadiusProfileEntry 13 }
mwRadiusProfileRadiusServerTimeout OBJECT-TYPE
SYNTAX Integer32(1..20)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes RADIUS Server Timeout"
::= { mwRadiusProfileEntry 14 }
mwRadiusProfileRadiusServerRetries OBJECT-TYPE
SYNTAX Integer32(1..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes RADIUS Server Retries"
::= { mwRadiusProfileEntry 15 }
mwRadiusProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwRadiusProfileEntry 19 }
mwGuestUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwGuestUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Guest User Table "
::= { mwConfigSecurity 4 }
mwGuestUserEntry OBJECT-TYPE
SYNTAX MwGuestUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Guest User Table "
INDEX { mwGuestUserTableIndex }
::= { mwGuestUserTable 1 }
MwGuestUserEntry ::= SEQUENCE {
mwGuestUserTableIndex Integer32,
mwGuestUserGuestName DisplayString(SIZE (1..64)),
mwGuestUserEndTimestamp DateAndTime,
mwGuestUserStartTimestamp DateAndTime,
mwGuestUserGuestPasswd DisplayString(SIZE (1..64)),
mwGuestUserRowStatus RowStatus
}
mwGuestUserTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwGuestUserEntry 1 }
mwGuestUserGuestName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Guest User Name"
::= { mwGuestUserEntry 2 }
mwGuestUserEndTimestamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Service End Time"
::= { mwGuestUserEntry 3 }
mwGuestUserStartTimestamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Service Start Time"
::= { mwGuestUserEntry 4 }
mwGuestUserGuestPasswd OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Guest User Password"
::= { mwGuestUserEntry 5 }
mwGuestUserRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwGuestUserEntry 6 }
mwAuthModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwAuthModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Administrative User Management "
::= { mwConfigSecurity 5 }
mwAuthModeEntry OBJECT-TYPE
SYNTAX MwAuthModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Administrative User Management "
INDEX { mwAuthModeTableIndex }
::= { mwAuthModeTable 1 }
MwAuthModeEntry ::= SEQUENCE {
mwAuthModeTableIndex Integer32,
mwAuthModeAuthType MwlAuthenticationType,
mwAuthModePrimaryRadiusIp IpAddress,
mwAuthModePrimaryTacacsIp IpAddress,
mwAuthModePrimaryRadiusPort Unsigned32,
mwAuthModeSecondaryRadiusIp IpAddress,
mwAuthModePrimaryTacacsPort Unsigned32,
mwAuthModeSecondaryTacacsIp IpAddress,
mwAuthModeSecondaryRadiusPort Unsigned32,
mwAuthModeSecondaryTacacsPort Unsigned32,
mwAuthModePrimaryRadiusSecret DisplayString(SIZE (0..64)),
mwAuthModePrimaryTacacsSecret DisplayString(SIZE (0..64)),
mwAuthModeSecondaryRadiusSecret DisplayString(SIZE (0..64)),
mwAuthModeSecondaryTacacsSecret DisplayString(SIZE (0..64))
}
mwAuthModeTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwAuthModeEntry 1 }
mwAuthModeAuthType OBJECT-TYPE
SYNTAX MwlAuthenticationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes AuthenticationType"
::= { mwAuthModeEntry 2 }
mwAuthModePrimaryRadiusIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Primary RADIUS IP Address"
::= { mwAuthModeEntry 5 }
mwAuthModePrimaryRadiusPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Primary RADIUS Port"
::= { mwAuthModeEntry 6 }
mwAuthModePrimaryRadiusSecret OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Primary RADIUS Secret Key"
::= { mwAuthModeEntry 7 }
mwAuthModeSecondaryRadiusIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Secondary RADIUS IP Address"
::= { mwAuthModeEntry 8 }
mwAuthModeSecondaryRadiusPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Secondary RADIUS Port"
::= { mwAuthModeEntry 9 }
mwAuthModeSecondaryRadiusSecret OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Secondary RADIUS Secret Key"
::= { mwAuthModeEntry 10 }
mwAuthModePrimaryTacacsIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Primary TACACS+ IP Address"
::= { mwAuthModeEntry 11 }
mwAuthModePrimaryTacacsPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Primary TACACS+ Port"
::= { mwAuthModeEntry 12 }
mwAuthModePrimaryTacacsSecret OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Primary TACACS+ Secret Key"
::= { mwAuthModeEntry 13 }
mwAuthModeSecondaryTacacsIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Secondary TACACS+ IP Address"
::= { mwAuthModeEntry 14 }
mwAuthModeSecondaryTacacsPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Secondary TACACS+ Port"
::= { mwAuthModeEntry 15 }
mwAuthModeSecondaryTacacsSecret OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes Secondary TACACS+ Secret Key"
::= { mwAuthModeEntry 16 }
mwWapiServerServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes WAPI Server IP"
::= { mwWapiServer 1 }
mwWapiServerServerPort OBJECT-TYPE
SYNTAX Integer32(1024..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes WAPI Server Port"
::= { mwWapiServer 2 }
mwCaptivePortalProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwCaptivePortalProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Captive Portal "
::= { mwConfigSecurity 7 }
mwCaptivePortalProfileEntry OBJECT-TYPE
SYNTAX MwCaptivePortalProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Captive Portal "
INDEX { mwCaptivePortalProfileTableIndex }
::= { mwCaptivePortalProfileTable 1 }
MwCaptivePortalProfileEntry ::= SEQUENCE {
mwCaptivePortalProfileTableIndex Integer32,
mwCaptivePortalProfileName DisplayString(SIZE (1..32)),
mwCaptivePortalProfileAutoLogin MwlOnOffSwitch,
mwCaptivePortalProfileExternalCPIP IpAddress,
mwCaptivePortalProfileExternalCPURL DisplayString(SIZE (0..255)),
mwCaptivePortalProfileOverrideRadius MwlCaptivePortalAuthenticationType,
mwCaptivePortalProfileExternalServer MwlCaptivePortalExternalServerType,
mwCaptivePortalProfileRadiusProfileName DisplayString(SIZE (0..32)),
mwCaptivePortalProfileCpExemptionProfile DisplayString(SIZE (0..32)),
mwCaptivePortalProfileL3UserSessionTimeout Integer32(1..1440),
mwCaptivePortalProfileAccountingInterimInterval Unsigned32,
mwCaptivePortalProfileSecondaryRadiusProfileName DisplayString(SIZE (0..32)),
mwCaptivePortalProfileCaptivePortalSessionTimeout Integer32(0..1440),
mwCaptivePortalProfileCaptivePortalActivityTimeout Integer32(0..60),
mwCaptivePortalProfilePrimaryAccountingRadiusServer DisplayString(SIZE (0..32)),
mwCaptivePortalProfileSecondaryAccountingRadiusServer DisplayString(SIZE (0..32)),
mwCaptivePortalProfileOwner MwlProfileOwner,
mwCaptivePortalProfileRowStatus RowStatus
}
mwCaptivePortalProfileTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwCaptivePortalProfileEntry 1 }
mwCaptivePortalProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes CP Name"
::= { mwCaptivePortalProfileEntry 2 }
mwCaptivePortalProfileRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Primary Profile"
::= { mwCaptivePortalProfileEntry 3 }
mwCaptivePortalProfileSecondaryRadiusProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Secondary Profile"
::= { mwCaptivePortalProfileEntry 4 }
mwCaptivePortalProfilePrimaryAccountingRadiusServer OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Primary Accounting"
::= { mwCaptivePortalProfileEntry 5 }
mwCaptivePortalProfileSecondaryAccountingRadiusServer OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Secondary Accounting"
::= { mwCaptivePortalProfileEntry 6 }
mwCaptivePortalProfileAccountingInterimInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Accounting Interim Interval (seconds)"
::= { mwCaptivePortalProfileEntry 7 }
mwCaptivePortalProfileOverrideRadius OBJECT-TYPE
SYNTAX MwlCaptivePortalAuthenticationType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Authentication Type"
::= { mwCaptivePortalProfileEntry 8 }
mwCaptivePortalProfileExternalCPURL OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes CaptivePortal External URL"
::= { mwCaptivePortalProfileEntry 9 }
mwCaptivePortalProfileExternalCPIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Public IP of Controller"
::= { mwCaptivePortalProfileEntry 10 }
mwCaptivePortalProfileCaptivePortalSessionTimeout OBJECT-TYPE
SYNTAX Integer32(0..1440)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Session Timeout"
::= { mwCaptivePortalProfileEntry 15 }
mwCaptivePortalProfileCaptivePortalActivityTimeout OBJECT-TYPE
SYNTAX Integer32(0..60)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Activity Timeout"
::= { mwCaptivePortalProfileEntry 16 }
mwCaptivePortalProfileL3UserSessionTimeout OBJECT-TYPE
SYNTAX Integer32(1..1440)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes L3 User Session Timeout(mins)"
::= { mwCaptivePortalProfileEntry 17 }
mwCaptivePortalProfileAutoLogin OBJECT-TYPE
SYNTAX MwlOnOffSwitch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes CNA bypass"
::= { mwCaptivePortalProfileEntry 18 }
mwCaptivePortalProfileOwner OBJECT-TYPE
SYNTAX MwlProfileOwner
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Owner"
::= { mwCaptivePortalProfileEntry 19 }
mwCaptivePortalProfileExternalServer OBJECT-TYPE
SYNTAX MwlCaptivePortalExternalServerType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Captive Portal External Server Type"
::= { mwCaptivePortalProfileEntry 20 }
mwCaptivePortalProfileCpExemptionProfile OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Captive Portal Exemption"
::= { mwCaptivePortalProfileEntry 21 }
mwCaptivePortalProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwCaptivePortalProfileEntry 58 }
mwCaptivePortalExemptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF MwCaptivePortalExemptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Captive Portal Exemptions "
::= { mwConfigSecurity 8 }
mwCaptivePortalExemptionEntry OBJECT-TYPE
SYNTAX MwCaptivePortalExemptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes Captive Portal Exemptions "
INDEX { mwCaptivePortalExemptionTableIndex }
::= { mwCaptivePortalExemptionTable 1 }
MwCaptivePortalExemptionEntry ::= SEQUENCE {
mwCaptivePortalExemptionTableIndex Integer32,
mwCaptivePortalExemptionName DisplayString(SIZE (1..32)),
mwCaptivePortalExemptionFqdn DisplayString,
mwCaptivePortalExemptionDescr DisplayString(SIZE (0..128)),
mwCaptivePortalExemptionOwner MwlProfileOwner,
mwCaptivePortalExemptionRowStatus RowStatus
}
mwCaptivePortalExemptionTableIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value of the table "
::= { mwCaptivePortalExemptionEntry 1 }
mwCaptivePortalExemptionName OBJECT-TYPE
SYNTAX DisplayString(SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Profile Name"
::= { mwCaptivePortalExemptionEntry 2 }
mwCaptivePortalExemptionDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes Description"
::= { mwCaptivePortalExemptionEntry 3 }
mwCaptivePortalExemptionFqdn OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes FQDN"
::= { mwCaptivePortalExemptionEntry 4 }
mwCaptivePortalExemptionOwner OBJECT-TYPE
SYNTAX MwlProfileOwner
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes Owner"
::= { mwCaptivePortalExemptionEntry 5 }
mwCaptivePortalExemptionRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the table"
::= { mwCaptivePortalExemptionEntry 7 }
END
|