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
|
-- ============================================================================
-- Copyright (C) 2003 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: The HUAWEI-LOAD-BACKUP-MIB provides information about load and backup
-- Reference:
-- Version: V3.00
-- History:
--
-- ============================================================================
HUAWEI-LOAD-BACKUP-MIB DEFINITIONS ::= BEGIN
IMPORTS
huaweiUtility
FROM HUAWEI-MIB
HWPCBType
FROM HUAWEI-TC-MIB
IpAddress, Integer32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
hwFrameIndex, hwSlotIndex
FROM HUAWEI-DEVICE-MIB;
hwLoadBackup MODULE-IDENTITY
LAST-UPDATED "200304280900Z"
ORGANIZATION "Fix-Net Dep, Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Floot 5 ,Block 4, R&D Building,
Huawei Longgang Production Base,
Shenzhen, P.R.C.
http://www.huawei.com
Zip:518057
"
DESCRIPTION
"Huawei load and backup mib."
::= { huaweiUtility 6 }
--
-- Node definitions
--
-- ==================================================================
--
-- ======================= definition begin =========================
--
-- ==================================================================
hwLoadBackupMon OBJECT IDENTIFIER ::= { hwLoadBackup 1 }
-- ============== hwLoadParaTable define beginning ==============
hwLoadParaTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwLoadParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The load parameter table.
"
::= { hwLoadBackupMon 1 }
hwLoadParaEntry OBJECT-TYPE
SYNTAX HwLoadParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The load parameter table entry.
"
INDEX { hwFrameIndex, hwSlotIndex }
::= { hwLoadParaTable 1 }
HwLoadParaEntry ::=
SEQUENCE {
hwLoadServerIpAddr
IpAddress,
hwLoadMode
INTEGER,
hwLoadFileName
DisplayString,
hwLoadContent
INTEGER,
hwLoadBoardType
HWPCBType,
hwPortId
Integer32,
hwLoadProcess
Integer32,
hwLoadUserName
DisplayString,
hwLoadPassword
DisplayString
}
hwLoadServerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The IP address of server.
"
::= { hwLoadParaEntry 1 }
hwLoadMode OBJECT-TYPE
SYNTAX INTEGER
{
tftp(1),
modem(2),
ftp(3),
smbLoadAnyBoards(4),
other(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The load protocol.
"
::= { hwLoadParaEntry 2 }
hwLoadFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The file name.
"
::= { hwLoadParaEntry 3 }
hwLoadContent OBJECT-TYPE
SYNTAX INTEGER
{
program(1), -- program file
configuration(2), -- configuration file¡¡
patch(3), -- patch file
shellMacro(4),
resLocal(5),
resGeneral(6),
cpeDrive(7),
programDatabase(8), -- database file
programBios(9), -- bios file
programApp(10), -- application program
logicFpga(11), -- fpga logic file
logicCpld(12), -- Cpld logic file
logicPci(13), -- pci logic file ¡¡
logicAfc(14), -- afc logic file
programMicroCode(15), -- micro code file
programFirmware(16), -- application program of pinch board
programHelp(17),
programDataFlow(18), -- flow file of card management point
programBootFile(19), -- Boot program file of board
logciPa(20), -- Boot program file of board start
webExp(21), -- web exp file web exp
webNev(22), -- web nev file web nev
webHelp(23), -- web help file web
programBsp(24), -- bsp program file bsp
configurationIni(40), -- configuration file of ini formatini
configurationEfs(41), -- configuration file with the header of efs
configurationCli(42), -- configuration file of command line format
programCurrent(45), -- the program being run
programOther(46), -- the program that has not been run presently
license(49), -- license file
programchipset(50), -- AC5 chipset load
programExtendedBios(51) --extended bios file
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Load content:
enum explanation
**********************************************
program(1), -- program file
configuration(2), -- configuration file¡¡
patch(3), -- patch file
shellMacro(4),
resLocal(5),
resGeneral(6),
cpeDrive(7),
programDatabase(8), -- database file
programBios(9), -- bios file
programApp(10), -- application program
logicFpga(11), -- fpga logic file
logicCpld(12), -- Cpld logic file
logicPci(13), -- pci logic file ¡¡
logicAfc(14), -- afc logic file
programMicroCode(15), -- micro code file
programFirmware(16), -- application program of pinch board
programHelp(17),
programDataFlow(18), -- flow file of card management point
programBootFile(19), -- Boot program file of board
logciPa(20), -- Boot program file of board start
webExp(21), -- web exp file web exp
webNev(22), -- web nev file web nev
webHelp(23), -- web help file web
programBsp(24), -- bsp program file bsp
configurationIni(40), -- configuration file of ini formatini
configurationEfs(41), -- configuration file with the header of efs
configurationCli(42), -- configuration file of command line format
programCurrent(45), -- the program being run
programOther(46), -- the program that has not been run presently
license(49), -- license file
programchipset(50), -- AC5 chipset load
"
::= { hwLoadParaEntry 4 }
hwLoadBoardType OBJECT-TYPE
SYNTAX HWPCBType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The board type the system supports.
"
::= { hwLoadParaEntry 5 }
hwPortId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The port index.
"
::= { hwLoadParaEntry 6 }
hwLoadProcess OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The Process of loading.
"
::= { hwLoadParaEntry 7 }
hwLoadUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The load user name£¬which is necessary in FTP mode
and unnecessary in TFTP mode.
"
::= { hwLoadParaEntry 8 }
hwLoadPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The load user name,which is necessary in FTP mode ,
which is necessary in FTP mode
and unnecessary in TFTP mode.
"
::= { hwLoadParaEntry 9 }
-- ============== hwLoadParaTable define end ==============
-- ============== hwBackupParaTable define beginning ==============
hwBackupParaTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwBackupParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The backup parameter table.
"
::= { hwLoadBackupMon 2 }
hwBackupParaEntry OBJECT-TYPE
SYNTAX HwBackupParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The backup parameter table entry.
"
INDEX { hwFrameIndex, hwSlotIndex }
::= { hwBackupParaTable 1 }
HwBackupParaEntry ::=
SEQUENCE {
hwBackupServerIpAddr
IpAddress,
hwBackupMode
INTEGER,
hwBackupFileName
DisplayString,
hwBackupContent
INTEGER,
hwBackupProcess
Integer32,
hwBackupUserName
DisplayString,
hwBackupPassword
DisplayString,
hwBackupBoardType
HWPCBType
}
hwBackupServerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The IP address of Server
"
::= { hwBackupParaEntry 1 }
hwBackupMode OBJECT-TYPE
SYNTAX INTEGER
{
tftp(1),
modem(2),
ftp(3),
other(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Load protocol:tftp and MODEM currently supported.
"
::= { hwBackupParaEntry 2 }
hwBackupFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The file name.
"
::= { hwBackupParaEntry 3 }
hwBackupContent OBJECT-TYPE
SYNTAX INTEGER
{
configuration(1), -- configuration file¡¡
shellMacro(2),
log(3), -- log file
bill(4),
alarm(5), -- alarm
program(15), -- program file
reslocal(16),
resgeneral(17),
patch(18), -- patch file
programDatabase(19), -- database file
programBios(20), -- bios file
programApp(21), -- application file
logicFpga(22), -- fpga logic file
logicCpld(23), -- Cpld logic file
logicPci(24), -- pci logic file
logicAfc(25), -- afc logic file
programMicroCode(26), -- micro-code file
programFireware(27), -- application program of pinch board
programDataFlow(28), -- flow file of card management point
programBootFile(29), -- boot program file of the board start
logciPa(30), -- fpga logic file of the pinch board
webExp(31), -- web exp file
webNev(32), -- web nev file
webHelp(33), -- web help file
programBsp(34), -- bsp program file
configurationIni(40),
configurationEfs(41),
configurationCli(42),
programCurrent(45),
programOther(46),
bcdcInfo(47), -- bcdc decsription system in ini file
license(49), -- license file
programExtendedBios(51), --extended bios file
boardinfo(60) -- board information
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The backup content.
"
::= { hwBackupParaEntry 4 }
hwBackupProcess OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The Process of backuping.
"
::= { hwBackupParaEntry 5 }
hwBackupUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The backup user name£¬which is necessary in FTP mode
and unnecessary in TFTP mode.
"
::= { hwBackupParaEntry 6 }
hwBackupPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The backup user name,which is necessary in FTP mode ,
which is necessary in FTP mode and unnecessary in TFTP mode.
"
::= { hwBackupParaEntry 7 }
hwBackupBoardType OBJECT-TYPE
SYNTAX HWPCBType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The type of backup board.
"
::= { hwBackupParaEntry 8 }
-- ============== hwBackupParaTable define end ==============
-- ============== hwPatchTable define beginning ==============
hwPatch OBJECT IDENTIFIER ::= { hwLoadBackup 2 }
hwPatchTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwPatchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The operation and enquiry table of patch.
"
::= { hwPatch 1 }
hwPatchEntry OBJECT-TYPE
SYNTAX HwPatchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The operation and enquiry table entry of patch.
"
INDEX { hwFrameIndex, hwSlotIndex, hwPatchId }
::= { hwPatchTable 1 }
HwPatchEntry ::=
SEQUENCE {
hwPatchId
Unsigned32,
hwPatchDescription
DisplayString,
hwPatchFuncNum
Integer32,
hwPatchTextLen
Integer32,
hwPatchDataLen
Integer32,
hwPatchType
INTEGER,
hwPatchAdminStatus
INTEGER,
hwPatchOperState
INTEGER
}
hwPatchId OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The patch number.
"
::= { hwPatchEntry 1 }
hwPatchDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The description of patch.
"
::= { hwPatchEntry 2 }
hwPatchFuncNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The number of functions in patch.
"
::= { hwPatchEntry 3 }
hwPatchTextLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The length of patch code.
"
::= { hwPatchEntry 4 }
hwPatchDataLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The length of patch data.
"
::= { hwPatchEntry 5 }
hwPatchType OBJECT-TYPE
SYNTAX INTEGER
{
common(1),
temporary(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The type of patch.
"
::= { hwPatchEntry 6 }
hwPatchAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
deactive(2),
remove(3),
running(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The operation of patch.
"
::= { hwPatchEntry 7 }
hwPatchOperState OBJECT-TYPE
SYNTAX INTEGER
{
patchActive(1),
patchDeActive(2),
patchInit(3),
patchRunning(4),
patchload(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The station of patch.
"
::= { hwPatchEntry 8 }
-- ============== hwPatchTable define end ==============
-- ============== hwPatchStatTable define beginning ==============
hwPatchStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwPatchStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The table of statistics information of patch.
"
::= { hwPatch 2 }
hwPatchStatEntry OBJECT-TYPE
SYNTAX HwPatchStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The table entry of statistics information of patch.
"
INDEX { hwFrameIndex, hwSlotIndex }
::= { hwPatchStatTable 1 }
HwPatchStatEntry ::=
SEQUENCE {
hwPatchStatNumMax
Integer32,
hwPatchStatTextMax
Integer32,
hwPatchStatDataMax
Integer32,
hwPatchStatTextUsed
Integer32,
hwPatchStatDataUsed
Integer32
}
hwPatchStatNumMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The maximum patch number of system.
"
::= { hwPatchStatEntry 1 }
hwPatchStatTextMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The capacity of patch code area.
"
::= { hwPatchStatEntry 2 }
hwPatchStatDataMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The capacity of patch data area.
"
::= { hwPatchStatEntry 3 }
hwPatchStatTextUsed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The used patch code area.
"
::= { hwPatchStatEntry 4 }
hwPatchStatDataUsed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The used patch data area.
"
::= { hwPatchStatEntry 5 }
-- ============== hwPatchTable define end ==============
-- ============== hwLoadAndBackupTrapsOID define beginning ==============
snmpTraps OBJECT IDENTIFIER ::= { hwLoadBackupMon 3 }
hwLoadAndBackupTrapsOID OBJECT IDENTIFIER ::= { snmpTraps 0 }
hwBackupFailAlarm NOTIFICATION-TYPE
OBJECTS { hwFrameIndex, hwSlotIndex, hwTrapBackupResult }
STATUS current
DESCRIPTION
"
The back up failure alarm trap.
"
::= { hwLoadAndBackupTrapsOID 1 }
hwLoadFailAlarm NOTIFICATION-TYPE
OBJECTS { hwFrameIndex, hwSlotIndex, hwTrapLoadResult }
STATUS current
DESCRIPTION
"
The load failure alarm trap.
"
::= { hwLoadAndBackupTrapsOID 2 }
hwBackupFailAlarmSuccess NOTIFICATION-TYPE
OBJECTS { hwFrameIndex, hwSlotIndex }
STATUS current
DESCRIPTION
"
The backup success notification.
"
::= { hwLoadAndBackupTrapsOID 3 }
hwLoadFailAlarmSuccess NOTIFICATION-TYPE
OBJECTS { hwFrameIndex, hwSlotIndex }
STATUS current
DESCRIPTION
"
The load success notification.
"
::= { hwLoadAndBackupTrapsOID 4 }
hwCopyAndSaveFail NOTIFICATION-TYPE
OBJECTS { hwCopyAndSaveResult }
STATUS current
DESCRIPTION
"
Save configuration to flash failure trap.
"
::= { hwLoadAndBackupTrapsOID 5 }
hwCopyAndSaveSuccess NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"
Save configuration to flash success notification .
"
::= { hwLoadAndBackupTrapsOID 6 }
hwConfigurationChangedEvent NOTIFICATION-TYPE
OBJECTS { hwConfEventCause }
STATUS current
DESCRIPTION
"
The configuration changed event alarm.
"
::= { hwLoadAndBackupTrapsOID 7 }
hwTrapCauseOids OBJECT IDENTIFIER ::= { snmpTraps 1 }
hwTrapLoadBackupResult OBJECT IDENTIFIER ::= { hwTrapCauseOids 1 }
hwTrapLoadResult OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
The load result.
"
::= { hwTrapLoadBackupResult 1 }
hwTrapBackupResult OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
Definition node of the backup failure cause.
"
::= { hwTrapLoadBackupResult 2 }
hwCopyAndSaveResult OBJECT-TYPE
SYNTAX INTEGER
{
copyInProgress(1),
copyOperationSuccess(2),
copyInvalidOperation(3),
copyInvalidProtocol(4),
copyInvalidSourceName(5),
copyInvalidDestName(6),
copyInvalidServerAddress(7),
copyDeviceBusy(8),
copyDeviceOpenError(9),
copyDeviceError(10),
copyDeviceNotProgrammable(11),
copyDeviceFull(12),
copyFileOpenError(13),
copyFileTransferError(14),
copyFileChecksumError(15),
copyNoMemory(16),
copyUnknownFailure(17)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
The failure cause definition node of the memory running copy and resume.
"
::= { hwTrapLoadBackupResult 3 }
hwTrapEventCauses OBJECT IDENTIFIER ::= { hwTrapCauseOids 2 }
hwConfEventCause OBJECT-TYPE
SYNTAX INTEGER
{
confChangedDirect(1),
confSaved(2),
confChangedDuration(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
The configuration changed cause.
"
::= { hwTrapEventCauses 1 }
-- ============== hwLoadAndBackupTrapsOID define end ==============
-- ============== hwBackupAndRestoreConfig define beginning ==============
hwBackupAndRestoreConfig OBJECT IDENTIFIER ::= { hwLoadBackupMon 4 }
hwBackupAndRestore OBJECT-TYPE
SYNTAX INTEGER
{
copyMemToFlash(1),
copyFlashToMem(2),
copyMemToHardDisk(3),
copyHardDiskToMem(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The running configuration in the system has been backup to flash or disk,
or been restored from .
"
::= { hwBackupAndRestoreConfig 1 }
-- ============== hwBackupAndRestoreConfig define end ==============
-- ============== conformance information ==============
hwLoadBackupConformance OBJECT IDENTIFIER ::= { hwLoadBackup 3 }
hwLoadBackupCompliances OBJECT IDENTIFIER ::= { hwLoadBackupConformance 1 }
hwLoadBackupCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting
the this module."
MODULE -- this module
MANDATORY-GROUPS {hwLoadParaTableGroup, hwBackupParaTableGroup, hwTrapEventCausesGroup,
hwTrapLoadBackupResultGroup, hwTrapLoadBackupTrapsGroup, hwBackupAndRestoreConfigGroup,
hwPatchTableGroup, hwPatchStatTableGroup}
::= { hwLoadBackupCompliances 1 }
-- ============== groups ==============
hwLoadBackupObjectGroups OBJECT IDENTIFIER ::= { hwLoadBackupConformance 2 }
hwLoadParaTableGroup OBJECT-GROUP
OBJECTS { hwLoadServerIpAddr, hwLoadMode, hwLoadFileName,
hwLoadContent, hwLoadBoardType, hwPortId,
hwLoadProcess, hwLoadUserName, hwLoadPassword}
STATUS current
DESCRIPTION
"The load parameter group objects."
::= { hwLoadBackupObjectGroups 1 }
hwBackupParaTableGroup OBJECT-GROUP
OBJECTS { hwBackupServerIpAddr, hwBackupMode, hwBackupFileName,
hwBackupContent, hwBackupProcess, hwBackupUserName,
hwBackupPassword, hwBackupBoardType }
STATUS current
DESCRIPTION
"The backup parameter group objects."
::= { hwLoadBackupObjectGroups 2 }
hwTrapEventCausesGroup OBJECT-GROUP
OBJECTS { hwConfEventCause}
STATUS current
DESCRIPTION
"The trap event causes group objects."
::= { hwLoadBackupObjectGroups 3 }
hwTrapLoadBackupResultGroup OBJECT-GROUP
OBJECTS { hwTrapLoadResult, hwTrapBackupResult, hwCopyAndSaveResult}
STATUS current
DESCRIPTION
"The load and backup result group objects."
::= { hwLoadBackupObjectGroups 4 }
hwTrapLoadBackupTrapsGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwBackupFailAlarm, hwLoadFailAlarm, hwBackupFailAlarmSuccess,
hwLoadFailAlarmSuccess, hwCopyAndSaveFail, hwCopyAndSaveSuccess,
hwConfigurationChangedEvent}
STATUS current
DESCRIPTION
"The load and backup traps group objects."
::= { hwLoadBackupObjectGroups 5 }
hwBackupAndRestoreConfigGroup OBJECT-GROUP
OBJECTS { hwBackupAndRestore}
STATUS current
DESCRIPTION
"The load and backup config group objects."
::= { hwLoadBackupObjectGroups 6 }
hwPatchTableGroup OBJECT-GROUP
OBJECTS { hwPatchDescription, hwPatchFuncNum,
hwPatchTextLen, hwPatchDataLen, hwPatchType,
hwPatchAdminStatus, hwPatchOperState}
STATUS current
DESCRIPTION
"The patch table group objects."
::= { hwLoadBackupObjectGroups 7 }
hwPatchStatTableGroup OBJECT-GROUP
OBJECTS { hwPatchStatNumMax, hwPatchStatTextMax, hwPatchStatDataMax,
hwPatchStatTextUsed, hwPatchStatDataUsed}
STATUS current
DESCRIPTION
"The patch statistics group objects."
::= { hwLoadBackupObjectGroups 8 }
-- ============== conformance information define end ==============
END
|