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
|
-- ============================================================================
-- Copyright (C) 2020 by HUAWEI TECHNOLOGIES. All rights reserved.
-- Description: The mib is used for update the ap's program version.
-- Reference: HUAWEI-WLAN-MIB
-- Version: V1.21
-- ============================================================================
-- Module definition
HUAWEI-WLAN-AP-UPDATE-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwWlan
FROM HUAWEI-WLAN-MIB
hwWlanApType
FROM HUAWEI-WLAN-AP-MIB
hwAPGroupName
FROM HUAWEI-WLAN-CONFIGURATION-MIB
hwWlanApName
FROM HUAWEI-WLAN-AP-MIB
hwWlanApMac
FROM HUAWEI-WLAN-AP-MIB
hwWlanApId
FROM HUAWEI-WLAN-AP-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, Integer32, Unsigned32, Counter64, OBJECT-TYPE,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
MacAddress, RowStatus, DateAndTime
FROM SNMPv2-TC;
--1.3.6.1.4.1.2011.6.139.14
hwWlanApUpdate MODULE-IDENTITY
LAST-UPDATED "202007082018Z" -- July 8, 2020 at 20:18 GMT
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"V1.21, add insufficientMemoryAsNgeEnable for hwWlanApUpdateProgressStatus"
REVISION "202007082018Z" -- July 8, 2020 at 20:18 GMT
DESCRIPTION
"V1.20, hwWlanApUpdateProgressStatus"
REVISION "202004091508Z" -- Apr 9, 2020 at 15:09 GMT
DESCRIPTION
"The MIB module defines the AP update operation."
REVISION "202001062230Z" -- Jan 6, 2020 at 22:30 GMT
DESCRIPTION
"V1.19, hwWlanApUpdateResetPartitionId, hwWlanApUpdateResetPrimaryAccessIPv4, hwWlanApUpdateResetPrimaryAccessIPv6, hwWlanApUpdateApPartitionId, hwWlanApUpdateApChannel"
REVISION "201911041150Z" -- November 4, 2019 at 11:50 GMT
DESCRIPTION
"V1.18, hwWlanApUpdateProgressStatus, hwWlanApUpdateResult, hwWlanApUpdateResultStatus "
REVISION "201902181120Z" -- February 18, 2019 at 11:20 GMT
DESCRIPTION
"V1.17, Add the hwWlanApUpdateFTPIPv6Username, hwWlanApUpdateFTPIPv6Password, hwWlanApUpdateSFTPIPv6Username, hwWlanApUpdateSFTPIPv6Password,
hwWlanApUpdateFTPIPv6MaxConnectNum and hwWlanApUpdateSFTPIPv6MaxConnectNum "
REVISION "201901141040Z" -- Jan 14, 2019 at 10:40 GMT
DESCRIPTION
"V1.16, Modify the hwWlanApTypeGroupUpdatePatchFilename "
REVISION "201803051540Z" -- March 5, 2018 at 15:40 GMT
DESCRIPTION
"V1.15, Modify the hwWlanApUpdateProgressStatus "
REVISION "201712101555Z" -- Dec 10, 2017 at 15:55 GMT
DESCRIPTION
"V1.14, Add the hwWlanApUpdateApGroup in the hwWlanApUpdateProgressTable."
REVISION "201711290955Z" -- Nov 29, 2017 at 09:55 GMT
DESCRIPTION
"V1.14, Modify the hwWlanApUpdateEndTime in the hwWlanApUpdateProgressTable."
REVISION "201710261555Z" -- Oct 26, 2017 at 15:55 GMT
DESCRIPTION
"V1.14, Add the hwWlanApUpdateFileVersion and hwWlanApUpdateEndTime in the hwWlanApUpdateProgressTable."
REVISION "201706071911Z" -- June 19, 2017 at 09:11 GMT
DESCRIPTION
"V1.13, Modify the hwWlanApUpdateProgressStatus."
REVISION "201706011633Z" -- June 1, 2017 at 16:33 GMT
DESCRIPTION
"V1.12, Modify the hwWlanApUpdateProgressStatus."
REVISION "201704181525Z" -- April 18, 2017 at 15:25 GMT
DESCRIPTION
"V1.11, Modify the hwWlanApUpdateProgressStatus."
REVISION "201611071451Z" -- Nov 7, 2016 at 14:51 GMT
DESCRIPTION
"V1.10, Modify the hwWlanApUpdateProgressStatus."
REVISION "201606021520Z" -- June 2, 2016 at 15:20 GMT
DESCRIPTION
"V1.09, Add the hwWlanApUpdateOperEntry."
REVISION "201605171015Z" -- May 17, 2016 at 10:15 GMT
DESCRIPTION
"V1.08, Add the hwWlanApUpdateFileType in the hwWlanApUpdateProgressTable."
REVISION "201604181120Z" -- April 18, 2016 at 11:20 GMT
DESCRIPTION
"V1.07, Add the hwWlanApUpdateScheduleTaskTable and the hwWlanApUpdateType in the hwWlanApUpdateProgressTable."
REVISION "201603231009Z" -- March 23, 2016 at 10:09 GMT
DESCRIPTION
"The MIB module defines the AP update operation."
REVISION "201512180926Z" -- December 18, 2015 at 09:26 GMT
DESCRIPTION
"
V1.05, Add the value of hwWlanApUpdateProgressStatus.
"
REVISION "201509151030Z" -- sept 15, 2015 at 10:30 GMT
DESCRIPTION
"V1.04, Add the AP ID in the trap node."
REVISION "201508261030Z" -- Aug 26, 2015 at 10:30 GMT
DESCRIPTION
"V1.03, Add the AP ID in the trap node."
REVISION "201505111725Z" -- May 11, 2015 at 17:25 GMT
DESCRIPTION
"
V1.02, Add the description of mib nodes.
"
REVISION "201504071725Z" -- April 07, 2015 at 17:25 GMT
DESCRIPTION
"
V1.01, Add the value of hwWlanApUpdateProgressStatus.
"
REVISION "201502021009Z" -- February 02, 2015 at 10:09 GMT
DESCRIPTION
"
V1.00, Inital version.
"
::= { hwWlan 14 }
--
--Node definitions
--
--1.3.6.1.4.1.2011.6.139.14.1
hwWlanApUpdateTrap OBJECT IDENTIFIER ::= { hwWlanApUpdate 1 }
--1.3.6.1.4.1.2011.6.139.14.1.1
hwWlanApUpdateBeginTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApName, hwWlanApMac, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates an AP upgrade start alarm.."
::= { hwWlanApUpdateTrap 1 }
--1.3.6.1.4.1.2011.6.139.14.1.2
hwWlanApUpdateResultTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApName, hwWlanApUpdateResult, hwWlanApMac, hwWlanApUpdateTime, hwWlanApUpdateByFileName,
hwWlanApUpdateNextOper, hwWlanApUpdateResultStatus, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates the upgrade result alarm."
::= { hwWlanApUpdateTrap 2 }
--1.3.6.1.4.1.2011.6.139.14.1.3
hwWlanApUpdateUbootNotMatchTrap NOTIFICATION-TYPE
OBJECTS { hwWlanApName, hwWlanApMac, hwWlanApId }
STATUS current
DESCRIPTION
"This object indicates that the Uboot version does not match the AP version."
::= { hwWlanApUpdateTrap 3 }
--1.3.6.1.4.1.2011.6.139.14.2
hwWlanApUpdateTrapObjects OBJECT IDENTIFIER ::= { hwWlanApUpdate 2 }
--1.3.6.1.4.1.2011.6.139.14.2.1
hwWlanApUpdateResult OBJECT-TYPE
SYNTAX INTEGER
{
success(1) ,
failureUnknownError(2) ,
failureInsufficientMemory(3) ,
failureDownloadFileFailure(4) ,
failureMismatchVersionEfsAndFileName(5) ,
failureInvalidFileName(6) ,
failureMismatchApTypeInEfs(7) ,
failureFileContentError(8) ,
failureWriteFlashFailure(9) ,
failureTimeoutForUpgrade(10) ,
failureCommunicationFaultApAndAc(11) ,
failureInsufficientStorageSpace(65)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP upgrade result."
::= { hwWlanApUpdateTrapObjects 1 }
--1.3.6.1.4.1.2011.6.139.14.2.2
hwWlanApUpdateTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP upgrade time."
::= { hwWlanApUpdateTrapObjects 2 }
--1.3.6.1.4.1.2011.6.139.14.2.3
hwWlanApUpdateByFileName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP upgrade file name."
::= { hwWlanApUpdateTrapObjects 3 }
--1.3.6.1.4.1.2011.6.139.14.2.4
hwWlanApUpdateNextOper OBJECT-TYPE
SYNTAX INTEGER
{
notReset(1) ,
reset(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Action after the upgrade."
::= { hwWlanApUpdateTrapObjects 4 }
--1.3.6.1.4.1.2011.6.139.14.2.5
hwWlanApUpdateResultStatus OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AP upgrade result status."
::= { hwWlanApUpdateTrapObjects 5 }
--1.3.6.1.4.1.2011.6.139.14.3
hwWlanApUpdateObjects OBJECT IDENTIFIER ::= { hwWlanApUpdate 3 }
--1.3.6.1.4.1.2011.6.139.14.3.1
hwWlanApUpdateConfig OBJECT IDENTIFIER ::= { hwWlanApUpdateObjects 1 }
--1.3.6.1.4.1.2011.6.139.14.3.1.1
hwWlanApUpdateFTPIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the IPv4 address of the FTP server used in FTP upgrade mode."
::= { hwWlanApUpdateConfig 1 }
--1.3.6.1.4.1.2011.6.139.14.3.1.2
hwWlanApUpdateFTPUsername OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the user name of the FTP IPv4 client used in FTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateFTPIPAddress."
::= { hwWlanApUpdateConfig 2 }
--1.3.6.1.4.1.2011.6.139.14.3.1.3
hwWlanApUpdateFTPPassword OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the password of the FTP IPv4 client used in FTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateFTPIPAddress."
::= { hwWlanApUpdateConfig 3 }
--1.3.6.1.4.1.2011.6.139.14.3.1.4
hwWlanApUpdateMode OBJECT-TYPE
SYNTAX INTEGER
{
ftp(1) ,
ac(2) ,
sftp(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the AP upgrade mode."
::= { hwWlanApUpdateConfig 4 }
--1.3.6.1.4.1.2011.6.139.14.3.1.5
hwWlanApUpdateSFTPIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the IPv4 address of the SFTP server used in SFTP upgrade mode."
::= { hwWlanApUpdateConfig 5 }
--1.3.6.1.4.1.2011.6.139.14.3.1.6
hwWlanApUpdateSFTPUsername OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the user name of the SFTP IPv4 client used in SFTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateSFTPIPAddress."
::= { hwWlanApUpdateConfig 6 }
--1.3.6.1.4.1.2011.6.139.14.3.1.7
hwWlanApUpdateSFTPPassword OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the password of the SFTP IPv4 client used in SFTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateSFTPIPAddress."
::= { hwWlanApUpdateConfig 7 }
--1.3.6.1.4.1.2011.6.139.14.3.1.8
hwWlanApUpdateFTPMaxConnectNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the maximum number of FTP IPv4 connections."
::= { hwWlanApUpdateConfig 8 }
--1.3.6.1.4.1.2011.6.139.14.3.1.9
hwWlanApUpdateSFTPMaxConnectNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the maximum number of SFTP IPv4 connections."
::= { hwWlanApUpdateConfig 9 }
--1.3.6.1.4.1.2011.6.139.14.3.1.10
hwWlanApUpdateFTPIPv6Address OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the IPv6 address of the FTP server."
::= { hwWlanApUpdateConfig 10 }
--1.3.6.1.4.1.2011.6.139.14.3.1.11
hwWlanApUpdateSFTPIPv6Address OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the IPv6 address of the SFTP server."
::= { hwWlanApUpdateConfig 11 }
-- 1.3.6.1.4.1.2011.6.139.14.3.1.12
hwWlanApUpdateFTPIPv6Username OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the user name of the FTP IPv6 client used in FTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateFTPIPv6Address."
::= { hwWlanApUpdateConfig 12 }
-- 1.3.6.1.4.1.2011.6.139.14.3.1.13
hwWlanApUpdateFTPIPv6Password OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the password of the FTP IPv6 client used in FTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateFTPIPv6Address."
::= { hwWlanApUpdateConfig 13 }
-- 1.3.6.1.4.1.2011.6.139.14.3.1.14
hwWlanApUpdateSFTPIPv6Username OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the user name of the SFTP IPv6 client used in SFTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateSFTPIPv6Address."
::= { hwWlanApUpdateConfig 14 }
-- 1.3.6.1.4.1.2011.6.139.14.3.1.15
hwWlanApUpdateSFTPIPv6Password OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the password of the SFTP IPv6 client used in SFTP upgrade mode. NOTE: It should be configured together with hwWlanApUpdateSFTPIPv6Address."
::= { hwWlanApUpdateConfig 15 }
-- 1.3.6.1.4.1.2011.6.139.14.3.1.16
hwWlanApUpdateFTPIPv6MaxConnectNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the maximum number of FTP IPv6 connections."
::= { hwWlanApUpdateConfig 16 }
-- 1.3.6.1.4.1.2011.6.139.14.3.1.17
hwWlanApUpdateSFTPIPv6MaxConnectNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the maximum number of SFTP IPv6 connections."
::= { hwWlanApUpdateConfig 17 }
-- 1.3.6.1.4.1.2011.6.139.14.3.2
hwWlanApUpdateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table maps AP types to upgrade file names. It allows you to upgrade APs in batches based on AP types."
::= { hwWlanApUpdateObjects 2 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1
hwWlanApUpdateEntry OBJECT-TYPE
SYNTAX HwWlanApUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApType."
INDEX { hwWlanApType }
::= { hwWlanApUpdateTable 1 }
HwWlanApUpdateEntry ::=
SEQUENCE {
hwWlanApUpdateFilename
OCTET STRING,
hwWlanApUpdateAdminOper
INTEGER,
hwWlanApUpdatePercent
Integer32,
hwWlanApUpdateRowStatus
RowStatus,
hwWlanApUpdatePatchFilename
OCTET STRING,
hwWlanApUpdateResetPartitionId
Integer32,
hwWlanApUpdateResetPrimaryAccessIPv4
IpAddress,
hwWlanApUpdateResetPrimaryAccessIPv6
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.14.3.2.1.1
hwWlanApUpdateFilename OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the upgrade file matching the type of the APs to be upgraded."
::= { hwWlanApUpdateEntry 1 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1.2
hwWlanApUpdateAdminOper OBJECT-TYPE
SYNTAX INTEGER
{
start(1) ,
reset(2) ,
cancel(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates that the APs begin to upgrade start(1): The AP upgrade starts reset(2): After the upgrade is complete, the APs are restarted cancel(3): The upgrade is canceled."
::= { hwWlanApUpdateEntry 2 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1.3
hwWlanApUpdatePercent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP upgrade progress, namely, the percentage of upgraded APs to all APs of the same type."
::= { hwWlanApUpdateEntry 3 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1.4
hwWlanApUpdateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status of this table."
::= { hwWlanApUpdateEntry 4 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1.5
hwWlanApUpdatePatchFilename OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the upgrade patch file matching the type of the APs to be upgraded."
::= { hwWlanApUpdateEntry 5 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1.6
hwWlanApUpdateResetPartitionId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the partition id for reset partition."
::= { hwWlanApUpdateEntry 6 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1.7
hwWlanApUpdateResetPrimaryAccessIPv4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the Ipv4 address for reset partition."
::= { hwWlanApUpdateEntry 7 }
--1.3.6.1.4.1.2011.6.139.14.3.2.1.8
hwWlanApUpdateResetPrimaryAccessIPv6 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the Ipv6 address for reset partition."
::= { hwWlanApUpdateEntry 8 }
--1.3.6.1.4.1.2011.6.139.14.3.3
hwWlanApUpdateProgressTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApUpdateProgressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to query the AP upgrade progress."
::= { hwWlanApUpdateObjects 3 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1
hwWlanApUpdateProgressEntry OBJECT-TYPE
SYNTAX HwWlanApUpdateProgressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApMac."
INDEX { hwWlanApMac }
::= { hwWlanApUpdateProgressTable 1 }
HwWlanApUpdateProgressEntry ::=
SEQUENCE {
hwWlanApUpdateProgressStatus
INTEGER,
hwWlanApUpdateProgress
Integer32,
hwWlanApFlashProgress
Integer32,
hwWlanApUpdateType
INTEGER,
hwWlanApUpdateFileType
INTEGER,
hwWlanApUpdateFileVersion
OCTET STRING,
hwWlanApUpdateLastEndTime
OCTET STRING,
hwWlanApUpdateApGroup
OCTET STRING,
hwWlanApUpdateApPartitionId
Integer32,
hwWlanApUpdateApChannel
Integer32
}
--1.3.6.1.4.1.2011.6.139.14.3.3.1.1
hwWlanApUpdateProgressStatus OBJECT-TYPE
SYNTAX INTEGER
{
noUpdateResult(1) ,
updating(2) ,
updateSuccessful(3) ,
updateFailed(4) ,
insufficientApMemory(5) ,
failToDownloadFile(6) ,
efsAndVersionMismatched(7) ,
invalidFileName(8) ,
efsAndApTypeMismatched(9) ,
fileContentError(10) ,
writingMemoryError(11) ,
updateTimeout(12) ,
apAcLinkDown(13) ,
noNeedToUpdate(14) ,
updateCancel(15) ,
sendFirstFileFailed(16) ,
receiveFileFailed(17),
retransferFileFailed(18),
updateOverMaxTime(19),
noResult(20),
waitForNextBatch(21),
noNeedUpdateNeedReset(22) ,
neitherNeedUpdateNorReset(23) ,
fileLoading(24),
identifierErr(25) ,
notInConfig(26),
getFtpInfoFailed(27),
getSftpInfoFailed(28) ,
blockFull(29),
readFileFailed(30) ,
normalToStandby(31) ,
modeChanged(32),
succeedNeedReset(33),
succeedAutoResetting(34),
sendUpgradeCfgErr(35),
sendUpgradeRequestErr(36),
waitFragmentationTimeout(37),
upgradeCfgResponseErr(38),
processUpgradeFilenameErr(39),
cannotGetApType(40),
batchUpgradeApTypeMismatched(41),
analyzeVersionErr(42),
ageTimeOut(43),
isUpdatingNow(44),
succeedNeedModeSwitch(45),
updateFsmStateCheckFailed(46),
fileChanged(47),
serverPasswordIsTooLong(48),
configChanged(49),
succeedResetting(50),
flashNotSupportupgrade(51),
updateFailForBackupSoftware(52),
incompatibleHardwareBOMVersion(53),
continueSendingImagePieceTimeout(54),
backingUpTheSystemSoftware(55),
patchChecksumError(56),
patchFileError(57),
patchActiveFailed(58),
vrpPatchProcessActiveFailed(59),
vfpPatchActiveFailed(60),
kernelPatchActived(61),
patchInnerProcError(62),
wifiTargetChipPatchActiveFailed(63),
notSupportPatchUpdate(64),
insufficientStorageSpace(65),
insufficientMemorySpaceInAc(66),
patchVersionMismatch(67),
insufficientMemoryAsNgeEnable(68),
noUpdateProgressStatus(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP upgrade status."
::= { hwWlanApUpdateProgressEntry 1 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1.2
hwWlanApUpdateProgress OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP upgrade progress."
::= { hwWlanApUpdateProgressEntry 2 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1.3
hwWlanApFlashProgress OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the flash writing progress."
::= { hwWlanApUpdateProgressEntry 3 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1.4
hwWlanApUpdateType OBJECT-TYPE
SYNTAX INTEGER
{
autoUpdate(1) ,
onlineUpdate(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP upgrade type."
::= { hwWlanApUpdateProgressEntry 4 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1.5
hwWlanApUpdateFileType OBJECT-TYPE
SYNTAX INTEGER
{
fit(1) ,
fat(2) ,
fatCloud(3) ,
patch(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP upgrade file type."
::= { hwWlanApUpdateProgressEntry 5 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1.6
hwWlanApUpdateFileVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the version of the upgrade file matching the type of the APs upgraded."
::= { hwWlanApUpdateProgressEntry 6 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1.7
hwWlanApUpdateLastEndTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the end-time of the upgrading."
::= { hwWlanApUpdateProgressEntry 7 }
--1.3.6.1.4.1.2011.6.139.14.3.3.1.8
hwWlanApUpdateApGroup OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Ap group of the APs upgraded."
::= { hwWlanApUpdateProgressEntry 8}
--1.3.6.1.4.1.2011.6.139.14.3.3.1.9
hwWlanApUpdateApPartitionId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Ap partition id of the APs upgraded."
::= { hwWlanApUpdateProgressEntry 9}
--1.3.6.1.4.1.2011.6.139.14.3.3.1.10
hwWlanApUpdateApChannel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Ap channel of the APs upgraded."
::= { hwWlanApUpdateProgressEntry 10}
--1.3.6.1.4.1.2011.6.139.14.3.4
hwWlanSingleApUpdateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanSingleApUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify the mapping relationship between AP IDs and upgrade file names and to perform upgrade based on specified APs."
::= { hwWlanApUpdateObjects 4 }
--1.3.6.1.4.1.2011.6.139.14.3.4.1
hwWlanSingleApUpdateEntry OBJECT-TYPE
SYNTAX HwWlanSingleApUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table is hwWlanApMac."
INDEX { hwWlanApMac }
::= { hwWlanSingleApUpdateTable 1 }
HwWlanSingleApUpdateEntry ::=
SEQUENCE {
hwWlanSingleApUpdateAdminOper
INTEGER,
hwWlanSingleApUpdatePercent
Integer32,
hwWlanSingleApUpdateFilename
OCTET STRING,
hwWlanSingleApUpdatePrimaryAccessIPv4
IpAddress,
hwWlanSingleApUpdatePrimaryAccessIPv6
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.14.3.4.1.1
hwWlanSingleApUpdateAdminOper OBJECT-TYPE
SYNTAX INTEGER
{
start(1) ,
reset(2) ,
cancel(3),
patchupgrate(4),
patchdelete(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates a single AP upgrade start(1): The AP upgrade starts reset(2): After the upgrade is complete, the AP is restarted cancel(3): The upgrade is canceled."
::= { hwWlanSingleApUpdateEntry 1 }
--1.3.6.1.4.1.2011.6.139.14.3.4.1.2
hwWlanSingleApUpdatePercent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the single AP upgrade progress."
::= { hwWlanSingleApUpdateEntry 2 }
--1.3.6.1.4.1.2011.6.139.14.3.4.1.3
hwWlanSingleApUpdateFilename OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the upgrade file matching the type of the AP to be upgraded."
::= { hwWlanSingleApUpdateEntry 3 }
--1.3.6.1.4.1.2011.6.139.14.3.4.1.4
hwWlanSingleApUpdatePrimaryAccessIPv4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the Ipv4 address of the upgrade reset partition."
::= { hwWlanSingleApUpdateEntry 4 }
--1.3.6.1.4.1.2011.6.139.14.3.4.1.5
hwWlanSingleApUpdatePrimaryAccessIPv6 OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the Ipv6 address of the upgrade reset partition."
::= { hwWlanSingleApUpdateEntry 5}
--1.3.6.1.4.1.2011.6.139.14.3.5
hwWlanApTypeGroupUpdateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApTypeGroupUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to map AP types and AP groups to upgrade file names. It allows you to upgrade APs in batches based on AP types and AP groups."
::= { hwWlanApUpdateObjects 5 }
--1.3.6.1.4.1.2011.6.139.14.3.5.1
hwWlanApTypeGroupUpdateEntry OBJECT-TYPE
SYNTAX HwWlanApTypeGroupUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table are hwWlanApType and hwAPGroupName."
INDEX { hwWlanApType, hwAPGroupName }
::= { hwWlanApTypeGroupUpdateTable 1 }
HwWlanApTypeGroupUpdateEntry ::=
SEQUENCE {
hwWlanApTypeGroupUpdateFilename
OCTET STRING,
hwWlanApTypeGroupUpdateAdminOper
INTEGER,
hwWlanApTypeGroupUpdatePercent
Integer32,
hwWlanApTypeGroupUpdateRowStatus
RowStatus,
hwWlanApTypeGroupUpdatePatchFilename
OCTET STRING
}
--1.3.6.1.4.1.2011.6.139.14.3.5.1.1
hwWlanApTypeGroupUpdateFilename OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the name of the upgrade file matching the type of the APs to be upgraded."
::= { hwWlanApTypeGroupUpdateEntry 1 }
--1.3.6.1.4.1.2011.6.139.14.3.5.1.2
hwWlanApTypeGroupUpdateAdminOper OBJECT-TYPE
SYNTAX INTEGER
{
start(1) ,
reset(2) ,
cancel(3),
patchupgrate(4),
patchdelete(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates an upgrade operation start(1): The AP upgrade starts reset(2): After the upgrade is complete, the APs are restarted cancel(3): The upgrade is canceled."
::= { hwWlanApTypeGroupUpdateEntry 2 }
--1.3.6.1.4.1.2011.6.139.14.3.5.1.3
hwWlanApTypeGroupUpdatePercent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP upgrade progress, namely, the percentage of upgraded APs to all APs of the same type."
::= { hwWlanApTypeGroupUpdateEntry 3 }
--1.3.6.1.4.1.2011.6.139.14.3.5.1.4
hwWlanApTypeGroupUpdateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status of this table."
::= { hwWlanApTypeGroupUpdateEntry 4 }
--1.3.6.1.4.1.2011.6.139.14.3.5.1.5
hwWlanApTypeGroupUpdatePatchFilename OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the name of the patch upgrade file matching the type of the APs to be upgraded."
::= { hwWlanApTypeGroupUpdateEntry 5 }
--1.3.6.1.4.1.2011.6.139.14.3.6
hwWlanApUpdateScheduleTaskTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwWlanApUpdateScheduleTaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to create, query, and delete scheduled upgrade tasks."
::= { hwWlanApUpdateObjects 6 }
--1.3.6.1.4.1.2011.6.139.14.3.6.1
hwWlanApUpdateScheduleTaskEntry OBJECT-TYPE
SYNTAX HwWlanApUpdateScheduleTaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The indexes of this table is hwWlanApUpdateScheduleTaskId."
INDEX { hwWlanApUpdateScheduleTaskId }
::= { hwWlanApUpdateScheduleTaskTable 1 }
HwWlanApUpdateScheduleTaskEntry ::=
SEQUENCE {
hwWlanApUpdateScheduleTaskId
Integer32,
hwWlanApUpdateScheduleTaskStartTime
OCTET STRING,
hwWlanApUpdateScheduleTaskStopTime
OCTET STRING,
hwWlanApUpdateScheduleTaskApType
Integer32,
hwWlanApUpdateScheduleTaskApGroup
OCTET STRING,
hwWlanApUpdateScheduleTaskState
INTEGER,
hwWlanApUpdateScheduleTaskRowStatus
RowStatus
}
--1.3.6.1.4.1.2011.6.139.14.3.6.1.1
hwWlanApUpdateScheduleTaskId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the ID of the task."
::= { hwWlanApUpdateScheduleTaskEntry 1 }
--1.3.6.1.4.1.2011.6.139.14.3.6.1.2
hwWlanApUpdateScheduleTaskStartTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the starting time that is in the format of 'YYYY/MM/DD,HH:MM'."
::= { hwWlanApUpdateScheduleTaskEntry 2 }
--1.3.6.1.4.1.2011.6.139.14.3.6.1.3
hwWlanApUpdateScheduleTaskStopTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the stopping time that is in the format of 'YYYY/MM/DD,HH:MM'."
::= { hwWlanApUpdateScheduleTaskEntry 3 }
--1.3.6.1.4.1.2011.6.139.14.3.6.1.4
hwWlanApUpdateScheduleTaskApType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the type of the APs to be upgraded."
::= { hwWlanApUpdateScheduleTaskEntry 4 }
--1.3.6.1.4.1.2011.6.139.14.3.6.1.5
hwWlanApUpdateScheduleTaskApGroup OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the group of the APs to be upgraded."
::= { hwWlanApUpdateScheduleTaskEntry 5 }
--1.3.6.1.4.1.2011.6.139.14.3.6.1.6
hwWlanApUpdateScheduleTaskState OBJECT-TYPE
SYNTAX INTEGER
{
idle(1) ,
running(2) ,
waitting(3),
done(4),
overtime(5),
dead(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the state of the task."
::= { hwWlanApUpdateScheduleTaskEntry 6 }
--1.3.6.1.4.1.2011.6.139.14.3.6.1.7
hwWlanApUpdateScheduleTaskRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status."
::= { hwWlanApUpdateScheduleTaskEntry 7 }
--1.3.6.1.4.1.2011.6.139.14.3.7
hwWlanApUpdateOperEntry OBJECT IDENTIFIER ::= { hwWlanApUpdateObjects 7 }
--1.3.6.1.4.1.2011.6.139.14.3.7.1
hwWlanApUpdateOperAdminOper OBJECT-TYPE
SYNTAX INTEGER
{
start(1) ,
reset(2) ,
cancel(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates that the APs begin to upgrade start(1): The AP upgrade starts reset(2): After the upgrade is complete, the APs are restarted cancel(3): The upgrade is canceled."
::= { hwWlanApUpdateOperEntry 1 }
--1.3.6.1.4.1.2011.6.139.14.3.7.2
hwWlanApUpdateOperApType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the type of the APs to be upgraded."
::= { hwWlanApUpdateOperEntry 2 }
--1.3.6.1.4.1.2011.6.139.14.3.7.3
hwWlanApUpdateOperApGroup OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the group of the APs to be upgraded."
::= { hwWlanApUpdateOperEntry 3 }
--1.3.6.1.4.1.2011.6.139.14.3.7.4
hwWlanApUpdateOperPercent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AP upgrade progress, namely, the percentage of upgraded APs to all APs."
::= { hwWlanApUpdateOperEntry 4 }
--1.3.6.1.4.1.2011.6.139.14.4
hwWlanApUpdateConformance OBJECT IDENTIFIER ::= { hwWlanApUpdate 4 }
--1.3.6.1.4.1.2011.6.139.14.4.1
hwWlanApUpdateCompliances OBJECT IDENTIFIER ::= { hwWlanApUpdateConformance 1 }
--1.3.6.1.4.1.2011.6.139.14.4.1.1
hwWlanApUpdateCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Description."
MODULE
MANDATORY-GROUPS { hwWlanApUpdateTrapObjectsGroup, hwWlanApUpdateObjectsGroup }
::= { hwWlanApUpdateCompliances 1 }
--1.3.6.1.4.1.2011.6.139.14.4.2
hwWlanApUpdateObjectGroups OBJECT IDENTIFIER ::= { hwWlanApUpdateConformance 2 }
--1.3.6.1.4.1.2011.6.139.14.4.2.1
hwWlanApUpdateTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwWlanApUpdateBeginTrap, hwWlanApUpdateResultTrap, hwWlanApUpdateUbootNotMatchTrap }
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApUpdateObjectGroups 1 }
--1.3.6.1.4.1.2011.6.139.14.4.2.2
hwWlanApUpdateTrapObjectsGroup OBJECT-GROUP
OBJECTS { hwWlanApUpdateResult, hwWlanApUpdateTime, hwWlanApUpdateByFileName, hwWlanApUpdateNextOper, hwWlanApUpdateResultStatus }
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApUpdateObjectGroups 2 }
--1.3.6.1.4.1.2011.6.139.14.4.2.3
hwWlanApUpdateObjectsGroup OBJECT-GROUP
OBJECTS { hwWlanApUpdateFTPIPAddress, hwWlanApUpdateFTPUsername, hwWlanApUpdateFTPPassword, hwWlanApUpdateMode, hwWlanApUpdateSFTPIPAddress,
hwWlanApUpdateSFTPUsername, hwWlanApUpdateSFTPPassword, hwWlanApUpdateFTPMaxConnectNum, hwWlanApUpdateSFTPMaxConnectNum, hwWlanApUpdateFTPIPv6Address,
hwWlanApUpdateSFTPIPv6Address, hwWlanApUpdateFilename, hwWlanApUpdateAdminOper, hwWlanApUpdatePercent, hwWlanApUpdateRowStatus, hwWlanApUpdatePatchFilename,
hwWlanApUpdateResetPartitionId,hwWlanApUpdateResetPrimaryAccessIPv4,hwWlanApUpdateResetPrimaryAccessIPv6,
hwWlanApUpdateProgressStatus, hwWlanApUpdateProgress, hwWlanApFlashProgress, hwWlanApUpdateType, hwWlanApUpdateFileType, hwWlanApUpdateFileVersion,
hwWlanApUpdateLastEndTime, hwWlanApUpdateApGroup, hwWlanApUpdateApPartitionId,hwWlanApUpdateApChannel,hwWlanSingleApUpdateAdminOper, hwWlanSingleApUpdatePercent,
hwWlanSingleApUpdateFilename, hwWlanSingleApUpdatePrimaryAccessIPv4, hwWlanSingleApUpdatePrimaryAccessIPv6,hwWlanApTypeGroupUpdateFilename, hwWlanApTypeGroupUpdateAdminOper,
hwWlanApTypeGroupUpdatePercent, hwWlanApTypeGroupUpdateRowStatus,hwWlanApTypeGroupUpdatePatchFilename,
hwWlanApUpdateScheduleTaskStartTime, hwWlanApUpdateScheduleTaskStopTime, hwWlanApUpdateScheduleTaskApType,
hwWlanApUpdateScheduleTaskApGroup, hwWlanApUpdateScheduleTaskState, hwWlanApUpdateScheduleTaskRowStatus, hwWlanApUpdateOperAdminOper, hwWlanApUpdateOperApType,
hwWlanApUpdateOperApGroup, hwWlanApUpdateOperPercent }
STATUS current
DESCRIPTION
"Description."
::= { hwWlanApUpdateObjectGroups 3 }
END
--
-- HUAWEI-WLAN-AP-UPDATE-MIB.mib
--
|