This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathSAMSUNG-HOST-RESOURCES-EXT-TC
4079 lines (3636 loc) · 172 KB
/
SAMSUNG-HOST-RESOURCES-EXT-TC
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
SAMSUNG-HOST-RESOURCES-EXT-TC DEFINITIONS ::= BEGIN
-- Module: Host Resources TC
-- File: SamsungHosttc.mib
-- Editors: [email protected]
-- Date: July 17, 2004
-- Version: 1.00
-- Textual Conventions companion to the Host Resources Extensions MIB
-- Contains the REGISTRY of SCMI Standard Device Types,
-- the REGISTRY of SCMI Standard CRU Types,
-- the REGISTRY of SCMI HRX Admin Service Types, and
-- the REGISTRY of SCMI HRX Admin Device Operation Types.
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY,
OBJECT-TYPE
FROM SNMPv2-SMI -- IETF RFC 1442/1902/2578
TEXTUAL-CONVENTION
FROM SNMPv2-TC -- IETF RFC 1443/1903/2579
samsungCommonMIB
FROM SAMSUNG-COMMON-MIB;
scmHrTC MODULE-IDENTITY
LAST-UPDATED "0407170000Z" -- 17 Jul 2004
ORGANIZATION "Samsung Corporation - SCMI Working Group"
CONTACT-INFO
" SCMI Editors
Email: [email protected]
"
DESCRIPTION
"Version: 1.00
The TC module for textual conventions, enumerated types, OIDs,
and other volatile elements of the companion Host Resources
Extensions MIB ('scmHrMIB'), which supports extended
configuration and management of various host resources for
network accessible host systems. These modules augment and
extend the original IETF Host Resources MIB (RFC 2790).
Usage: This MIB module introduces support for the 'realization'
of both 'physical' and 'logical' devices, consistent with ISO
DPA (Document Printing Application), ISO/IEC 10175, as reflected
in the object 'scmHrDevInfoRealization'.
Note: Conforming implementations SHALL NOT 'bubble up' status
from 'physical' devices to associated 'logical' devices. All
devices SHALL report their own status ONLY.
See: Section 9 'Supplement' in SCMI Extensions to IETF Host
Resources TC, for implementation guidance for this TC module.
Copyright (C) 1995-2003 Samsung Corporation. All Rights Reserved."
::= { samsungCommonMIB 52 }
--
-- SCMI Extensions to IETF Host Resources (HRX) TC
--
-- REGISTRY of SCMI Standard Device Types
-- (used with 'hrDeviceType' in Device Group
-- of the IETF Host Resources MIB, RFC 2790).
--
-- Usage: Developers SHOULD request registration of appropriate
-- SCMI standard device types when they design or integrate a device
-- (with some physical, and NOT merely logical, realization)
-- which is network manageable on a host system.
--
-- Usage: Logical devices (ie, services of some sort) SHOULD
-- be represented by: a) their own fully free-standing MIBs; and/or
-- b) elaboration of an existing IETF or SCMI standard device type into
-- a 'logical' sibling.
--
-- The final arc of IETF standard device types is within the
-- range '1..49'.
-- The final arc of SCMI standard device types is within the
-- range '101..149'.
--
-- In the future, SCMI MAY add types for 'marker', 'input tray', etc,
-- to enable support of managed host systems which do NOT have printer
-- capabilities (and therefore do NOT implement the Printer MIB),
-- and to support installation and configuration information for
-- their component physical subunits.
scmHrDeviceTypes OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The root of all additional device types defined in HRX TC."
::= { scmHrTC 2 }
scmHrDeviceHostSystem OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Host system device type - manufacturer independent.
For host systems which instrument multiple devices and
support MIBs with tables INDEXed by 'hrDeviceIndex', the single
'scmHrDeviceHostSystem' device represents the 'root' device
which MAY be used to manage overall host system defaults,
configuration, status, etc."
REFERENCE
"See: 'scmHrDeviceHostSystemHistory' in this SCMI HRX TC."
::= { scmHrDeviceTypes 101 }
scmHrDeviceScanner OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Scanner device type - manufacturer independent.
An 'scmHrDeviceScanner' device with 'scmHrDevInfoRealization' of
'physical' is a 'real' input device (eg, a 'scan channel' on a
multifunction printer).
An 'scmHrDeviceScanner' device with 'scmHrDevInfoRealization' of
'logical' is a 'virtual' input device (eg, a 'personality' of a
'scan channel' on a multifunction printer)."
REFERENCE
"See: 'scmHrDeviceScannerHistory' in this SCMI HRX TC."
::= { scmHrDeviceTypes 102 }
scmHrDeviceCopier OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Copier device type - manufacturer independent.
An 'scmHrDeviceCopier' device with 'scmHrDevInfoRealization' of
'physical' is a 'real' I/O device (eg, a 'copier' on a
multifunction printer).
An 'scmHrDeviceCopier' device with 'scmHrDevInfoRealization' of
'logical' is a 'virtual' I/O device (eg, a 'personality' of a
'copier' on a multifunction printer)."
REFERENCE
"See: 'scmHrDeviceCopierHistory' in this SCMI HRX TC."
::= { scmHrDeviceTypes 103 }
scmHrDeviceFax OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Fax device type - manufacturer independent.
An 'scmHrDeviceFax' device with 'scmHrDevInfoRealization' of
'physical' is a 'real' I/O device (eg, a 'fax channel' on a
multifunction printer).
An 'scmHrDeviceFax' device with 'scmHrDevInfoRealization' of
'logical' is a 'virtual' I/O device (eg, a 'personality' of a
'fax channel' on a multifunction printer)."
REFERENCE
"See: 'scmHrDeviceFaxHistory' in this SCMI HRX TC."
::= { scmHrDeviceTypes 104 }
scmHrDeviceMailbox OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Mailbox device type - manufacturer independent.
An 'scmHrDeviceMailbox' device is a 'multi-bin' output device,
with each 'bin' assigned to a user, group, account, etc, and
(optionally) physical security associated with each 'bin'.
An 'scmHrDeviceMailbox' device with 'scmHrDevInfoRealization' of
'physical' is a 'real' output device (eg, a 'tower mailbox' on
a high-end printer).
An 'scmHrDeviceMailbox' device with 'scmHrDevInfoRealization' of
'logical' is a 'virtual' output device (eg, a 'personality' of a
'tower mailbox' on a high-end printer).
An 'scmHrDeviceMailbox' device with 'scmHrDevInfoRealization' of
'logical' MAY also indicate the current configuration of a
'physical' device of type 'scmHrDeviceMailboxSorter'."
REFERENCE
"See: 'scmHrDeviceMailboxSorter' and 'scmHrDeviceSorter'."
::= { scmHrDeviceTypes 105 }
scmHrDeviceFinisher OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Finisher device type - manufacturer independent.
An 'scmHrDeviceFinisher' device is an output finishing device.
An 'scmHrDeviceFinisher' device with 'scmHrDevInfoRealization'
of 'physical' is a 'real' output device (eg, a 'stapler'
on a high-end printer).
An 'scmHrDeviceFinisher' device with 'scmHrDevInfoRealization'
of 'logical' is a 'virtual' output device (eg, a 'personality'
of a 'stapler' on a high-end printer)."
::= { scmHrDeviceTypes 106 }
scmHrDeviceFeeder OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Feeder device type - manufacturer independent.
An 'scmHrDeviceFeeder' device is an input device.
An 'scmHrDeviceFeeder' device with 'scmHrDevInfoRealization'
of 'physical' is a 'real' output device (eg, a 'high-capacity
feeder' on a high-end printer).
An 'scmHrDeviceFeeder' device with 'scmHrDevInfoRealization'
of 'logical' is a 'virtual' output device (eg, a 'personality'
of a 'high-capacity feeder' on a high-end printer)."
::= { scmHrDeviceTypes 107 }
scmHrDeviceSorter OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Sorter device type - manufacturer independent.
An 'scmHrDeviceSorter' device is a 'multi-bin' output device,
with each 'bin' assigned to a copy of the current job, and
NO physical security associated with each 'bin'.
An 'scmHrDeviceSorter' device with 'scmHrDevInfoRealization' of
'physical' is a 'real' output device (eg, a '10-bin sorter' on
a mid-range printer).
An 'scmHrDeviceSorter' device with 'scmHrDevInfoRealization' of
'logical' is a 'virtual' output device (eg, a 'personality' of a
'10-bin sorter' on a mid-range printer).
An 'scmHrDeviceSorter' device with 'scmHrDevInfoRealization' of
'logical' MAY also indicate the current configuration of a
'physical' device of type 'scmHrDeviceMailboxSorter'."
REFERENCE
"See: 'scmHrDeviceMailboxSorter' and 'scmHrDeviceMailbox'."
::= { scmHrDeviceTypes 108 }
scmHrDeviceMailboxSorter OBJECT-IDENTITY
STATUS current
DESCRIPTION
"MailboxSorter device type - manufacturer independent.
An 'scmHrDeviceMailboxSorter' is a 'multi-bin' output device,
which MAY be configured as either a 'mailbox' or a 'sorter',
by a system adminstrator or by default product configuration.
An 'scmHrDeviceMailboxSorter' with 'scmHrDevInfoRealization' of
'physical' is a 'real' output device and associated with
associated with exactly two 'logical' output devices of types
'scmHrDeviceMailbox' and 'scmHrDeviceSorter' - one of these
'logical' devices MAY be 'running' (currently configured) - at
least one SHALL be 'down' (NOT currently configured)."
::= { scmHrDeviceTypes 109 }
scmHrDevicePrintAppliance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Print appliance device type - manufacturer independent.
An 'scmHrDevicePrintAppliance' is a network printing appliance
with 'scmHrDevInfoRealization' of 'physical'.
An 'scmHrDevicePrintAppliance' SHALL statically and/or actively
discover available network printers and SHOULD advertise them
as supported output devices, using rows in 'hrDeviceTable' of
IETF HR MIB (RFC 2790) and 'prtGeneralTable' of the Printer MIB
(RFC 1759 or successor), with 'hrDeviceType' set to
'hrDevicePrinter'.
An 'scmHrDevicePrintAppliance' SHALL NOT use 'hrDeviceIndex' of
'1' (first row) for an 'hrDevicePrinter' row, because a network
printing appliance is an enhanced spooler and NOT a printer."
REFERENCE
"See: 'hrDevicePrinter' in IETF Host Resources MIB (RFC 2790).
See: 'scmHrDevicePrinterHistory' in this SCMI HRX TC."
::= { scmHrDeviceTypes 110 }
scmHrDeviceMarker OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Marker Engine device type - manufacturer independent.
An 'scmHrDeviceMarker' device with 'scmHrDevInfoRealization'
of 'physical' is a 'real' output device (eg, the
'marking engine' on a multifunction printer or copier). The
marking engine is the module that accepts a print ready image
and physical media as input and outputs physical media with a
physical representation of the print ready input image. The
'scmHrDeviceMarker' is a
single module within a group of modules that cumulatively are
represented by 'hrDevicePrinter'. The marker shall represent the
whole marker as a single physical unit and should maintain a
single entry in the 'hrDeviceTable' for all products that
support a single marking engine regardless of internal engine
mark points.
(e.g. B&W, Highlight Color and Full Color Presses shall have a
single entry in 'hrDeviceTable'). Multiple entries of
'scmHrDeviceMarker' may exist in the 'hrDeviceTable' if the
system supports multiple print engines whether chained, in
parallel or in any other configuration.
An 'scmHrDeviceMarker' SHALL NOT use 'hrDeviceIndex' of
'1' (first row). The index 1 is reserved for an
'hrDevicePrinter' row."
::= { scmHrDeviceTypes 111 }
scmHrDeviceFinisherBFM OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Basic Finisher Module device type - manufacturer independent.
An 'scmHrDeviceFinisherBFM' device is a basic output finishing
device. An 'scmHrDeviceFinisherBFM' device with
'scmHrDevInfoRealization' of 'physical' is a 'real' output
device (eg, a 'stapler' on a high-end printer).
An 'scmHrDeviceFinisherBFM' device with
'scmHrDevInfoRealization' of 'logical' is a 'virtual' output
device (eg, a 'personality' of a 'stapler' on a high-end
printer)."
::= { scmHrDeviceTypes 112 }
scmHrDeviceFinisherMFF OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Multi-Function Finisher device type - manufacturer
independent.
An 'scmHrDeviceFinisherMFF' device is a multi-function output
finishing device. An 'scmHrDeviceFinisherMFF' device with
'scmHrDevInfoRealization' of 'physical' is a 'real' output
device (eg, a 'saddle stitcher', 'C-Folder', 'Z-Folder',
'Hole Puncher' on a high-end printer).
An 'scmHrDeviceFinisherMFF' device with
'scmHrDevInfoRealization' of 'logical' is a 'virtual' output
device (eg, a 'personality' of a 'saddle stitcher',
'C-Folder', 'Z-Folder', 'Hole Puncher' on a
high-end printer)."
::= { scmHrDeviceTypes 113 }
scmHrDeviceFinisherXIM OBJECT-IDENTITY
STATUS current
DESCRIPTION
"eXternal Interface Module Finisher device type.
An 'scmHrDeviceFinisherXIM' device is a hardware interface
used to pass media from a Samsung printing device to a 3rd party
finishing devices. The 'scmHrDeviceFinihserXIM' may or may not
contain its own output trays or finishing capabilities.
An 'scmHrDeviceFinisherXIM' device with
'scmHrDevInfoRealization' of 'physical' is a 'real' output
device (e.g., an 'output bridge' on a high-end printer)."
::= { scmHrDeviceTypes 114 }
scmHrDeviceFinisher3rdParty OBJECT-IDENTITY
STATUS current
DESCRIPTION
"3rd Party Finisher device type - manufacturer independent.
An 'scmHrDeviceFinisher3rdParty' device is an output finishing
device. An 'scmHrDeviceFinisher3rdParty' device with
'scmHrDevInfoRealization'
of 'physical' is a 'real' output device (eg, a 'stapler' on
a high-end printer). An 'scmHrDeviceFinisher3rdParty' device
with 'scmHrDevInfoRealization' of 'logical' is a 'virtual'
output device (eg, a 'personality' of a 'stapler' on a high-end
printer)."
::= { scmHrDeviceTypes 115 }
scmHrDevicePaymentInterface OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Payment Interface device type - manufacturer independent.
An 'scmHrDevicePaymentInterface' device is an payment
authorization device.
An 'scmHrDevicePaymentInterface' device with
'scmHrDevInfoRealization' of 'physical' is a 'real' point of
purchase validation device (eg, a 'coin operated', 'smart card'
or other form of point of purchase payment for services
rendered on a multi-function printer or copier).
An 'scmHrDevicePaymentInterface' device with
'scmHrDevInfoRealization' of 'logical' is a 'virtual' point
of purchase validation device (eg, a software service that
accepts payment through the Web or some other form of remote
point of purchase payment for services rendered on a
multi-function printer or copier)."
::= { scmHrDeviceTypes 116 }
scmHrDeviceInterposer OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Interposer device type - manufacturer independent.
An 'scmHrDeviceInterposer' device is an input device which
physically resides downstream of the print engine amongst
finishing modules.
An 'scmHrDeviceInterposer' device with
'scmHrDevInfoRealization' of 'physical' is a 'real' input
device (eg, a 'high-capacity Interposing feeder' that
physically resides amongst finishing modules
on a high-end printer).
An 'scmHrDeviceInterposer' device with
'scmHrDevInfoRealization' of 'logical' is a 'virtual'
input device (eg, a 'personality' of a
'high-capacity Interposing feeder' that physically resides
amongst finishing modules on a high-end printer).
Interposers are essentially feeders that are placed
downstream of the print engine paper path and upstream of
finishing devices. Interposer fed media is not marked by the
print engine; instead media fed from an interposer is inserted
before, between or after marked pages. The media constitutes
covers, separators etc."
::= { scmHrDeviceTypes 117 }
-- REGISTRY of SCMI Standard History Device Types
-- (used with 'hrDeviceType' in Device Group
-- of the IETF Host Resources MIB, RFC 2790).
--
-- Usage: May be used to segregate historical information for any
-- standard device type in any MIB table indexed by 'hrDeviceIndex'.
--
-- Eg, the 'scmJobGenBasicTable' in the SCMI Job Monitoring MIB and/or
-- the 'jm[Job|Attribute]Table' in the PWG Job Monitoring MIB could
-- have a segment for an 'hrDevicePrinter' device type (current and
-- very recent jobs) and a segment for an 'scmHrDevicePrinterHistory'
-- device type (longer-term job history of completed jobs).
-- Entries in the 'scmHrDevDetailTable' SHOULD cross-link these related
-- devices (using 'deviceJob[Service|History]DeviceIndex').
--
-- Algorithm: The final arc of each standard job history device type
-- is derived by adding decimal '50' to the final arc of the companion
-- standard job service device type.
scmHrDeviceHostSystemHistory OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Host system history device type - manufacturer independent."
REFERENCE
"See: 'scmHrDeviceHostSystem' in this SCMI HRX TC."
::= { scmHrDeviceTypes 151 }
scmHrDeviceScannerHistory OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Scanner history device type - manufacturer independent."
REFERENCE
"See: 'scmHrDeviceScanner' in this SCMI HRX TC."
::= { scmHrDeviceTypes 152 }
scmHrDeviceCopierHistory OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Copier history device type - manufacturer independent."
REFERENCE
"See: 'scmHrDeviceCopier' in this SCMI HRX TC."
::= { scmHrDeviceTypes 153 }
scmHrDeviceFaxHistory OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Fax history device type - manufacturer independent."
REFERENCE
"See: 'scmHrDeviceFax' in this SCMI HRX TC."
::= { scmHrDeviceTypes 154 }
scmHrDevicePrinterHistory OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Printer history device type - manufacturer independent."
REFERENCE
"See: 'hrDevicePrinter' in the IETF HR MIB."
::= { scmHrDeviceTypes 55 } -- 'hrDevicePrinter' + 50
-- REGISTRY of SCMI Standard CRU Types
-- (used with 'hrDeviceType' in Device Group
-- of the IETF Host Resources MIB, RFC 2790).
scmHrCruXerographicModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU xerographic module - manufacturer independent.
An 'scmHrCruXerographicModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'."
::= { scmHrDeviceTypes 201 }
scmHrCruFuserModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU fuser module - manufacturer independent.
An 'scmHrCruFuserModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'."
::= { scmHrDeviceTypes 202 }
scmHrCruTonerBottleModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU toner bottle module - manufacturer independent.
An 'scmHrCruTonerBottleModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'."
::= { scmHrDeviceTypes 203 }
scmHrCruCollectorBottleModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU (developer) collector bottle - manufacturer independent.
An 'scmHrCruCollectorBottleModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'."
::= { scmHrDeviceTypes 204 }
scmHrCruTrayFeedHeadModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU tray feed head module - manufacturer independent.
An 'scmHrCruTrayFeedHeadModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'."
::= { scmHrDeviceTypes 205 }
scmHrCruAdfFeedHeadModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU ADF feed head module - manufacturer independent.
An 'scmHrCruAdfFeedHeadModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'.
Note: ADF is an acronym for 'automatic document feeder'."
::= { scmHrDeviceTypes 206 }
scmHrCruFuserWebModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU fuser web module - manufacturer independent.
An 'scmHrCruFuserWebModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'.
Note: A 'fuser web' is an oil-soaked fiber roll in a fuser,
which prevents toner from getting on the fuser roll. The 'fuser
web' device would normally be replaced several times before the
actual fuser device ('scmHrCRUFuserModule') is replaced."
::= { scmHrDeviceTypes 207 }
scmHrCruFilterModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU filter module - manufacturer independent.
An 'scmHrCruFilterModule' device is a customer replaceable
filter or filter unit, with 'scmHrDevInfoRealization' of
'physical'."
::= { scmHrDeviceTypes 208 }
scmHrCruCleanerUnitModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU cleaner unit module - manufacturer independent.
An 'scmHrCruCleanerUnitModule' device is a customer
replaceable cleaner unit, with 'scmHrDevInfoRealization' of
'physical' (eg, a belt cleaner or a photoreceptor cleaner)."
REFERENCE
"See: 'cleanerUnit' in 'PrtMarkerSuppliesTypeTC' in
the Printer MIB v2."
::= { scmHrDeviceTypes 209 }
scmHrCruTransferUnitModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU transfer unit module - manufacturer independent.
An 'scmHrCruTransferUnitModule' device is a customer
replaceable transfer unit, with 'scmHrDevInfoRealization' of
'physical'."
REFERENCE
"See: 'transferUnit' in 'PrtMarkerSuppliesTypeTC' in
the Printer MIB v2."
::= { scmHrDeviceTypes 210 }
scmHrCruTransferRollerModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU transfer roller module - manufacturer independent.
An 'scmHrCruTransferRollerModule' device is a customer
replaceable transfer roller, with 'scmHrDevInfoRealization' of
'physical' (eg, a biased transfer roller)."
REFERENCE
"See: 'transferUnit' in 'PrtMarkerSuppliesTypeTC' in
the Printer MIB v2."
::= { scmHrDeviceTypes 211 }
scmHrCruPFPFeedRollModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU Paper Feed Platform module - manufacturer independent.
An 'scmHrCruPaperFeedModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'."
::= { scmHrDeviceTypes 212 }
scmHrCruPFPRetardRollModule OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CRU PFP Retard Roll module - manufacturer independent.
An 'scmHrCruPFPRetardRollModule' device is a customer
replaceable unit, with 'scmHrDevInfoRealization' of 'physical'."
::= { scmHrDeviceTypes 213 }
scmHrDeviceUSBPort OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The device type identifier used for a
Universal Serial Bus port."
::= { scmHrDeviceTypes 250 }
scmHrDeviceFlashDIMMFileStore OBJECT-IDENTITY
STATUS current
DESCRIPTION
" The device type identifier used for a Flash DIMM that contains
a file system that is used to store files such as font
opposed to a Flash DIMM that contains a boot loader."
::= { scmHrDeviceTypes 260 }
scmHrDeviceFlashDIMMBootLoader OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The device type identifier used for a Flash DIMM that contains
the boot loader for a device. Files may or may not be stored on
this device. As opposed to a Flash DIMM that contains a file
store system."
::= { scmHrDeviceTypes 261 }
-- REGISTRY of SCMI HRX Admin Service Types (Classes)
-- (MAY be used in the 'scmSec[Service|PolicyService]TypeOID'
-- objects in the closely related SCMI Security MIB, in
-- conforming management agents which do NOT implement the
-- related SCMI System Admin MIB).
scmHrAdminServiceTypes OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The root of all host system management service types (classes)
defined in the Host Resources Extensions TC."
REFERENCE
"See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrTC 3 }
scmHrAdminObjectService OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The host system object management service."
REFERENCE
"See: 'scmSysAdminObject...' in SCMI System Admin MIB.
See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrAdminServiceTypes 1 }
scmHrAdminServerService OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The host system server management service."
REFERENCE
"See: 'scmSysAdminServer...' in SCMI System Admin MIB,
'hrSW[Running|Installed]Table' in IETF HR MIB, and
'scmHrSW[Running|Installed]ExtTable' in SCMI HRX MIB.
See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrAdminServiceTypes 2 }
scmHrAdminDeviceService OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The host system device management service."
REFERENCE
"See: 'scmSysAdminDevice...' in SCMI System Admin MIB,
'hrDeviceTable' in IETF HR MIB, and
'scmHrDev[Info|Help|Mgmt|Power|Traffic|Calendar]Table'
in SCMI HRX MIB.
See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrAdminServiceTypes 3 }
scmHrAdminJobService OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The host system job management service."
REFERENCE
"See: 'scmSysAdminJob...' in SCMI System Admin MIB, and
'scmJob[...]Table' in SCMI Job Monitoring MIB.
See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrAdminServiceTypes 4 }
scmHrAdminDocService OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The host system document management service."
REFERENCE
"See: 'scmSysAdminDoc...' in SCMI System Admin MIB, and
'scmDoc[...]Table' in SCMI Job Monitoring MIB.
See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrAdminServiceTypes 5 }
scmHrAdminSecurityService OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The host system security management service."
REFERENCE
"See: 'scmSysAdminSecurity...' in SCMI System Admin MIB.
See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrAdminServiceTypes 6 }
scmHrAdminCommsService OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The host system communications management service."
REFERENCE
"See: 'scmSysAdminComms...' in SCMI System Admin MIB and
SCMI Comms Config and Comms Engine MIBs.
See: 'ScmSecPosixVerbs' and 'scmSecServiceTypeOID'
in SCMI Security TC/MIB."
::= { scmHrAdminServiceTypes 7 }
-- REGISTRY of SCMI HRX Admin Device Operation Types
-- (MAY be used in the 'scmSecPolicyVerbTypeOID'
-- object in the closely related SCMI Security MIB, for
-- fine-grained access control to device management verbs, in
-- conforming management agents which do NOT implement the
-- related SCMI System Admin MIB).
scmHrAdminDeviceOperationTypes OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The root of all host resources admin device operation types
defined in the Host Resources Extensions TC.
Usage: The following OIDs support access control for the simple
device admin operations defined in 'ScmHrDevMgmtCommandRequest'
and used in 'scmHrDevMgmtCommandRequest' in the SCMI HRX MIB,
via 'scmSec[Master|Policy]VerbTypeOID' in the SCMI Security MIB,
WITHOUT requiring implementation of the SCMI System Admin MIB."
REFERENCE
"See: 'scmSec[Master|Policy]VerbTypeOID' in
SCMI Security MIB."
::= { scmHrTC 4 }
scmHrAdminDeviceNone OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 1 }
scmHrAdminDeviceStartup OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 2 }
scmHrAdminDeviceResetWarning OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 3 }
scmHrAdminDeviceTest OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 4 }
scmHrAdminDeviceShutdown OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 5 }
scmHrAdminDeviceQuiesce OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 6 }
scmHrAdminDeviceResetCounters OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 7 }
scmHrAdminDeviceResetWarm OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 8 }
scmHrAdminDeviceResetCold OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 9 }
scmHrAdminDeviceResetFactory OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 10 }
scmHrAdminDeviceFlushInput OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 11 }
scmHrAdminDeviceFlushOutput OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 12 }
scmHrAdminDeviceFlushInOut OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 13 }
scmHrAdminDeviceManage OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 14 }
scmHrAdminDeviceRefresh OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 15 }
scmHrAdminDeviceWarmUp OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 16 }
scmHrAdminDeviceCoolDown OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 17 }
scmHrAdminDeviceEnergySave OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 18 }
scmHrAdminDeviceWakeUp OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 19 }
scmHrAdminDevicePowerToReady OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 20 }
scmHrAdminDevicePowerToStandby OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 21 }
scmHrAdminDevicePowerToSleep OBJECT IDENTIFIER
::= { scmHrAdminDeviceOperationTypes 22 }
--
-- The Host Resources Extensions (HRX) TC
--
-- Textual Conventions
ScmHrDevCalendarDayOfWeek ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The day of week when the command specified in a conceptual
row in the 'scmHrDevCalendarTable' SHALL be invoked."
SYNTAX INTEGER {
monday(1),
tuesday(2),
wednesday(3),
thursday(4),
friday(5),
saturday(6),
sunday(7),
everyDay(8), -- monday through sunday
businessOpenDay(9), -- site specific
businessClosedDay(10), -- site specific
businessHoliday(11) -- site specific
}
ScmHrDevCalendarTimeOfDay ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The time of day when the command specified in a conceptual
row in the 'scmHrDevCalendarTable' SHALL be invoked, specified
as hours (0..23) multiplied by 100, added to minutes (0..59),
added to a constant bias of 10000 (avoids an index value of zero
in 'scmHrDevCalendarTimeOfDay')."
SYNTAX INTEGER (10000..12359)
ScmHrDevDetailType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of the device detail information specified
in this conceptual row in the 'scmHrDevDetailTable'.
Usage: Conforming management stations and management agents
SHALL implement specified semantics for device detail types."
-- - Device other/unknown details
-- * 'other'
-- * 'unknown'
--
-- - Device general info
-- * 'deviceName'
-- - device administrative name in directory (primary name)
-- - (same usage as 'scmCOSpecialName' in SCMI Comms Config TC)
-- - type - (ScmFixedLocaleDisplayString)
-- - subtype - '...ValueOID' (directory in SCMI Comms Config TC)
-- - (eg, 'scmCOInternetDNS')
-- - data - '...ValueString'
-- - (eg, 'showstopper.sample.com')
-- - see - 'scmCOSpecialName' in SCMI Comms Config TC
-- - see - 'deviceAlias' in SCMI HRX TC
-- - see - 'scmHrDevInfoName' in SCMI HRX MIB
-- - see - DPA-1 9.4.1 'Printer-name'
-- - see - DPA-1 9.5.1 'Server-name'
-- * 'deviceAlias'
-- - device administrative alias in directory (alternate name)
-- - (same usage as 'scmCOSpecialName' in SCMI Comms Config TC)
-- - type - (ScmFixedLocaleDisplayString)
-- - subtype - '...ValueOID' (directory in SCMI Comms Config TC)
-- - (eg, 'scmCOInternetDNS')
-- - data - '...ValueString'
-- - (eg, 'LaserRat')
-- - see - 'scmCOSpecialName' in SCMI Comms Config TC
-- - see - 'deviceName' in SCMI HRX TC
-- - see - DPA-1 9.4.2 'Printer-name-aliases'
-- - see - DPA-1 9.5.2 'Server-name-aliases'
-- * 'deviceType'
-- - device type
-- - type - (OBJECT IDENTIFIER)
-- - data - '...ValueOID'
-- - (eg, 'hrDevicePrinter')
-- - see - 'hrDeviceType' in IETF HR MIB
-- - see - 'Usage of hrDeviceType and hrDeviceDescr' section of
-- - 'SCMI Supplement to IETF Host Resources MIB' in SCMI HRX TC
-- * 'deviceDescription'
-- - device description
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- - (eg, 'Samsung DocuCentre 230 ST v1.0 - Printer')
-- - see - 'hrDeviceDescr' in IETF HR MIB
-- - see - 'Usage of hrDeviceType and hrDeviceDescr' section of
-- - 'SCMI Supplement to IETF Host Resources MIB' in SCMI HRX TC
-- * 'deviceID'
-- - device (product) ID
-- - type - (ProductID)
-- - data - '...ValueOID'
-- - (eg, 'scmPidDC230STV1')
-- - see - 'ProductID' and 'hrDeviceID' in IETF HR MIB
-- - see - 'IETF HR DeviceTable' section of
-- - 'SCMI Supplement to IETF Host Resources MIB' in SCMI HRX TC
-- * 'deviceTree'
-- - device tree prefix to name/alias in directory
-- - type - (ScmFixedLocaleDisplayString)
-- - subtype - '...ValueOID' (directory in SCMI Comms Config TC)
-- - (eg, 'scmCONetwareNDS')
-- - data - '...ValueString'
-- - (MAY also appear in 'deviceName')
-- * 'deviceContext'
-- - device context prefix to name/alias in directory
-- - type - (ScmFixedLocaleDisplayString)
-- - subtype - '...ValueOID' (directory in SCMI Comms Config TC)
-- - (eg, 'scmCONetwareNDS')
-- - data - '...ValueString'
-- - (MAY also appear in 'deviceName')
-- * 'deviceManufacturer'
-- - device manufacturer (or OEM) name
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- - compare - 'hrDeviceDescr' in IETF HR MIB
-- * 'deviceModel'
-- - device model (alphanumeric)
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- - see - DPA-1 9.4.4 'Printer-model'
-- - compare - 'hrDeviceDescr' in IETF HR MIB
-- * 'deviceSerialNumber'
-- - device serial number
-- - see - 'scmHrDevInfoSerialNumber' in SCMI HRX MIB
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- * 'deviceVendor'
-- - device vendor (to customer)
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- - compare - 'hrDeviceDescr' in IETF HR MIB
-- * 'deviceVersion'
-- - device version (alphanumeric)
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- - compare - 'hrDeviceDescr' in IETF HR MIB
--
-- - Device service info
-- * 'deviceServiceByCustomer'
-- - device serviced by customer (rather than vendor)
-- - type - (TruthValue)
-- - data - '...ValueInteger'
-- - 'true' = serviced by customer
-- - 'false' = serviced by vendor
-- * 'deviceReplaceByCustomer'
-- - device replaced by customer (rather than vendor)
-- - type - (TruthValue)
-- - data - '...ValueInteger'
-- - 'true' = replaced by customer
-- - 'false' = replaced by vendor
-- * 'deviceServicePlanName'
-- - device service plan name
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- - (eg, 'Goldspot77')
-- * deviceServicePlanPassword'
-- - device service plan password (protected/encrypted)
-- - type - (ScmFixedLocaleDisplayString)
-- - data - '...ValueString'
-- - (eg, 'EA123456')
-- * 'deviceReplaceByWarranty'
-- - device replaced by warranty (rather than at end-of-life)
-- - type - (TruthValue)
-- - data - '...ValueInteger'
-- - 'true' = replaced by warranty (by some date or usage limit)
-- - 'false' = replaced at end-of-life
--
-- - Device lifetime usage and limits
-- - (several usage counters MAY be defined for a single device)
-- - (several usage limits MAY be defined for a single counter)
-- - (usage counter and usage limit groups are defined as sharing
-- - the same value of 'scmHrDevDetailIndex')
-- * 'deviceLifetimeUsage'
-- - device lifetime usage counter (MAY be multi-valued)
-- - (SHALL NOT be remotely reset, unlike 'deviceAccountingUsage')
-- - type - (Counter32)
-- - subtype - '...ValueString' (ScmGenMessageMapStringLabel)
-- - and (optional) trailing description after whitespace
-- - data - '...ValueInteger'
-- - (eg, monochrome and color page counters)
-- - note - SHOULD be subtyped by well-formed Samsung message
-- - string label of the 'ScmGenMessageMapStringLabel' syntax
-- - defined in the SCMI General TC (06gentc)
-- - for example:
-- - 'xs-iso-101715-mediaSize-na-letter'
-- - - counts any DPA media size (w/out type/color)
-- - 'xs-ietf-rfc2911-media-iso-a4-...'
-- - - counts any IETF IPP 'media' (w/ size, type, or color)
-- - 'xs-scmi-40jobtc-ScmJMImpsCountType-blackAndWhiteCount'
-- - - counts monochrome impressions
-- - 'xs-scmi-40jobtc-ScmJMImpsCountType-highlightColorCount'
-- - - counts highlight color impressions
-- * 'deviceReorderLifetimeLimit'
-- - device reorder at limit (MAY be multi-valued)
-- - type - (Cardinal32)
-- - subtype - see parallel 'deviceLifetimeUsage'
-- - data - '...ValueInteger'
-- - positive integer = limit in 'scmHrDevDetailUnit' units
-- - zero = no limit specified
-- * 'deviceWarningLifetimeLimit'
-- - warn device user at usage limit (MAY be multi-valued)
-- - type - (Cardinal32)
-- - subtype - see parallel 'deviceLifetimeUsage'
-- - data - '...ValueInteger'
-- - positive integer = limit in 'scmHrDevDetailUnit' units
-- - zero = no limit specified
-- * 'deviceReplaceLifetimeLimit'
-- - replace device at usage limit (MAY be multi-valued)
-- - type - (Cardinal32)
-- - subtype - see parallel 'deviceLifetimeUsage'
-- - data - '...ValueInteger'
-- - positive integer = limit in 'scmHrDevDetailUnit' units
-- - zero = no limit specified
-- * 'deviceMaximumLifetimeLimit'
-- - stop device at usage limit (MAY be multi-valued)
-- - type - (Cardinal32)
-- - subtype - see parallel 'deviceLifetimeUsage'
-- - data - '...ValueInteger'
-- - positive integer = limit in 'scmHrDevDetailUnit' units