-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCOSB-COPY-MIB
executable file
·1140 lines (1005 loc) · 33.6 KB
/
CISCOSB-COPY-MIB
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
CISCOSB-COPY-MIB DEFINITIONS ::= BEGIN
IMPORTS
switch001, rndNotifications FROM CISCOSB-MIB
rndErrorDesc , rndErrorSeverity FROM CISCOSB-DEVICEPARAMS-MIB
OBJECT-TYPE, IpAddress, Unsigned32,Counter32, TimeTicks,
MODULE-IDENTITY, NOTIFICATION-TYPE FROM SNMPv2-SMI
DisplayString, TEXTUAL-CONVENTION,
TruthValue, RowStatus FROM SNMPv2-TC
InetAddressType,InetAddress FROM INET-ADDRESS-MIB; -- RFC2851
rlCopy MODULE-IDENTITY
LAST-UPDATED "200602020000Z"
ORGANIZATION "Cisco Small Business"
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Home http://www.cisco.com/smb>;,
Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"Added field rlCopyInetSpecificCopyInfo"
REVISION "201007250000Z"
DESCRIPTION
"Added USB file type."
REVISION "201005110000Z"
DESCRIPTION
"Added objects rlCopyInetDestinationUnitList,rlCopyHistoryInetDestinationUnitList,rlCopyInetUnitStatusList,rlCopyHistoryInetUnitStatusList."
REVISION "201002170000Z"
DESCRIPTION
"Added mirror-config and MIB rlCopyMirrorTimeout."
REVISION "200908100000Z"
DESCRIPTION
"The private MIB module definition for file copy in CISCOSB devices."
REVISION "200602020000Z"
DESCRIPTION
"Added objects rlCopyMessagesTable and rlCopyMessagesTableRemoveEntries."
REVISION "200309220000Z"
DESCRIPTION
"Initial version of this MIB."
::= { switch001 87 }
RlCopyApplicationType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies management application"
SYNTAX INTEGER {
mcli(1),
cli(2),
ewb(3),
nms(4),
initerm(5),
serial(6)
}
RlCopyLocationType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies file location"
SYNTAX INTEGER {
local(1),
anotherUnit(2),
tftp(3),
xmodem(4),
scp(5),
serial(6)
}
RlCopyFileType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The File type"
SYNTAX INTEGER {
other(1),
runningConfig(2),
startupConfig(3),
backupConfig(4),
runningMibConfig(5),
startupMibConfig(6),
backupMibConfig(7),
image(8),
boot(9),
null(10),
logging(11),
mirrorConfig(12),
usb(13)
}
rlCopyMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Copy support version. The current version is 1."
::= {rlCopy 1 }
rlCopyTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCopyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The (conceptual) table listing only one entry at a time
with parameters needed for configuration
of the file copy action."
::= {rlCopy 2 }
rlCopyEntry OBJECT-TYPE
SYNTAX RlCopyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry (conceptual row) in the CopyTable."
INDEX {rlCopyIndex }
::= {rlCopyTable 1 }
RlCopyEntry ::= SEQUENCE {
rlCopyIndex INTEGER,
rlCopyApplicationId RlCopyApplicationType,
rlCopySourceLocation RlCopyLocationType,
rlCopySourceIpAddress IpAddress,
rlCopySourceUnitNumber INTEGER,
rlCopySourceFileName DisplayString,
rlCopySourceFileType RlCopyFileType,
rlCopyDestinationLocation RlCopyLocationType,
rlCopyDestinationIpAddress IpAddress,
rlCopyDestinationUnitNumber INTEGER,
rlCopyDestinationFileName DisplayString,
rlCopyDestinationFileType RlCopyFileType,
rlCopyUpTime TimeTicks,
rlCopyOperationState INTEGER,
rlCopyBytesTransferred INTEGER,
rlCopyInBackground INTEGER,
rlCopyRowStatus RowStatus,
rlCopyHistoryIndex INTEGER
}
rlCopyIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The row index in the table."
::= { rlCopyEntry 1 }
rlCopyApplicationId OBJECT-TYPE
SYNTAX RlCopyApplicationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applicatione activated this comand"
::= { rlCopyEntry 2}
rlCopySourceLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source File Location"
::= { rlCopyEntry 3 }
rlCopySourceIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Ip address of the source remote host"
::= { rlCopyEntry 4 }
rlCopySourceUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit number of the source unit"
::= { rlCopyEntry 5 }
rlCopySourceFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the source file."
::= { rlCopyEntry 6 }
rlCopySourceFileType OBJECT-TYPE
SYNTAX RlCopyFileType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the source file."
::= { rlCopyEntry 7 }
rlCopyDestinationLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination File Location"
::= { rlCopyEntry 8 }
rlCopyDestinationIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Ip address of the destination remote host"
::= { rlCopyEntry 9 }
rlCopyDestinationUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit number of the destination unit,
value 257 means all units"
::= { rlCopyEntry 10 }
rlCopyDestinationFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the destination file."
::= { rlCopyEntry 11 }
rlCopyDestinationFileType OBJECT-TYPE
SYNTAX RlCopyFileType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the destination file."
::= { rlCopyEntry 12 }
rlCopyUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time elapsed since this entry was created."
::= { rlCopyEntry 13 }
rlCopyOperationState OBJECT-TYPE
SYNTAX INTEGER {
uploadInProgress(1),
downloadInProgress(2),
copyFailed(3),
copyTimedout(4),
copyFinished(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the copy operation."
::= { rlCopyEntry 14 }
rlCopyBytesTransferred OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes that were transferred by the copy operation."
::= { rlCopyEntry 15 }
rlCopyInBackground OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled the copy operation is done in the background."
DEFVAL { disable }
::= { rlCopyEntry 16 }
rlCopyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is used to insert or delete an entry"
::= { rlCopyEntry 17 }
-- Robi 9/5/2003
rlCopyHistoryIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The index of the entry corresponding to this one in the
rlCopyHistoryTable (equals rlCopyHistoryHistoryIndex).
A value of 0 indicates that no history entry should be kept
for this copy operation."
DEFVAL { 0 }
::= { rlCopyEntry 18 }
rlCopyFreeHistoryIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Gives the next free index in the rlCopyHistoryTable (i.e., the next
available value for rlCopyHistoryHistoryIndex)"
::= { rlCopy 3 }
rlCopyHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCopyHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The (conceptual) table listing only one entry at a time
with parameters needed for configuration
of the file copy action."
::= {rlCopy 4 }
rlCopyHistoryEntry OBJECT-TYPE
SYNTAX RlCopyHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry (conceptual row) in the rlCopyHistoryTable."
INDEX {rlCopyHistoryHistoryIndex }
::= {rlCopyHistoryTable 1 }
RlCopyHistoryEntry ::= SEQUENCE {
rlCopyHistoryHistoryIndex INTEGER,
rlCopyHistoryApplicationId RlCopyApplicationType,
rlCopyHistorySourceLocation RlCopyLocationType,
rlCopyHistorySourceIpAddress IpAddress,
rlCopyHistorySourceUnitNumber INTEGER,
rlCopyHistorySourceFileName DisplayString,
rlCopyHistorySourceFileType RlCopyFileType,
rlCopyHistoryDestinationLocation RlCopyLocationType,
rlCopyHistoryDestinationIpAddress IpAddress,
rlCopyHistoryDestinationUnitNumber INTEGER,
rlCopyHistoryDestinationFileName DisplayString,
rlCopyHistoryDestinationFileType RlCopyFileType,
rlCopyHistoryUpTime TimeTicks,
rlCopyHistoryOperationState INTEGER,
rlCopyHistoryBytesTransferred INTEGER,
rlCopyHistoryInBackground INTEGER,
rlCopyHistoryRowStatus RowStatus,
rlCopyHistoryErrorMessage DisplayString
}
rlCopyHistoryHistoryIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The row index in the table."
::= { rlCopyHistoryEntry 1 }
rlCopyHistoryApplicationId OBJECT-TYPE
SYNTAX RlCopyApplicationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The application that activated this comand"
::= { rlCopyHistoryEntry 2}
rlCopyHistorySourceLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source File Location"
::= { rlCopyHistoryEntry 3 }
rlCopyHistorySourceIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the source remote host"
::= { rlCopyHistoryEntry 4 }
rlCopyHistorySourceUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit number of the source unit"
::= { rlCopyHistoryEntry 5 }
rlCopyHistorySourceFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the source file."
::= { rlCopyHistoryEntry 6 }
rlCopyHistorySourceFileType OBJECT-TYPE
SYNTAX RlCopyFileType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the source file."
::= { rlCopyHistoryEntry 7 }
rlCopyHistoryDestinationLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination File Location"
::= { rlCopyHistoryEntry 8 }
rlCopyHistoryDestinationIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the destination remote host"
::= { rlCopyHistoryEntry 9 }
rlCopyHistoryDestinationUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit number of the destination unit"
::= { rlCopyHistoryEntry 10 }
rlCopyHistoryDestinationFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the destination file."
::= { rlCopyHistoryEntry 11 }
rlCopyHistoryDestinationFileType OBJECT-TYPE
SYNTAX RlCopyFileType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the destination file."
::= { rlCopyHistoryEntry 12 }
rlCopyHistoryUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time elapsed since this entry was created."
::= { rlCopyHistoryEntry 13 }
rlCopyHistoryOperationState OBJECT-TYPE
SYNTAX INTEGER {
uploadInProgress(1),
downloadInProgress(2),
copyFailed(3),
copyTimedout(4),
copyFinished(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the copy operation."
::= { rlCopyHistoryEntry 14 }
rlCopyHistoryBytesTransferred OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes that were transferred by the copy operation."
::= { rlCopyHistoryEntry 15 }
rlCopyHistoryInBackground OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled the copy operation is done in the background."
DEFVAL { disable }
::= { rlCopyHistoryEntry 16 }
rlCopyHistoryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is used delete an entry. No other operations are permitted since
the history table is populated and updated through the copy table only."
::= { rlCopyHistoryEntry 17 }
rlCopyHistoryErrorMessage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Error message as a result of failed copy action."
::= { rlCopyHistoryEntry 18 }
--- File Copy auditing control (SysLog)
rlCopyAuditingEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether SysLog messages
should be issued on file copy events"
DEFVAL { true }
::= { rlCopy 5 }
rlCopyMessagesTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCopyMessagesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The table listing the messages issued during a COPY operation."
::= {rlCopy 6 }
rlCopyMessagesEntry OBJECT-TYPE
SYNTAX RlCopyMessagesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry (conceptual row) in the rlCopyMessagesTable."
INDEX {rlCopyMessagesCopyIndex, rlCopyMessagesMessageIndex }
::= {rlCopyMessagesTable 1 }
RlCopyMessagesEntry ::= SEQUENCE {
rlCopyMessagesCopyIndex INTEGER,
rlCopyMessagesMessageIndex INTEGER,
rlCopyMessagesMessageText DisplayString,
rlCopyMessagesStatus RowStatus
}
rlCopyMessagesCopyIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the copy operation whose messages are displayed."
::= { rlCopyMessagesEntry 1 }
rlCopyMessagesMessageIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the displayed message."
::= { rlCopyMessagesEntry 2 }
rlCopyMessagesMessageText OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The text of the message occurred in the copy operation."
::= { rlCopyMessagesEntry 3 }
rlCopyMessagesStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Only destroy is supported."
::= { rlCopyMessagesEntry 4 }
rlCopyMessagesTableRemoveEntries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object with value n will remove all entries associated
with copy operation represented by the value n from the rlCopyMessagesTable,
i.e. all the entries with rlCopyMessagesCopyIndex = n."
::= { rlCopy 7 }
--
-- Copy Notifications
--
rlCopyFinished NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Informational trap indicating that the device has finished
a copy operation successfully."
::= { rndNotifications 180 }
rlCopyFailed NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Informational trap indicating that the copy operation has failed."
::= { rndNotifications 181 }
rlCopySWFinished NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"A trap indicating that the device has finished a copy operation of
image successfully."
::= { rndNotifications 211 }
rlCopySWToUnits NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity, rlCopyUnitsList }
STATUS current
DESCRIPTION
"A trap indicating to master unit that remote units have finished
a copy operation of image successfully."
::= { rndNotifications 212 }
rlCopyMirrorFileIllegal NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"A trap indicating that the mirror configuration file is illegal
due to failure of prevoius copy operation/s to mirror-config."
::= { rndNotifications 220 }
-- AlexeyK 30/11/06 IPv6 support
rlCopyInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCopyInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The (conceptual) table listing only one entry at a time
with parameters needed for configuration
of the file copy action."
::= {rlCopy 8 }
rlCopyInetEntry OBJECT-TYPE
SYNTAX RlCopyInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry (conceptual row) in the CopyTable."
INDEX {rlCopyInetIndex }
::= {rlCopyInetTable 1 }
RlCopyInetEntry ::= SEQUENCE {
rlCopyInetIndex INTEGER,
rlCopyInetApplicationId RlCopyApplicationType,
rlCopyInetSourceLocation RlCopyLocationType,
rlCopyInetSourceIpAddressType InetAddressType,
rlCopyInetSourceIpAddress InetAddress,
rlCopyInetSourceUnitNumber INTEGER,
rlCopyInetSourceFileName DisplayString,
rlCopyInetSourceFileType RlCopyFileType,
rlCopyInetDestinationLocation RlCopyLocationType,
rlCopyInetDestinationIpAddressType InetAddressType,
rlCopyInetDestinationIpAddress InetAddress,
rlCopyInetDestinationUnitNumber INTEGER,
rlCopyInetDestinationFileName DisplayString,
rlCopyInetDestinationFileType RlCopyFileType,
rlCopyInetUpTime TimeTicks,
rlCopyInetOperationState INTEGER,
rlCopyInetBytesTransferred INTEGER,
rlCopyInetInBackground INTEGER,
rlCopyInetRowStatus RowStatus,
rlCopyInetHistoryIndex INTEGER,
rlCopyInetDestinationUnitList INTEGER,
rlCopyInetUnitStatusList INTEGER,
rlCopyInetSpecificCopyInfo DisplayString
}
rlCopyInetIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The row index in the table."
::= { rlCopyInetEntry 1 }
rlCopyInetApplicationId OBJECT-TYPE
SYNTAX RlCopyApplicationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applicatione activated this comand"
::= { rlCopyInetEntry 2}
rlCopyInetSourceLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source File Location"
::= { rlCopyInetEntry 3 }
rlCopyInetSourceIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address type of the source remote host"
::= { rlCopyInetEntry 4 }
rlCopyInetSourceIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address of the source remote host"
::= { rlCopyInetEntry 5 }
rlCopyInetSourceUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit number of the source unit"
::= { rlCopyInetEntry 6 }
rlCopyInetSourceFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the source file."
::= { rlCopyInetEntry 7 }
rlCopyInetSourceFileType OBJECT-TYPE
SYNTAX RlCopyFileType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the source file."
::= { rlCopyInetEntry 8 }
rlCopyInetDestinationLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination File Location"
::= { rlCopyInetEntry 9 }
rlCopyInetDestinationIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address type of the destination remote host"
::= { rlCopyInetEntry 10 }
rlCopyInetDestinationIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address of the destination remote host"
::= { rlCopyInetEntry 11 }
rlCopyInetDestinationUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit number of the destination unit,
value 257 means all units"
::= { rlCopyInetEntry 12 }
rlCopyInetDestinationFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the destination file."
::= { rlCopyInetEntry 13 }
rlCopyInetDestinationFileType OBJECT-TYPE
SYNTAX RlCopyFileType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the destination file."
::= { rlCopyInetEntry 14 }
rlCopyInetUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time elapsed since this entry was created."
::= { rlCopyInetEntry 15 }
rlCopyInetOperationState OBJECT-TYPE
SYNTAX INTEGER {
uploadInProgress(1),
downloadInProgress(2),
copyFailed(3),
copyTimedout(4),
copyFinished(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the copy operation."
::= { rlCopyInetEntry 16 }
rlCopyInetBytesTransferred OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes that were transferred by the copy operation."
::= { rlCopyInetEntry 17 }
rlCopyInetInBackground OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled the copy operation is done in the background."
DEFVAL { disable }
::= { rlCopyInetEntry 18 }
rlCopyInetRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is used to insert or delete an entry"
::= { rlCopyInetEntry 19 }
rlCopyInetHistoryIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The index of the entry corresponding to this one in the
rlCopyHistoryTable (equals rlCopyHistoryHistoryIndex).
A value of 0 indicates that no history entry should be kept
for this copy operation."
DEFVAL { 0 }
::= { rlCopyInetEntry 20 }
-- Liran 17-Feb-2010
rlCopyInetDestinationUnitList OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A bitmap of destination units for copy operation."
DEFVAL { 0 }
::= { rlCopyInetEntry 21 }
rlCopyInetUnitStatusList OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bitmap of copy operation status for each unit."
::= { rlCopyInetEntry 22 }
rlCopyInetSpecificCopyInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Copy application specific information. For example: for SCP copy this
field can be used to pass username and password information."
DEFVAL { "" }
::= { rlCopyInetEntry 23 }
-- AlexeyK 30/11/06 IPv6
rlCopyHistoryInetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCopyHistoryInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The (conceptual) table listing only one entry at a time
with parameters needed for configuration
of the file copy action."
::= {rlCopy 9 }
rlCopyHistoryInetEntry OBJECT-TYPE
SYNTAX RlCopyHistoryInetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry (conceptual row) in the rlCopyHistoryTable."
INDEX {rlCopyHistoryInetHistoryIndex }
::= {rlCopyHistoryInetTable 1 }
RlCopyHistoryInetEntry ::= SEQUENCE {
rlCopyHistoryInetHistoryIndex INTEGER,
rlCopyHistoryInetApplicationId RlCopyApplicationType,
rlCopyHistoryInetSourceLocation RlCopyLocationType,
rlCopyHistoryInetSourceIpAddressType InetAddressType,
rlCopyHistoryInetSourceIpAddress InetAddress,
rlCopyHistoryInetSourceUnitNumber INTEGER,
rlCopyHistoryInetSourceFileName DisplayString,
rlCopyHistoryInetSourceFileType RlCopyFileType,
rlCopyHistoryInetDestinationLocation RlCopyLocationType,
rlCopyHistoryInetDestinationIpAddressType InetAddressType,
rlCopyHistoryInetDestinationIpAddress InetAddress,
rlCopyHistoryInetDestinationUnitNumber INTEGER,
rlCopyHistoryInetDestinationFileName DisplayString,
rlCopyHistoryInetDestinationFileType RlCopyFileType,
rlCopyHistoryInetUpTime TimeTicks,
rlCopyHistoryInetOperationState INTEGER,
rlCopyHistoryInetBytesTransferred INTEGER,
rlCopyHistoryInetInBackground INTEGER,
rlCopyHistoryInetRowStatus RowStatus,
rlCopyHistoryInetErrorMessage DisplayString,
rlCopyHistoryInetDestinationUnitList INTEGER,
rlCopyHistoryInetUnitStatusList INTEGER
}
rlCopyHistoryInetHistoryIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The row index in the table."
::= { rlCopyHistoryInetEntry 1 }
rlCopyHistoryInetApplicationId OBJECT-TYPE
SYNTAX RlCopyApplicationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The application that activated this comand"
::= { rlCopyHistoryInetEntry 2}
rlCopyHistoryInetSourceLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source File Location"
::= { rlCopyHistoryInetEntry 3 }
rlCopyHistoryInetSourceIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address type of the source remote host"
::= { rlCopyHistoryInetEntry 4 }
rlCopyHistoryInetSourceIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Inet address of the source remote host"
::= { rlCopyHistoryInetEntry 5 }
rlCopyHistoryInetSourceUnitNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit number of the source unit"
::= { rlCopyHistoryInetEntry 6 }
rlCopyHistoryInetSourceFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the source file."
::= { rlCopyHistoryInetEntry 7 }
rlCopyHistoryInetSourceFileType OBJECT-TYPE
SYNTAX RlCopyFileType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of the source file."
::= { rlCopyHistoryInetEntry 8 }
rlCopyHistoryInetDestinationLocation OBJECT-TYPE
SYNTAX RlCopyLocationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination File Location"
::= { rlCopyHistoryInetEntry 9 }
rlCopyHistoryInetDestinationIpAddressType OBJECT-TYPE