printerxpl-forge 6.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. nse/README.md +204 -0
  2. nse/__init__.py +6 -0
  3. nse/install_nse.py +412 -0
  4. nse/lib/printerxpl.lua +238 -0
  5. nse/scripts/cups-info.nse +74 -0
  6. nse/scripts/cups-queue-info.nse +43 -0
  7. nse/scripts/hp-printers-cve-2022-1026.nse +121 -0
  8. nse/scripts/http-device-mac.nse +107 -0
  9. nse/scripts/http-hp-ilo-info.nse +121 -0
  10. nse/scripts/http-info-xerox-enum.nse +101 -0
  11. nse/scripts/http-vuln-cve2022-1026.nse +158 -0
  12. nse/scripts/lexmark-config.nse +89 -0
  13. nse/scripts/pjl-ready-message.nse +106 -0
  14. nse/scripts/printer-banner.nse +217 -0
  15. nse/scripts/printer-cups-rce.nse +189 -0
  16. nse/scripts/printer-cve-detect.nse +279 -0
  17. nse/scripts/printer-discover.nse +205 -0
  18. nse/scripts/printer-firmware-exposed.nse +219 -0
  19. nse/scripts/printer-hp-pjl.nse +192 -0
  20. nse/scripts/printer-http-ews.nse +293 -0
  21. nse/scripts/printer-ipp-info.nse +235 -0
  22. nse/scripts/printer-lexmark-ipp.nse +203 -0
  23. nse/scripts/printer-passback.nse +204 -0
  24. nse/scripts/printer-pjl-info.nse +146 -0
  25. nse/scripts/printer-printnightmare.nse +211 -0
  26. nse/scripts/printer-snmp-info.nse +176 -0
  27. nse/scripts/printer-vuln-check.nse +256 -0
  28. nse/scripts/snmp-device-mac.nse +93 -0
  29. nse/scripts/snmp-info.nse +146 -0
  30. nse/scripts/snmp-sysdescr.nse +70 -0
  31. printerxpl_forge-6.2.0.dist-info/METADATA +919 -0
  32. printerxpl_forge-6.2.0.dist-info/RECORD +97 -0
  33. printerxpl_forge-6.2.0.dist-info/WHEEL +5 -0
  34. printerxpl_forge-6.2.0.dist-info/entry_points.txt +4 -0
  35. printerxpl_forge-6.2.0.dist-info/licenses/LICENSE +21 -0
  36. printerxpl_forge-6.2.0.dist-info/top_level.txt +4 -0
  37. src/assets/fonts/gunplay.pfa +1671 -0
  38. src/assets/fonts/kshandwrt.pfa +315 -0
  39. src/assets/fonts/laksoner.pfa +2402 -0
  40. src/assets/fonts/paintcans.pfa +9699 -0
  41. src/assets/fonts/stencilod.pfa +4076 -0
  42. src/assets/fonts/takecover.pfa +26138 -0
  43. src/assets/fonts/topsecret.pfa +6652 -0
  44. src/assets/fonts/whoa.pfa +773 -0
  45. src/assets/mibs/HOST-RESOURCES-MIB +1540 -0
  46. src/assets/mibs/Printer-MIB +4389 -0
  47. src/assets/mibs/README.md +9 -0
  48. src/assets/mibs/SNMPv2-MIB +854 -0
  49. src/assets/overlays/hacker.eps +596 -0
  50. src/assets/overlays/smiley.eps +214 -0
  51. src/assets/overlays/smiley2.eps +240 -0
  52. src/core/attack_orchestrator.py +1025 -0
  53. src/core/capabilities.py +323 -0
  54. src/core/destructive_audit.py +430 -0
  55. src/core/discovery.py +488 -0
  56. src/core/osdetect.py +74 -0
  57. src/core/poly_runner.py +579 -0
  58. src/core/printer.py +1426 -0
  59. src/main.py +2134 -0
  60. src/modules/install_printer.py +318 -0
  61. src/modules/login_bruteforce.py +852 -0
  62. src/modules/pcl.py +506 -0
  63. src/modules/pjl.py +3575 -0
  64. src/modules/print_job.py +1290 -0
  65. src/modules/ps.py +1102 -0
  66. src/payloads/__init__.py +98 -0
  67. src/payloads/assets/overlays/notice.eps +9 -0
  68. src/protocols/__init__.py +19 -0
  69. src/protocols/firmware.py +738 -0
  70. src/protocols/ipp.py +216 -0
  71. src/protocols/ipp_attacks.py +609 -0
  72. src/protocols/lpd.py +141 -0
  73. src/protocols/network_map.py +1004 -0
  74. src/protocols/raw.py +173 -0
  75. src/protocols/smb.py +359 -0
  76. src/protocols/ssrf_pivot.py +427 -0
  77. src/protocols/storage.py +587 -0
  78. src/ui/__init__.py +6 -0
  79. src/ui/interactive.py +742 -0
  80. src/ui/spinner.py +112 -0
  81. src/ui/tables.py +132 -0
  82. src/utils/banner_grabber.py +852 -0
  83. src/utils/codebook.py +456 -0
  84. src/utils/config.py +522 -0
  85. src/utils/cve_loader.py +158 -0
  86. src/utils/default_creds.py +134 -0
  87. src/utils/discovery_online.py +1327 -0
  88. src/utils/exploit_manager.py +805 -0
  89. src/utils/fuzzer.py +220 -0
  90. src/utils/helper.py +732 -0
  91. src/utils/local_printers.py +307 -0
  92. src/utils/ml_engine.py +491 -0
  93. src/utils/operators.py +474 -0
  94. src/utils/ports.py +234 -0
  95. src/utils/vuln_scanner.py +823 -0
  96. src/utils/wordlist_loader.py +412 -0
  97. src/version.py +36 -0
@@ -0,0 +1,4389 @@
1
+ Printer-MIB DEFINITIONS ::= BEGIN
2
+
3
+ IMPORTS
4
+ MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32, TimeTicks,
5
+ NOTIFICATION-TYPE, OBJECT-IDENTITY,
6
+ mib-2 FROM SNMPv2-SMI -- [RFC2578]
7
+ TEXTUAL-CONVENTION FROM SNMPv2-TC -- [RFC2579]
8
+ MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
9
+ FROM SNMPv2-CONF -- [RFC2580]
10
+ hrDeviceIndex, hrStorageIndex FROM HOST-RESOURCES-MIB -- [RFC2790]
11
+ InterfaceIndexOrZero FROM IF-MIB -- [RFC2863]
12
+ PrtCoverStatusTC, PrtGeneralResetTC, PrtChannelTypeTC,
13
+ PrtInterpreterLangFamilyTC, PrtInputTypeTC, PrtOutputTypeTC,
14
+ PrtMarkerMarkTechTC, PrtMarkerSuppliesTypeTC, PrtConsoleColorTC,
15
+ PrtConsoleDisableTC, PrtMediaPathTypeTC, PrtAlertGroupTC,
16
+ PrtAlertTrainingLevelTC, PrtAlertCodeTC
17
+ FROM IANA-PRINTER-MIB
18
+ IANACharset FROM IANA-CHARSET-MIB;
19
+
20
+ printmib MODULE-IDENTITY
21
+ LAST-UPDATED "200406020000Z"
22
+ ORGANIZATION "PWG IEEE/ISTO Printer Working Group"
23
+
24
+ CONTACT-INFO
25
+ "Harry Lewis
26
+ IBM
27
+ Phone (303) 924-5337
28
+ Email: harryl@us.ibm.com
29
+ http://www.pwg.org/index.html
30
+
31
+ Send comments to the printmib WG using the Printer MIB
32
+ Project (PMP) Mailing List: pmp@pwg.org
33
+
34
+ For further information, access the PWG web page under 'Printer
35
+ MIB': http://www.pwg.org/
36
+
37
+ Implementers of this specification are encouraged to join the
38
+ pmp mailing list in order to participate in discussions on any
39
+ clarifications needed and registration proposals being reviewed
40
+ in order to achieve consensus."
41
+ DESCRIPTION
42
+ "The MIB module for management of printers.
43
+ Copyright (C) The Internet Society (2004). This
44
+ version of this MIB module was published
45
+ in RFC 3805. For full legal notices see the RFC itself."
46
+ REVISION "200406020000Z"
47
+ DESCRIPTION
48
+ "Printer MIB v2.
49
+ Moved all enum groups to be maintained by IANA into new TCs
50
+ within the ianaPrinterMIB, which is contained in this
51
+ document.
52
+ New TCs created from enums defined within RFC 1759 Objects:
53
+ PrtPrintOrientationTC, PrtLocalizedDescriptionStringTC,
54
+ PrtConsoleDescriptionStringTC, PrtChannelStateTC,
55
+ PrtOutputStackingOrderTC, PrtOutputPageDeliveryOrientationTC,
56
+ PrtMarkerCounterUnitTC, PrtMarkerSuppliesSupplyUnitTC,
57
+ PrtMarkerSuppliesClassTC, PrtMarkerAddressabilityUnitTC,
58
+ PrtMarkerColorantRoleTC, PrtMediaPathMaxSpeedPrintUnitTC,
59
+ PrtInterpreterTwoWayTC, and PrtAlertSeverityLevelTC.
60
+ The following four TCs have been deprecated:
61
+ MediaUnit (replaced by PrtMediaUnitTC),
62
+ CapacityUnit (replaced by PrtCapacityUnitTC),
63
+ SubUnitStatus (replaced by PrtSubUnitStatusTC),
64
+ CodedCharSet (replaced by IANACharset in IANA Charset MIB)
65
+ Five new OBJECT-GROUPs: prtAuxilliarySheetGroup,
66
+ prtInputSwitchingGroup, prtGeneralV2Group,
67
+ prtAlertTableV2Group, prtChannelV2Group.
68
+ Nine new objects added to those groups:
69
+ prtAuxiliarySheetStartupPage, prtAuxiliarySheetBannerPage,
70
+ prtGeneralPrinterName, prtGeneralSerialNumber,
71
+ prtAlertCriticalEvents, prtAlertAllEvents,
72
+ prtInputMediaLoadTimeout, prtInputNextIndex,
73
+ prtChannelInformation.
74
+ SYNTAX range changed from (0..65535) to (1..65535) for the
75
+ index objects prtStorageRefSeqNumber, prtDeviceRefSeqNumber,
76
+ and prtConsoleLightIndex.
77
+ SYNTAX range changed from (0..65535) to (0..2147483647) for the
78
+ objects prtStorageRefIndex and prtDeviceRefIndex to agree
79
+ with the Host Resources MIB.
80
+ Defined a range for the objects with a SYNTAX of Integer32:
81
+ prtOutputDefaultIndex, prtInputMediaDimFeedDirDeclared,
82
+ prtInputMediaDimXFeedDirDeclared, prtInputMaxCapacity,
83
+ prtInputCurrentLevel, prtInputMediaDimFeedDirChosen,
84
+ prtInputMediaDimXFeedDirChosen, prtInputMediaWeight,
85
+ prtInputMediaFormParts, prtOutputIndex,
86
+ prtOutputMaxCapacity, prtOutputRemainingCapacity,
87
+ prtOutputMaxDimFeedDir, prtOutputMaxDimXFeedDir,
88
+ prtOutputMinDimFeedDir, prtOutputMinDimXFeedDir,
89
+ prtMarkerAddressibilityFeedDir,
90
+ prtMarkerAddressibilityXFeedDir, prtMarkerNorthMargin,
91
+ prtMarkerSouthMargin, prtMarkerWestMargin,
92
+ prtMarkerEastMargin, prtMarkerSuppliesMaxCapacity,
93
+ prtMarkerSuppliesLevel, prtMarkerColorantTonality,
94
+ prtMediaPathMaxSpeed, prtMediaPathMaxMediaFeedDir,
95
+ prtMediaPathMaxMediaXFeedDir, prtMediaPathMinMediaFeedDir,
96
+ prtMediaPathMinMediaXFeedDir, prtChannelIndex,
97
+ prtChannelCurrentJobCntlLangIndex, prtInterpreterIndex,
98
+ prtChannelDefaultPageDescLangIndex, prtConsoleOnTime,
99
+ prtInterpreterFeedAddressibility, prtConsoleOffTime,
100
+ prtInterpreterXFeedAddressibility, prtAlertIndex,
101
+ prtAlertGroupIndex, prtAlertLocation.
102
+ Changed SYNTAX from Integer32 to InterfaceIndexOrZero for
103
+ prtChannelIfIndex.
104
+ Changed MAX-ACCESS of prtAlertIndex from not-accessible to
105
+ Read-only and added a compliance statement to allow a
106
+ MIN-ACCESS of accessible-for-notify.
107
+ One new NOTIFICATION-GROUP: prtAlertTrapGroup which contains
108
+ printerV2Alert.
109
+ In MODULE-COMPLIANCE prtMIBCompliance, new OBJECT-GROUPs and
110
+ the NOTIFICATION_GROUP, all in GROUP (not MANDATORY-GROUP)
111
+ clauses. The nine new objects are optional, i.e., this
112
+ document is backward compatible with RFC 1759."
113
+ REVISION "199411250000Z"
114
+ DESCRIPTION
115
+ "The original version of this MIB, published as RFC1759."
116
+ ::= { mib-2 43 }
117
+
118
+ -- TEXTUAL-CONVENTIONs for this MIB module
119
+ --
120
+ -- Generic unspecific TEXTUAL-CONVENTIONs
121
+ --
122
+
123
+ PrtMediaUnitTC ::= TEXTUAL-CONVENTION
124
+ -- Replaces MediaUnit in RFC 1759.
125
+ STATUS current
126
+ DESCRIPTION
127
+ "Units of measure for media dimensions."
128
+ SYNTAX INTEGER {
129
+ tenThousandthsOfInches(3), -- .0001
130
+ micrometers(4)
131
+ }
132
+
133
+ MediaUnit ::= TEXTUAL-CONVENTION
134
+ -- Replaced by PrtMediaUnitTC.
135
+ STATUS deprecated
136
+ DESCRIPTION
137
+ "Units of measure for media dimensions."
138
+ SYNTAX INTEGER {
139
+ tenThousandthsOfInches(3), -- .0001
140
+ micrometers(4)
141
+ }
142
+
143
+ PrtCapacityUnitTC ::= TEXTUAL-CONVENTION
144
+ -- Replaces CapacityUnit in RFC 1759.
145
+ STATUS current
146
+ DESCRIPTION
147
+ "Units of measure for media capacity."
148
+ SYNTAX INTEGER {
149
+ other(1), -- New, not in RFC 1759
150
+ unknown(2), -- New, not in RFC 1759
151
+ tenThousandthsOfInches(3), -- .0001
152
+ micrometers(4),
153
+ sheets(8),
154
+ feet(16),
155
+ meters(17),
156
+ -- Values for Finisher MIB
157
+ items(18), -- New, not in RFC 1759
158
+ percent(19) -- New, not in RFC 1759
159
+ }
160
+
161
+ CapacityUnit ::= TEXTUAL-CONVENTION
162
+ -- Replaced by PrtCapacityUnitTC.
163
+ STATUS deprecated
164
+ DESCRIPTION
165
+ "Units of measure for media capacity."
166
+ SYNTAX INTEGER {
167
+ tenThousandthsOfInches(3), -- .0001
168
+ micrometers(4),
169
+ sheets(8),
170
+ feet(16),
171
+ meters(17)
172
+ }
173
+
174
+ PrtPrintOrientationTC ::= TEXTUAL-CONVENTION
175
+ -- This TC was extracted from prtInterpreterDefaultOrientation in
176
+ -- RFC 1759.
177
+ STATUS current
178
+ DESCRIPTION
179
+ "A generic representation for printing orientation on a
180
+ 'page'."
181
+ SYNTAX INTEGER {
182
+ other(1),
183
+ portrait(3),
184
+ landscape(4)
185
+ }
186
+
187
+ PrtSubUnitStatusTC ::= TEXTUAL-CONVENTION
188
+ -- Replaces SubUnitStatus in RFC 1759.
189
+ STATUS current
190
+ DESCRIPTION
191
+ "Status of a printer sub-unit.
192
+
193
+ The SubUnitStatus is an integer that is the sum of 5 distinct
194
+ values, Availability, Non-Critical, Critical, On-line, and
195
+ Transitioning. These values are:
196
+
197
+ Availability Value
198
+
199
+ Available and Idle 0 0000'b
200
+ Available and Standby 2 0010'b
201
+ Available and Active 4 0100'b
202
+ Available and Busy 6 0110'b
203
+ Unavailable and OnRequest 1 0001'b
204
+ Unavailable because Broken 3 0011'b
205
+ Unknown 5 0101'b
206
+
207
+ Non-Critical
208
+ No Non-Critical Alerts 0 0000'b
209
+ Non-Critical Alerts 8 1000'b
210
+
211
+ Critical
212
+
213
+ No Critical Alerts 0 0000'b
214
+
215
+ Critical Alerts 16 1 0000'b
216
+
217
+ On-Line
218
+
219
+ State is On-Line 0 0000'b
220
+ State is Off-Line 32 10 0000'b
221
+
222
+ Transitioning
223
+
224
+ At intended state 0 0000'b
225
+ Transitioning to intended state 64 100 0000'b"
226
+ SYNTAX INTEGER (0..126)
227
+
228
+ SubUnitStatus ::= TEXTUAL-CONVENTION
229
+ -- Replaced by PrtSubUnitStatusTC.
230
+ STATUS deprecated
231
+ DESCRIPTION
232
+ "Status of a printer sub-unit.
233
+
234
+ The SubUnitStatus is an integer that is the sum of 5 distinct
235
+ values, Availability, Non-Critical, Critical, On-line, and
236
+ Transitioning. These values are:
237
+
238
+ Availability Value
239
+ Available and Idle 0 0000'b
240
+ Available and Standby 2 0010'b
241
+ Available and Active 4 0100'b
242
+ Available and Busy 6 0110'b
243
+ Unavailable and OnRequest 1 0001'b
244
+ Unavailable because Broken 3 0011'b
245
+ Unknown 5 0101'b
246
+
247
+ Non-Critical
248
+ No Non-Critical Alerts 0 0000'b
249
+ Non-Critical Alerts 8 1000'b
250
+
251
+ Critical
252
+
253
+ No Critical Alerts 0 0000'b
254
+ Critical Alerts 16 1 0000'b
255
+
256
+ On-Line
257
+
258
+ State is On-Line 0 0000'b
259
+ State is Off-Line 32 10 0000'b
260
+
261
+ Transitioning
262
+
263
+ At intended state 0 0000'b
264
+ Transitioning to intended state 64 100 0000'b"
265
+ SYNTAX INTEGER (0..126)
266
+
267
+ PresentOnOff ::= TEXTUAL-CONVENTION
268
+ STATUS current
269
+ DESCRIPTION
270
+ "Presence and configuration of a device or feature."
271
+ SYNTAX INTEGER {
272
+ other(1),
273
+ on(3),
274
+ off(4),
275
+ notPresent(5)
276
+ }
277
+
278
+ PrtLocalizedDescriptionStringTC ::= TEXTUAL-CONVENTION
279
+ -- This TC did not appear in RFC 1759.
280
+ STATUS current
281
+ DESCRIPTION
282
+ "An object MUST use this TEXTUAL-CONVENTION when its
283
+ 'charset' is controlled by the value of
284
+ prtGeneralCurrentLocalization."
285
+ SYNTAX OCTET STRING (SIZE(0..255))
286
+
287
+ PrtConsoleDescriptionStringTC ::= TEXTUAL-CONVENTION
288
+ -- This TC did not appear in RFC 1759.
289
+ STATUS current
290
+ DESCRIPTION
291
+ "An object MUST use this TEXTUAL-CONVENTION when its
292
+ 'charset' is controlled by the value of
293
+ prtConsoleLocalization."
294
+ SYNTAX OCTET STRING (SIZE(0..255))
295
+
296
+ CodedCharSet ::= TEXTUAL-CONVENTION
297
+
298
+ -- Replaced by IANACharset TEXTUAL-CONVENTION in IANA Charset MIB.
299
+ STATUS deprecated
300
+ DESCRIPTION
301
+ "The original description clause from RFC 1759 [RFC1759] was
302
+ technically inaccurate and therefore has been deleted."
303
+ SYNTAX INTEGER {
304
+ other(1) -- used if the designated coded
305
+ -- character set is not currently in
306
+ -- the enumeration
307
+ }
308
+
309
+ --
310
+
311
+ -- Channel Group TEXTUAL-CONVENTIONs
312
+ --
313
+
314
+ PrtChannelStateTC ::= TEXTUAL-CONVENTION
315
+ -- This TC was extracted from prtChannelState in RFC 1759.
316
+ STATUS current
317
+ DESCRIPTION
318
+ "The state of this print job delivery channel. The value
319
+ determines whether print data is allowed through this channel."
320
+ SYNTAX INTEGER {
321
+ other(1),
322
+ printDataAccepted(3),
323
+ noDataAccepted(4)
324
+ }
325
+
326
+ --
327
+ -- Input/Output Group TEXTUAL-CONVENTIONs
328
+ --
329
+
330
+ PrtOutputStackingOrderTC ::= TEXTUAL-CONVENTION
331
+ -- This TC was extracted from prtOutputStackingOrder in RFC 1759.
332
+ STATUS current
333
+ DESCRIPTION
334
+ "The current state of the stacking order for the associated
335
+ output sub-unit. 'firstToLast' means that as pages are output,
336
+ the front of the next page is placed against the back of the
337
+ previous page. 'lastToFirst' means that as pages are output,
338
+ the back of the next page is placed against the front of the
339
+ previous page."
340
+ SYNTAX INTEGER {
341
+ unknown(2),
342
+ firstToLast(3),
343
+ lastToFirst(4)
344
+ }
345
+
346
+ PrtOutputPageDeliveryOrientationTC ::= TEXTUAL-CONVENTION
347
+ -- This TC was extracted from prtOutputPageDeliveryOrientation
348
+ -- in RFC 1759.
349
+ STATUS current
350
+ DESCRIPTION
351
+ "The reading surface that will be 'up' when pages are delivered
352
+ to the associated output sub-unit. Values are Face-Up and Face
353
+ Down (Note: interpretation of these values is, in general,
354
+ context-dependent based on locale; presentation of these values
355
+ to an end-user should be normalized to the expectations of the
356
+ user."
357
+ SYNTAX INTEGER {
358
+ faceUp(3),
359
+ faceDown(4)
360
+ }
361
+
362
+ --
363
+ -- Marker Group TEXTUAL-CONVENTIONs
364
+ --
365
+
366
+ PrtMarkerCounterUnitTC ::= TEXTUAL-CONVENTION
367
+ -- This TC was extracted from prtMarkerCounterUnit in RFC 1759.
368
+ STATUS current
369
+ DESCRIPTION
370
+ "The unit that will be used by the printer when reporting
371
+ counter values for this marking sub-unit. The
372
+ time units of measure are provided for a device like a
373
+ strip recorder that does not or cannot track the physical
374
+ dimensions of the media and does not use characters,
375
+ lines or sheets."
376
+ SYNTAX INTEGER {
377
+ tenThousandthsOfInches(3), -- .0001
378
+ micrometers(4),
379
+ characters(5),
380
+ lines(6),
381
+ impressions(7),
382
+ sheets(8),
383
+ dotRow(9),
384
+ hours(11),
385
+ feet(16),
386
+ meters(17)
387
+ }
388
+
389
+ PrtMarkerSuppliesSupplyUnitTC ::= TEXTUAL-CONVENTION
390
+ -- This TC was extracted from prtMarkerSuppliesSupplyUnit
391
+ -- in RFC 1759.
392
+ STATUS current
393
+ DESCRIPTION
394
+ "Unit of this marker supply container/receptacle."
395
+ SYNTAX INTEGER {
396
+ other(1), -- New, not in RFC 1759
397
+ unknown(2), -- New, not in RFC 1759
398
+ tenThousandthsOfInches(3), -- .0001
399
+ micrometers(4),
400
+ impressions(7), -- New, not in RFC 1759
401
+ sheets(8), -- New, not in RFC 1759
402
+ hours(11), -- New, not in RFC 1759
403
+ thousandthsOfOunces(12),
404
+ tenthsOfGrams(13),
405
+ hundrethsOfFluidOunces(14),
406
+ tenthsOfMilliliters(15),
407
+ feet(16), -- New, not in RFC 1759
408
+ meters(17), -- New, not in RFC 1759
409
+ -- Values for Finisher MIB
410
+ items(18), -- e.g., #staples. New, not in RFC 1759
411
+ percent(19) -- New, not in RFC 1759
412
+ }
413
+
414
+ PrtMarkerSuppliesClassTC ::= TEXTUAL-CONVENTION
415
+ -- This TC was extracted from prtMarkerSuppliesClass in RFC 1759.
416
+ STATUS current
417
+ DESCRIPTION
418
+ "Indicates whether this supply entity represents a supply
419
+ that is consumed or a receptacle that is filled."
420
+ SYNTAX INTEGER {
421
+ other(1),
422
+ supplyThatIsConsumed(3),
423
+ receptacleThatIsFilled(4)
424
+ }
425
+
426
+ PrtMarkerColorantRoleTC ::= TEXTUAL-CONVENTION
427
+ -- This TC was extracted from prtMarkerColorantRole in RFC 1759.
428
+ STATUS current
429
+ DESCRIPTION
430
+ "The role played by this colorant."
431
+ SYNTAX INTEGER { -- Colorant Role
432
+ other(1),
433
+ process(3),
434
+ spot(4)
435
+ }
436
+
437
+ PrtMarkerAddressabilityUnitTC ::= TEXTUAL-CONVENTION
438
+ -- This TC was extracted from prtMarkerAddressabilityUnit
439
+ -- in RFC 1759.
440
+ STATUS current
441
+ DESCRIPTION
442
+ "The unit of measure of distances, as applied to the marker's
443
+ resolution."
444
+ SYNTAX INTEGER {
445
+ tenThousandthsOfInches(3), -- .0001
446
+ micrometers(4)
447
+ }
448
+
449
+ --
450
+ -- Media Path TEXTUAL-CONVENTIONs
451
+ --
452
+
453
+ PrtMediaPathMaxSpeedPrintUnitTC ::= TEXTUAL-CONVENTION
454
+
455
+ -- This TC was extracted from prtMediaPathMaxSpeedPrintUnit
456
+ -- in RFC 1759.
457
+ STATUS current
458
+ DESCRIPTION
459
+ "The unit of measure used in specifying the speed of all
460
+ media paths in the printer."
461
+ SYNTAX INTEGER {
462
+ tenThousandthsOfInchesPerHour(3),-- .0001/hour
463
+ micrometersPerHour(4),
464
+ charactersPerHour(5),
465
+ linesPerHour(6),
466
+ impressionsPerHour(7),
467
+ sheetsPerHour(8),
468
+ dotRowPerHour(9),
469
+ feetPerHour(16),
470
+ metersPerHour(17)
471
+ }
472
+
473
+ --
474
+ -- Interpreter Group TEXTUAL-CONVENTIONs
475
+ --
476
+
477
+ PrtInterpreterTwoWayTC ::= TEXTUAL-CONVENTION
478
+ -- This TC was extracted from prtInterpreterTwoWay in RFC 1759.
479
+ STATUS current
480
+ DESCRIPTION
481
+ "Indicates whether or not this interpreter returns information
482
+ back to the host."
483
+ SYNTAX INTEGER {
484
+ yes(3),
485
+ no(4)
486
+ }
487
+
488
+ --
489
+ -- Alert Group TEXTUAL-CONVENTIONs
490
+ --
491
+
492
+ PrtAlertSeverityLevelTC ::= TEXTUAL-CONVENTION
493
+ -- This TC was extracted from prtAlertSeverityLevel in RFC 1759.
494
+ STATUS current
495
+ DESCRIPTION
496
+ "The level of severity of this alert table entry. The printer
497
+ determines the severity level assigned to each entry in the
498
+ table. A critical alert is binary by nature and definition. A
499
+ warning is defined to be a non-critical alert. The original and
500
+ most common warning is unary. The binary warning was added later
501
+ and given a more distinguished name."
502
+ SYNTAX INTEGER {
503
+
504
+ other(1),
505
+ critical(3),
506
+ warning(4),
507
+ warningBinaryChangeEvent(5) -- New, not in RFC 1759
508
+ }
509
+
510
+ -- The General Printer Group
511
+ --
512
+ -- The general printer sub-unit is responsible for the overall
513
+ -- control and status of the printer. There is exactly one
514
+ -- general printer sub-unit in a printer.
515
+
516
+ prtGeneral OBJECT IDENTIFIER ::= { printmib 5 }
517
+
518
+ prtGeneralTable OBJECT-TYPE
519
+ SYNTAX SEQUENCE OF PrtGeneralEntry
520
+ MAX-ACCESS not-accessible
521
+ STATUS current
522
+ DESCRIPTION
523
+ "A table of general information per printer.
524
+ Objects in this table are defined in various
525
+ places in the MIB, nearby the groups to
526
+ which they apply. They are all defined
527
+ here to minimize the number of tables that would
528
+ otherwise need to exist."
529
+ ::= { prtGeneral 1 }
530
+
531
+ prtGeneralEntry OBJECT-TYPE
532
+ SYNTAX PrtGeneralEntry
533
+ MAX-ACCESS not-accessible
534
+ STATUS current
535
+ DESCRIPTION
536
+ "An entry exists in this table for each device entry in the
537
+ host resources MIB device table with a device type of
538
+ 'printer'.
539
+
540
+ NOTE: The above description has been modified from RFC 1759
541
+ for clarification."
542
+ INDEX { hrDeviceIndex }
543
+ ::= { prtGeneralTable 1 }
544
+
545
+ PrtGeneralEntry ::= SEQUENCE {
546
+ -- Note that not all of the objects in this sequence are in
547
+ -- the general printer group. The group to which an
548
+ -- object belongs is tagged with a label "General", "Input"
549
+ -- "Output", etc. after each entry in the following sequence.
550
+ --
551
+ prtGeneralConfigChanges Counter32, -- General
552
+
553
+ prtGeneralCurrentLocalization Integer32, -- General
554
+ prtGeneralReset PrtGeneralResetTC,
555
+ -- General
556
+ prtGeneralCurrentOperator OCTET STRING,
557
+ -- Responsible Party
558
+ prtGeneralServicePerson OCTET STRING,
559
+ -- Responsible Party
560
+ prtInputDefaultIndex Integer32, -- Input
561
+ prtOutputDefaultIndex Integer32, -- Output
562
+ prtMarkerDefaultIndex Integer32, -- Marker
563
+ prtMediaPathDefaultIndex Integer32, -- Media Path
564
+ prtConsoleLocalization Integer32, -- Console
565
+ prtConsoleNumberOfDisplayLines Integer32, -- Console
566
+ prtConsoleNumberOfDisplayChars Integer32, -- Console
567
+ prtConsoleDisable PrtConsoleDisableTC,
568
+ -- Console,
569
+ prtAuxiliarySheetStartupPage PresentOnOff,
570
+ -- AuxiliarySheet
571
+ prtAuxiliarySheetBannerPage PresentOnOff,
572
+ -- AuxiliarySheet
573
+ prtGeneralPrinterName OCTET STRING,
574
+ -- General V2
575
+ prtGeneralSerialNumber OCTET STRING,
576
+ -- General V2
577
+ prtAlertCriticalEvents Counter32, -- Alert V2
578
+ prtAlertAllEvents Counter32 -- Alert V2
579
+ }
580
+
581
+ prtGeneralConfigChanges OBJECT-TYPE
582
+ SYNTAX Counter32
583
+ MAX-ACCESS read-only
584
+ STATUS current
585
+ DESCRIPTION
586
+ "Counts configuration changes within the printer. A
587
+ configuration change is defined to be an action that results in
588
+ a change to any MIB object other than those that reflect status
589
+ or level, or those that act as counters or gauges. In addition,
590
+ any action that results in a row being added or deleted from
591
+ any table in the Printer MIB is considered a configuration
592
+ change. Such changes will often affect the capability of the
593
+ printer to service certain types of print jobs. Management
594
+ applications may cache infrequently changed configuration
595
+ information about sub units within the printer. This object
596
+ should be incremented whenever the agent wishes to notify
597
+ management applications that any cached configuration
598
+ information for this device is to be considered 'stale'. At
599
+ this point, the management application should flush any
600
+ configuration information cached about this device and fetch
601
+
602
+ new configuration information.
603
+
604
+ The following are examples of actions that would cause the
605
+ prtGeneralConfigChanges object to be incremented:
606
+
607
+ - Adding an output bin
608
+ - Changing the media in a sensing input tray
609
+ - Changing the value of prtInputMediaType
610
+
611
+ Note that the prtGeneralConfigChanges counter would not be
612
+ incremented when an input tray is temporarily removed to load
613
+ additional paper or when the level of an input device changes.
614
+
615
+ NOTE: The above description has been modified from RFC 1759
616
+ for clarification."
617
+ ::= { prtGeneralEntry 1 }
618
+
619
+ prtGeneralCurrentLocalization OBJECT-TYPE
620
+ SYNTAX Integer32 (1..65535)
621
+ MAX-ACCESS read-write
622
+ STATUS current
623
+ DESCRIPTION
624
+ "The value of the prtLocalizationIndex corresponding to the
625
+ current language, country, and character set to be used for
626
+ localized string values that are identified as being dependent
627
+ on the value of this object. Note that this object does not
628
+ apply to localized strings in the prtConsole group or to any
629
+ object that is not explicitly identified as being localized
630
+ according to prtGeneralCurrentLocalization. When an object's
631
+ 'charset' is controlled by the value of
632
+ prtGeneralCurrentLocalization, it MUST specify
633
+ PrtLocalizedDescriptionStringTC as its syntax.
634
+
635
+ NOTE: The above description has been modified from RFC 1759
636
+ for clarification."
637
+ ::= { prtGeneralEntry 2 }
638
+
639
+ prtGeneralReset OBJECT-TYPE
640
+ -- NOTE: In RFC 1759, the enumeration values were implicitly defined
641
+ -- by this object.
642
+ SYNTAX PrtGeneralResetTC
643
+ MAX-ACCESS read-write
644
+ STATUS current
645
+ DESCRIPTION
646
+ "Setting this value to 'powerCycleReset', 'resetToNVRAM', or
647
+ 'resetToFactoryDefaults' will result in the resetting of the
648
+ printer. When read, this object will always have the value
649
+
650
+ 'notResetting(3)', and a SET of the value 'notResetting' shall
651
+ have no effect on the printer. Some of the defined values are
652
+ optional. However, every implementation must support at least
653
+ the values 'notResetting' and 'resetToNVRAM'."
654
+ ::= { prtGeneralEntry 3 }
655
+
656
+ -- The Responsible Party group
657
+
658
+ prtGeneralCurrentOperator OBJECT-TYPE
659
+ SYNTAX OCTET STRING (SIZE(0..127))
660
+ MAX-ACCESS read-write
661
+ STATUS current
662
+ DESCRIPTION
663
+ "The name of the person who is responsible for operating
664
+ this printer. It is suggested that this string include
665
+ information that would enable other humans to reach the
666
+ operator, such as a phone number. As a convention to
667
+ facilitate automatic notification of the operator by the
668
+ agent or network management station, the phone number,
669
+ fax number or email address should be indicated by the
670
+ URL schemes 'tel:', 'fax:' and 'mailto:', respectively.
671
+ If either the phone, fax, or email information is not
672
+ available, then a line should not be included for this
673
+ information.
674
+
675
+ NOTE: For interoperability purposes, it is advisable to
676
+ use email addresses formatted according to [RFC2822]
677
+ requirements.
678
+
679
+ NOTE: The above description has been modified from RFC 1759
680
+ for clarification."
681
+ ::= { prtGeneralEntry 4 }
682
+
683
+ prtGeneralServicePerson OBJECT-TYPE
684
+ SYNTAX OCTET STRING (SIZE(0..127))
685
+ MAX-ACCESS read-write
686
+ STATUS current
687
+ DESCRIPTION
688
+ "The name of the person responsible for servicing this
689
+ printer. It is suggested that this string include
690
+ information that would enable other humans to reach the
691
+ service person, such as a phone number. As a convention
692
+ to facilitate automatic notification of the operator by
693
+ the agent or network management station, the phone
694
+ number, fax number or email address should be indicated
695
+ by the URL schemes 'tel:', 'fax:' and 'mailto:',
696
+ respectively. If either the phone, fax, or email
697
+ information is not available, then a line should not
698
+
699
+ be included for this information.
700
+
701
+ NOTE: For interoperability purposes, it is advisable to use
702
+ email addresses formatted per [RFC2822] requirements.
703
+
704
+ NOTE: The above description has been modified from RFC 1759
705
+ for clarification."
706
+ ::= { prtGeneralEntry 5 }
707
+
708
+ -- Default indexes section
709
+ --
710
+ -- The following four objects are used to specify the indexes of
711
+ -- certain subunits used as defaults during the printing process.
712
+
713
+ prtInputDefaultIndex OBJECT-TYPE
714
+ SYNTAX Integer32 (1..65535)
715
+ MAX-ACCESS read-write
716
+ STATUS current
717
+ DESCRIPTION
718
+ "The value of prtInputIndex corresponding to the default input
719
+ sub-unit: that is, this object selects the default source of
720
+ input media."
721
+ ::= { prtGeneralEntry 6 }
722
+
723
+ prtOutputDefaultIndex OBJECT-TYPE
724
+ -- A range has been added to the SYNTAX clause that was not in
725
+ -- RFC 1759. Although this violates SNMP compatibility rules,
726
+ -- it provides a more reasonable guide for SNMP managers.
727
+ SYNTAX Integer32 (1..65535)
728
+ MAX-ACCESS read-write
729
+ STATUS current
730
+ DESCRIPTION
731
+ "The value of prtOutputIndex corresponding to the default
732
+ output sub-unit; that is, this object selects the default
733
+ output destination."
734
+ ::= { prtGeneralEntry 7 }
735
+
736
+ prtMarkerDefaultIndex OBJECT-TYPE
737
+ SYNTAX Integer32 (1..65535)
738
+ MAX-ACCESS read-write
739
+ STATUS current
740
+ DESCRIPTION
741
+ "The value of prtMarkerIndex corresponding to the
742
+ default marker sub-unit; that is, this object selects the
743
+ default marker."
744
+ ::= { prtGeneralEntry 8 }
745
+
746
+ prtMediaPathDefaultIndex OBJECT-TYPE
747
+ SYNTAX Integer32 (1..65535)
748
+ MAX-ACCESS read-write
749
+ STATUS current
750
+ DESCRIPTION
751
+ "The value of prtMediaPathIndex corresponding to
752
+ the default media path; that is, the selection of the
753
+ default media path."
754
+ ::= { prtGeneralEntry 9 }
755
+
756
+ -- Console general section
757
+ --
758
+ -- The following four objects describe overall parameters of the
759
+ -- printer console subsystem.
760
+
761
+ prtConsoleLocalization OBJECT-TYPE
762
+ SYNTAX Integer32 (1..65535)
763
+ MAX-ACCESS read-write
764
+ STATUS current
765
+ DESCRIPTION
766
+ "The value of the prtLocalizationIndex corresponding to
767
+ the language, country, and character set to be used for the
768
+ console. This localization applies both to the actual display
769
+ on the console as well as the encoding of these console objects
770
+ in management operations. When an object's 'charset' is
771
+ controlled by the value of prtConsoleLocalization, it MUST
772
+ specify PrtConsoleDescriptionStringTC as its syntax.
773
+
774
+ NOTE: The above description has been modified from RFC 1759
775
+ for clarification."
776
+ ::= { prtGeneralEntry 10 }
777
+
778
+ prtConsoleNumberOfDisplayLines OBJECT-TYPE
779
+ SYNTAX Integer32 (0..65535)
780
+ MAX-ACCESS read-only
781
+ STATUS current
782
+ DESCRIPTION
783
+ "The number of lines on the printer's physical
784
+ display. This value is 0 if there are no lines on the
785
+ physical display or if there is no physical display"
786
+ ::= { prtGeneralEntry 11 }
787
+
788
+ prtConsoleNumberOfDisplayChars OBJECT-TYPE
789
+ SYNTAX Integer32 (0..65535)
790
+ MAX-ACCESS read-only
791
+ STATUS current
792
+ DESCRIPTION
793
+ "The number of characters per line displayed on the physical
794
+
795
+ display. This value is 0 if there are no lines on the physical
796
+ display or if there is no physical display"
797
+ ::= { prtGeneralEntry 12 }
798
+
799
+ prtConsoleDisable OBJECT-TYPE
800
+ -- In RFC 1759, the enumeration values were implicitly defined
801
+ -- by this object.
802
+ SYNTAX PrtConsoleDisableTC
803
+ MAX-ACCESS read-write
804
+ STATUS current
805
+ DESCRIPTION
806
+ "This value indicates how input is (or is not) accepted from
807
+ the operator console.
808
+
809
+ NOTE: The above description has been modified from RFC 1759
810
+ for clarification."
811
+ ::= { prtGeneralEntry 13 }
812
+
813
+ -- The Auxiliary Sheet Group
814
+ --
815
+ -- The auxiliary sheet group allows the administrator to control
816
+ -- the production of auxiliary sheets by the printer. This group
817
+ -- contains only the "prtAuxiliarySheetStartupPage" and
818
+ -- "prtAuxiliarySheetBannerPage" objects.
819
+
820
+ prtAuxiliarySheetStartupPage OBJECT-TYPE
821
+ SYNTAX PresentOnOff
822
+ MAX-ACCESS read-write
823
+ STATUS current
824
+ DESCRIPTION
825
+ "Used to enable or disable printing a startup page. If enabled,
826
+ a startup page will be printed shortly after power-up, when the
827
+ device is ready. Typical startup pages include test patterns
828
+ and/or printer configuration information."
829
+ ::= { prtGeneralEntry 14 }
830
+
831
+ prtAuxiliarySheetBannerPage OBJECT-TYPE
832
+ SYNTAX PresentOnOff
833
+ MAX-ACCESS read-write
834
+ STATUS current
835
+ DESCRIPTION
836
+ "Used to enable or disable printing banner pages at the
837
+ beginning of jobs. This is a master switch which applies to all
838
+ jobs, regardless of interpreter."
839
+ ::= { prtGeneralEntry 15 }
840
+
841
+ -- Administrative section (The General V2 Group)
842
+ --
843
+ -- The following two objects are used to specify administrative
844
+ -- information assigned to the printer.
845
+
846
+ prtGeneralPrinterName OBJECT-TYPE
847
+ SYNTAX OCTET STRING (SIZE (0..127))
848
+ MAX-ACCESS read-write
849
+ STATUS current
850
+ DESCRIPTION
851
+ "An administrator-specified name for this printer. Depending
852
+ upon implementation of this printer, the value of this object
853
+ may or may not be same as the value for the MIB-II 'SysName'
854
+ object."
855
+ ::= { prtGeneralEntry 16 }
856
+
857
+ prtGeneralSerialNumber OBJECT-TYPE
858
+ SYNTAX OCTET STRING (SIZE (0..255))
859
+ MAX-ACCESS read-write
860
+ STATUS current
861
+ DESCRIPTION
862
+ "A recorded serial number for this device that indexes some
863
+ type device catalog or inventory. This value is usually set by
864
+ the device manufacturer but the MIB supports the option of
865
+ writing for this object for site-specific administration of
866
+ device inventory or tracking."
867
+ ::= { prtGeneralEntry 17 }
868
+
869
+ -- General alert table section (Alert Table V2 Group)
870
+ --
871
+ -- The following two objects are used to specify counters
872
+ -- associated with the Alert Table.
873
+
874
+ prtAlertCriticalEvents OBJECT-TYPE
875
+ SYNTAX Counter32
876
+ MAX-ACCESS read-only
877
+ STATUS current
878
+ DESCRIPTION
879
+ "A running counter of the number of critical alert events that
880
+ have been recorded in the alert table. The value of this object
881
+ is RESET in the event of a power cycle operation (i.e., the
882
+ value is not persistent."
883
+ ::= { prtGeneralEntry 18 }
884
+
885
+ prtAlertAllEvents OBJECT-TYPE
886
+ SYNTAX Counter32
887
+ MAX-ACCESS read-only
888
+ STATUS current
889
+ DESCRIPTION
890
+ "A running counter of the total number of alert event entries
891
+ (critical and non-critical) that have been recorded in the
892
+ alert table"
893
+ ::= { prtGeneralEntry 19 }
894
+
895
+ -- The Cover Table
896
+ --
897
+ -- The cover portion of the General print sub-unit describes the
898
+ -- covers and interlocks of the printer. The Cover Table has an
899
+ -- entry for each cover and interlock.
900
+
901
+ prtCover OBJECT IDENTIFIER ::= { printmib 6 }
902
+
903
+ prtCoverTable OBJECT-TYPE
904
+ SYNTAX SEQUENCE OF PrtCoverEntry
905
+ MAX-ACCESS not-accessible
906
+ STATUS current
907
+ DESCRIPTION
908
+ "A table of the covers and interlocks of the printer."
909
+ ::= { prtCover 1 }
910
+
911
+ prtCoverEntry OBJECT-TYPE
912
+ SYNTAX PrtCoverEntry
913
+ MAX-ACCESS not-accessible
914
+ STATUS current
915
+ DESCRIPTION
916
+ "Information about a cover or interlock.
917
+ Entries may exist in the table for each device
918
+ index with a device type of 'printer'.
919
+
920
+ NOTE: The above description has been modified from RFC 1759
921
+ for clarification."
922
+ INDEX { hrDeviceIndex, prtCoverIndex }
923
+ ::= { prtCoverTable 1 }
924
+
925
+ PrtCoverEntry ::= SEQUENCE {
926
+ prtCoverIndex Integer32,
927
+ prtCoverDescription PrtLocalizedDescriptionStringTC,
928
+ prtCoverStatus PrtCoverStatusTC
929
+ }
930
+
931
+ prtCoverIndex OBJECT-TYPE
932
+ SYNTAX Integer32 (1..65535)
933
+ MAX-ACCESS not-accessible
934
+ STATUS current
935
+ DESCRIPTION
936
+ "A unique value used by the printer to identify this Cover sub
937
+
938
+ unit. Although these values may change due to a major
939
+ reconfiguration of the device (e.g., the addition of new cover
940
+ sub-units to the printer), values SHOULD remain stable across
941
+ successive printer power cycles.
942
+
943
+ NOTE: The above description has been modified from RFC 1759
944
+ for clarification."
945
+ ::= { prtCoverEntry 1 }
946
+
947
+ prtCoverDescription OBJECT-TYPE
948
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
949
+ -- to a TC to better support localization of the object.
950
+ SYNTAX PrtLocalizedDescriptionStringTC
951
+ MAX-ACCESS read-only
952
+ STATUS current
953
+ DESCRIPTION
954
+ "The manufacturer provided cover sub-mechanism name in the
955
+ localization specified by prtGeneralCurrentLocalization."
956
+ ::= { prtCoverEntry 2 }
957
+
958
+ prtCoverStatus OBJECT-TYPE
959
+ -- NOTE: In RFC 1759, the enumeration values were implicitly defined
960
+ -- by this object and are now defined in the IANA-PRINTER-MIB. The
961
+ -- new TC has defined "coverOpen" and "coverClosed" to replace
962
+ -- "doorOpen" and "doorClosed" in RFC 1759. A name change is not
963
+ -- formally allowed per SMI rules, but was agreed to by the WG group
964
+ -- since a door has a more restrictive meaning than a cover and
965
+ -- Cover group is intended to support doors as a subset of covers.
966
+ SYNTAX PrtCoverStatusTC
967
+ MAX-ACCESS read-only
968
+ STATUS current
969
+ DESCRIPTION
970
+ "The status of this cover sub-unit."
971
+ ::= { prtCoverEntry 3 }
972
+
973
+ -- The Localization Table
974
+ --
975
+ -- The localization portion of the General printer sub-unit is
976
+ -- responsible for identifying the natural language, country, and
977
+ -- character set in which character strings are expressed. There
978
+ -- may be one or more localizations supported per printer. The
979
+ -- available localizations are represented by the Localization
980
+ -- table.
981
+
982
+ prtLocalization OBJECT IDENTIFIER ::= { printmib 7 }
983
+
984
+ prtLocalizationTable OBJECT-TYPE
985
+ SYNTAX SEQUENCE OF PrtLocalizationEntry
986
+ MAX-ACCESS not-accessible
987
+ STATUS current
988
+ DESCRIPTION
989
+ "The available localizations in this printer."
990
+ ::= { prtLocalization 1 }
991
+
992
+ prtLocalizationEntry OBJECT-TYPE
993
+ SYNTAX PrtLocalizationEntry
994
+ MAX-ACCESS not-accessible
995
+ STATUS current
996
+ DESCRIPTION
997
+ "A description of a localization.
998
+ Entries may exist in the table for each device
999
+ index with a device type of 'printer'.
1000
+
1001
+ NOTE: The above description has been modified from RFC 1759
1002
+ for clarification."
1003
+ INDEX { hrDeviceIndex, prtLocalizationIndex }
1004
+ ::= { prtLocalizationTable 1 }
1005
+
1006
+ PrtLocalizationEntry ::= SEQUENCE {
1007
+ prtLocalizationIndex Integer32,
1008
+ prtLocalizationLanguage OCTET STRING,
1009
+ prtLocalizationCountry OCTET STRING,
1010
+ prtLocalizationCharacterSet IANACharset
1011
+ }
1012
+
1013
+ prtLocalizationIndex OBJECT-TYPE
1014
+ SYNTAX Integer32 (1..65535)
1015
+ MAX-ACCESS not-accessible
1016
+ STATUS current
1017
+ DESCRIPTION
1018
+ "A unique value used by the printer to identify this
1019
+ localization entry. Although these values may change due to a
1020
+ major reconfiguration of the device (e.g., the addition of new
1021
+ localization data to the printer), values SHOULD remain
1022
+ stable across successive printer power cycles.
1023
+
1024
+ NOTE: The above description has been modified from RFC 1759
1025
+ for clarification."
1026
+ ::= { prtLocalizationEntry 1 }
1027
+
1028
+ prtLocalizationLanguage OBJECT-TYPE
1029
+ -- Note: The size is fixed, was incorrectly 0..2 in RFC 1759.
1030
+ SYNTAX OCTET STRING (SIZE(2))
1031
+ MAX-ACCESS read-only
1032
+ STATUS current
1033
+ DESCRIPTION
1034
+ "A two character language code from ISO 639. Examples en,
1035
+ es, fr, de. NOTE: These examples were shown as upper case in
1036
+ RFC 1759 and are now shown as lower case to agree with ISO 639."
1037
+ ::= { prtLocalizationEntry 2 }
1038
+
1039
+ prtLocalizationCountry OBJECT-TYPE
1040
+ -- Note: The size is fixed, was incorrectly 0..2 in RFC 1759.
1041
+ SYNTAX OCTET STRING (SIZE(2))
1042
+ MAX-ACCESS read-only
1043
+ STATUS current
1044
+ DESCRIPTION
1045
+ "A two character country code from ISO 3166, a blank string
1046
+ (two space characters) shall indicate that the country is not
1047
+ defined. Examples: US, GB, FR, DE, ..."
1048
+ ::= { prtLocalizationEntry 3 }
1049
+
1050
+ prtLocalizationCharacterSet OBJECT-TYPE
1051
+ SYNTAX IANACharset
1052
+ MAX-ACCESS read-only
1053
+ STATUS current
1054
+ DESCRIPTION
1055
+ "The coded character set used for this localization."
1056
+ ::= { prtLocalizationEntry 4 }
1057
+
1058
+ -- The System Resources Tables
1059
+ --
1060
+ -- The Printer MIB makes use of the Host Resources MIB to
1061
+ -- define system resources by referencing the storage
1062
+ -- and device groups of the print group.
1063
+
1064
+ prtStorageRefTable OBJECT-TYPE
1065
+ SYNTAX SEQUENCE OF PrtStorageRefEntry
1066
+ MAX-ACCESS not-accessible
1067
+ STATUS current
1068
+ DESCRIPTION
1069
+ "This table defines which printer, amongst multiple printers
1070
+ serviced by one agent, owns which storage units.
1071
+
1072
+ NOTE: The above description has been modified from RFC 1759
1073
+ for clarification."
1074
+ ::= { prtGeneral 2 }
1075
+
1076
+ prtStorageRefEntry OBJECT-TYPE
1077
+ SYNTAX PrtStorageRefEntry
1078
+ MAX-ACCESS not-accessible
1079
+ STATUS current
1080
+ DESCRIPTION
1081
+ "This table will have an entry for each entry in the Host
1082
+ Resources MIB storage table that represents storage associated
1083
+ with a printer managed by this agent.
1084
+
1085
+ NOTE: The above description has been modified from RFC 1759
1086
+ for clarification."
1087
+ INDEX { hrStorageIndex, prtStorageRefSeqNumber }
1088
+ ::= { prtStorageRefTable 1 }
1089
+
1090
+ PrtStorageRefEntry ::= SEQUENCE {
1091
+ prtStorageRefSeqNumber Integer32,
1092
+ prtStorageRefIndex Integer32
1093
+ }
1094
+
1095
+ prtStorageRefSeqNumber OBJECT-TYPE
1096
+ -- NOTE: The range has been changed from RFC 1759, which allowed a
1097
+ -- minumum value of zero. This was incorrect, since zero is not a
1098
+ -- valid index.
1099
+ SYNTAX Integer32 (1..65535)
1100
+ MAX-ACCESS not-accessible
1101
+ STATUS current
1102
+ DESCRIPTION
1103
+ "This value will be unique amongst all entries with a common
1104
+ value of hrStorageIndex. This object allows a storage entry to
1105
+ point to the multiple printer devices with which it is
1106
+ associated."
1107
+ ::= { prtStorageRefEntry 1 }
1108
+
1109
+ prtStorageRefIndex OBJECT-TYPE
1110
+ -- NOTE: The range has been changed from RFC 1759 to be compatible
1111
+ -- with the defined range of hrDeviceIndex.
1112
+ SYNTAX Integer32 (0..2147483647)
1113
+ MAX-ACCESS read-only
1114
+ STATUS current
1115
+ DESCRIPTION
1116
+ "The value of the hrDeviceIndex of the printer device that this
1117
+ storageEntry is associated with."
1118
+ ::= { prtStorageRefEntry 2 }
1119
+
1120
+ prtDeviceRefTable OBJECT-TYPE
1121
+ SYNTAX SEQUENCE OF PrtDeviceRefEntry
1122
+ MAX-ACCESS not-accessible
1123
+ STATUS current
1124
+ DESCRIPTION
1125
+ "This table defines which printer, amongst multiple printers
1126
+ serviced by one agent, is associated with which devices.
1127
+
1128
+ NOTE: The above description has been modified from RFC 1759
1129
+
1130
+ for clarification."
1131
+ ::= { prtGeneral 3 }
1132
+
1133
+ prtDeviceRefEntry OBJECT-TYPE
1134
+ SYNTAX PrtDeviceRefEntry
1135
+ MAX-ACCESS not-accessible
1136
+ STATUS current
1137
+ DESCRIPTION
1138
+ "This table will have an entry for each entry in the Host
1139
+ Resources MIB device table that represents a device associated
1140
+ with a printer managed by this agent.
1141
+
1142
+ NOTE: The above description has been modified from RFC 1759
1143
+ for clarification."
1144
+ INDEX { hrDeviceIndex, prtDeviceRefSeqNumber }
1145
+ ::= { prtDeviceRefTable 1 }
1146
+
1147
+ PrtDeviceRefEntry ::= SEQUENCE {
1148
+ prtDeviceRefSeqNumber Integer32,
1149
+ prtDeviceRefIndex Integer32
1150
+ }
1151
+
1152
+ prtDeviceRefSeqNumber OBJECT-TYPE
1153
+ -- NOTE: The range has been changed from RFC 1759, which allowed a
1154
+ -- minumum value of zero. This was incorrect, since zero is not a
1155
+ -- valid index.
1156
+ SYNTAX Integer32 (1..65535)
1157
+ MAX-ACCESS not-accessible
1158
+ STATUS current
1159
+ DESCRIPTION
1160
+ "This value will be unique amongst all entries with a common
1161
+ value of hrDeviceIndex. This object allows a device entry to
1162
+ point to the multiple printer devices with which it is
1163
+ associated."
1164
+ ::= { prtDeviceRefEntry 1 }
1165
+
1166
+ prtDeviceRefIndex OBJECT-TYPE
1167
+ -- NOTE: The range has been changed from RFC 1759 to be compatible
1168
+ -- with the defined range of hrDeviceIndex.
1169
+ SYNTAX Integer32 (0..2147483647)
1170
+ MAX-ACCESS read-only
1171
+ STATUS current
1172
+ DESCRIPTION
1173
+ "The value of the hrDeviceIndex of the printer device that this
1174
+ deviceEntry is associated with."
1175
+ ::= { prtDeviceRefEntry 2 }
1176
+
1177
+ -- The Input Group
1178
+ --
1179
+ -- Input sub-units are managed as a tabular, indexed collection
1180
+ -- of possible devices capable of providing media for input to
1181
+ -- the printing process. Input sub-units typically have a
1182
+ -- location, a type, an identifier, a set of constraints on
1183
+ -- possible media sizes and potentially other media
1184
+ -- characteristics, and may be capable of indicating current
1185
+ -- status or capacity.
1186
+
1187
+ prtInput OBJECT IDENTIFIER ::= { printmib 8 }
1188
+
1189
+ prtInputTable OBJECT-TYPE
1190
+ SYNTAX SEQUENCE OF PrtInputEntry
1191
+ MAX-ACCESS not-accessible
1192
+ STATUS current
1193
+ DESCRIPTION
1194
+ "A table of the devices capable of providing media for input to
1195
+ the printing process."
1196
+ ::= { prtInput 2 }
1197
+
1198
+ prtInputEntry OBJECT-TYPE
1199
+ SYNTAX PrtInputEntry
1200
+ MAX-ACCESS not-accessible
1201
+ STATUS current
1202
+ DESCRIPTION
1203
+ "Attributes of a device capable of providing media for input to
1204
+ the printing process. Entries may exist in the table for each
1205
+ device index with a device type of 'printer'.
1206
+
1207
+ NOTE: The above description has been modified from RFC 1759
1208
+ for clarification."
1209
+ INDEX { hrDeviceIndex, prtInputIndex }
1210
+ ::= { prtInputTable 1 }
1211
+
1212
+ PrtInputEntry ::= SEQUENCE {
1213
+ prtInputIndex Integer32,
1214
+ prtInputType PrtInputTypeTC,
1215
+ prtInputDimUnit PrtMediaUnitTC,
1216
+ prtInputMediaDimFeedDirDeclared Integer32,
1217
+ prtInputMediaDimXFeedDirDeclared Integer32,
1218
+ prtInputMediaDimFeedDirChosen Integer32,
1219
+ prtInputMediaDimXFeedDirChosen Integer32,
1220
+ prtInputCapacityUnit PrtCapacityUnitTC,
1221
+ prtInputMaxCapacity Integer32,
1222
+ prtInputCurrentLevel Integer32,
1223
+ prtInputStatus PrtSubUnitStatusTC,
1224
+ prtInputMediaName OCTET STRING,
1225
+ prtInputName OCTET STRING,
1226
+ prtInputVendorName OCTET STRING,
1227
+ prtInputModel OCTET STRING,
1228
+ prtInputVersion OCTET STRING,
1229
+ prtInputSerialNumber OCTET STRING,
1230
+ prtInputDescription PrtLocalizedDescriptionStringTC,
1231
+ prtInputSecurity PresentOnOff,
1232
+ prtInputMediaWeight Integer32,
1233
+ prtInputMediaType OCTET STRING,
1234
+ prtInputMediaColor OCTET STRING,
1235
+ prtInputMediaFormParts Integer32,
1236
+ prtInputMediaLoadTimeout Integer32,
1237
+ prtInputNextIndex Integer32
1238
+ }
1239
+
1240
+ prtInputIndex OBJECT-TYPE
1241
+ SYNTAX Integer32 (1..65535)
1242
+ MAX-ACCESS not-accessible
1243
+ STATUS current
1244
+ DESCRIPTION
1245
+ "A unique value used by the printer to identify this input
1246
+ sub-unit. Although these values may change due to a major
1247
+ reconfiguration of the device (e.g., the addition of new input
1248
+ sub-units to the printer), values SHOULD remain stable across
1249
+ successive printer power cycles.
1250
+
1251
+ NOTE: The above description has been modified from RFC 1759
1252
+ for clarification."
1253
+ ::= { prtInputEntry 1 }
1254
+
1255
+ prtInputType OBJECT-TYPE
1256
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
1257
+ -- defined by this object.
1258
+ SYNTAX PrtInputTypeTC
1259
+ MAX-ACCESS read-only
1260
+ STATUS current
1261
+ DESCRIPTION
1262
+ "The type of technology (discriminated primarily according to
1263
+ feeder mechanism type) employed by the input sub-unit. Note,
1264
+ the Input Class provides for a descriptor field to further
1265
+ qualify the other choice."
1266
+ ::= { prtInputEntry 2 }
1267
+
1268
+ prtInputDimUnit OBJECT-TYPE
1269
+ SYNTAX PrtMediaUnitTC
1270
+ MAX-ACCESS read-only
1271
+ STATUS current
1272
+ DESCRIPTION
1273
+ "The unit of measurement for use calculating and relaying
1274
+ dimensional values for this input sub-unit."
1275
+ ::= { prtInputEntry 3 }
1276
+
1277
+ prtInputMediaDimFeedDirDeclared OBJECT-TYPE
1278
+ -- NOTE: In RFC 1759, the range was not defined.
1279
+ SYNTAX Integer32 (-2..2147483647)
1280
+ MAX-ACCESS read-write
1281
+ STATUS current
1282
+ DESCRIPTION
1283
+ "This object provides the value of the declared dimension, in
1284
+ the feed direction, of the media that is (or, if empty, was or
1285
+ will be) in this input sub-unit. The feed direction is the
1286
+ direction in which the media is fed on this sub-unit. This
1287
+ dimension is measured in input sub-unit dimensional units
1288
+ (controlled by prtInputDimUnit, which uses PrtMediaUnitTC). If
1289
+ this input sub-unit can reliably sense this value, the value is
1290
+ sensed by the printer and may not be changed by management
1291
+ requests. Otherwise, the value may be changed. The value (-1)
1292
+ means other and specifically means that this sub-unit places no
1293
+ restriction on this parameter. The value (-2) indicates
1294
+ unknown."
1295
+ ::= { prtInputEntry 4 }
1296
+
1297
+ prtInputMediaDimXFeedDirDeclared OBJECT-TYPE
1298
+ -- NOTE: In RFC 1759, the range was not defined.
1299
+ SYNTAX Integer32 (-2..2147483647)
1300
+ MAX-ACCESS read-write
1301
+ STATUS current
1302
+ DESCRIPTION
1303
+ "This object provides the value of the declared dimension, in
1304
+ the cross feed direction, of the media that is (or, if empty,
1305
+ was or will be) in this input sub-unit. The cross feed
1306
+ direction is ninety degrees relative to the feed direction
1307
+ associated with this sub-unit. This dimension is measured in
1308
+ input sub-unit dimensional units (controlled by
1309
+ prtInputDimUnit,which uses PrtMediaUnitTC). If this input sub-
1310
+ unit can reliably sense this value, the value is sensed by the
1311
+ printer and may not be changed by management requests.
1312
+ Otherwise, the value may be changed. The value (-1) means other
1313
+ and specifically means that this sub-unit places no restriction
1314
+ on this parameter. The value (-2) indicates unknown."
1315
+ ::= { prtInputEntry 5 }
1316
+
1317
+ prtInputMediaDimFeedDirChosen OBJECT-TYPE
1318
+ -- NOTE: In RFC 1759, the range was not defined.
1319
+ SYNTAX Integer32 (-2..2147483647)
1320
+ MAX-ACCESS read-only
1321
+ STATUS current
1322
+ DESCRIPTION
1323
+ "The printer will act as if media of the chosen dimension (in
1324
+ the feed direction) is present in this input source. Note that
1325
+ this value will be used even if the input tray is empty. Feed
1326
+ dimension measurements are taken relative to the feed direction
1327
+ associated with that sub-unit and are in input sub-unit
1328
+ dimensional units (controlled by prtInputDimUnit, which uses
1329
+ PrtMediaUnitTC). If the printer supports the declared
1330
+ dimension,the granted dimension is the same as the declared
1331
+ dimension. If not, the granted dimension is set to the closest
1332
+ dimension that the printer supports when the declared dimension
1333
+ is set. The value (-1) means other and specifically indicates
1334
+ that this sub-unit places no restriction on this parameter. The
1335
+ value (-2)indicates unknown."
1336
+ ::= { prtInputEntry 6 }
1337
+
1338
+ prtInputMediaDimXFeedDirChosen OBJECT-TYPE
1339
+ -- NOTE: In RFC 1759, the range was not defined.
1340
+ SYNTAX Integer32 (-2..2147483647)
1341
+ MAX-ACCESS read-only
1342
+ STATUS current
1343
+ DESCRIPTION
1344
+ "The printer will act as if media of the chosen dimension (in
1345
+ the cross feed direction) is present in this input source. Note
1346
+ that this value will be used even if the input tray is empty.
1347
+ The cross feed direction is ninety degrees relative to the feed
1348
+ direction associated with this sub-unit. This dimension is
1349
+ measured in input sub-unit dimensional units (controlled by
1350
+ prtInputDimUnit, which uses PrtMediaUnitTC). If the printer
1351
+ supports the declare dimension, the granted dimension is the
1352
+ same as the declared dimension. If not, the granted dimension
1353
+ is set to the closest dimension that the printer supports when
1354
+ the declared dimension is set. The value (-1) means other and
1355
+ specifically indicates that this sub-unit places no restriction
1356
+ on this parameter. The value (-2) indicates unknown."
1357
+ ::= { prtInputEntry 7 }
1358
+
1359
+ prtInputCapacityUnit OBJECT-TYPE
1360
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
1361
+ -- defined by this object.
1362
+ SYNTAX PrtCapacityUnitTC
1363
+ MAX-ACCESS read-only
1364
+ STATUS current
1365
+ DESCRIPTION
1366
+ "The unit of measurement for use in calculating and relaying
1367
+ capacity values for this input sub-unit."
1368
+ ::= { prtInputEntry 8 }
1369
+
1370
+ prtInputMaxCapacity OBJECT-TYPE
1371
+ -- NOTE: In RFC 1759, the range was not defined.
1372
+ SYNTAX Integer32 (-2..2147483647)
1373
+ MAX-ACCESS read-write
1374
+ STATUS current
1375
+ DESCRIPTION
1376
+ "The maximum capacity of the input sub-unit in input sub-unit
1377
+ capacity units (PrtCapacityUnitTC). There is no convention
1378
+ associated with the media itself so this value reflects claimed
1379
+ capacity. If this input sub-unit can reliably sense this value,
1380
+ the value is sensed by the printer and may not be changed by
1381
+ management requests; otherwise, the value may be written (by a
1382
+ Remote Control Panel or a Management Application). The value
1383
+ (-1) means other and specifically indicates that the sub-unit
1384
+ places no restrictions on this parameter. The value (-2) means
1385
+ unknown."
1386
+ ::= { prtInputEntry 9 }
1387
+
1388
+ prtInputCurrentLevel OBJECT-TYPE
1389
+ -- NOTE: In RFC 1759, the range was not defined.
1390
+ SYNTAX Integer32 (-3..2147483647) -- in capacity units
1391
+ -- (PrtCapacityUnitTC).
1392
+ MAX-ACCESS read-write
1393
+ STATUS current
1394
+ DESCRIPTION
1395
+ "The current capacity of the input sub-unit in input sub-unit
1396
+ capacity units (PrtCapacityUnitTC). If this input sub-unit can
1397
+ reliably sense this value, the value is sensed by the printer
1398
+ and may not be changed by management requests; otherwise, the
1399
+ value may be written (by a Remote Control Panel or a Management
1400
+ Application). The value (-1) means other and specifically
1401
+ indicates that the sub-unit places no restrictions on this
1402
+ parameter. The value (-2) means unknown. The value (-3) means
1403
+ that the printer knows that at least one unit remains."
1404
+ ::= { prtInputEntry 10 }
1405
+
1406
+ prtInputStatus OBJECT-TYPE
1407
+ SYNTAX PrtSubUnitStatusTC
1408
+ MAX-ACCESS read-only
1409
+ STATUS current
1410
+ DESCRIPTION
1411
+ "The current status of this input sub-unit."
1412
+ ::= { prtInputEntry 11 }
1413
+
1414
+ prtInputMediaName OBJECT-TYPE
1415
+ SYNTAX OCTET STRING (SIZE(0..63))
1416
+ MAX-ACCESS read-write
1417
+ STATUS current
1418
+ DESCRIPTION
1419
+ "A description of the media contained in this input sub-unit;
1420
+ This description is to be used by a client to format and
1421
+ Localize a string for display to a human operator. This
1422
+ description is not processed by the printer. It is used to
1423
+ provide information not expressible in terms of the other
1424
+ media attributes (e.g., prtInputMediaDimFeedDirChosen,
1425
+ prtInputMediaDimXFeedDirChosen, prtInputMediaWeight,
1426
+ prtInputMediaType)."
1427
+ -- The following reference was not included in RFC 1759.
1428
+ REFERENCE
1429
+ "The PWG Standardized Media Names specification [PWGMEDIA]
1430
+ contains the recommended values for this object. See also
1431
+ RFC 3805 Appendix C,'Media Names', which lists the values
1432
+ Of standardized media names defined in ISO/IEC 10175."
1433
+ ::= { prtInputEntry 12 }
1434
+
1435
+ -- INPUT MEASUREMENT
1436
+ --
1437
+ -- _______ | |
1438
+ -- ^ | |
1439
+ -- | | | |
1440
+ -- | |_ _ _ _ _ _ _ _| _______________ |direction
1441
+ -- | | | ^ v
1442
+ -- MaxCapacity | Sheets | |
1443
+ -- | | left | CurrentLevel
1444
+ -- | | in | |
1445
+ -- v | tray | v
1446
+ -- _______ +_______________+ _______
1447
+
1448
+ -- The Extended Input Group
1449
+
1450
+ prtInputName OBJECT-TYPE
1451
+ SYNTAX OCTET STRING (SIZE(0..63))
1452
+ MAX-ACCESS read-write
1453
+ STATUS current
1454
+ DESCRIPTION
1455
+ "The name assigned to this input sub-unit."
1456
+ ::= { prtInputEntry 13 }
1457
+
1458
+ prtInputVendorName OBJECT-TYPE
1459
+ SYNTAX OCTET STRING (SIZE(0..63))
1460
+ MAX-ACCESS read-only
1461
+ STATUS current
1462
+ DESCRIPTION
1463
+ "The vendor name of this input sub-unit."
1464
+ ::= { prtInputEntry 14 }
1465
+
1466
+ prtInputModel OBJECT-TYPE
1467
+ SYNTAX OCTET STRING (SIZE(0..63))
1468
+ MAX-ACCESS read-only
1469
+ STATUS current
1470
+ DESCRIPTION
1471
+ "The model name of this input sub-unit."
1472
+ ::= { prtInputEntry 15 }
1473
+
1474
+ prtInputVersion OBJECT-TYPE
1475
+ SYNTAX OCTET STRING (SIZE(0..63))
1476
+ MAX-ACCESS read-only
1477
+ STATUS current
1478
+ DESCRIPTION
1479
+ "The version of this input sub-unit."
1480
+ ::= { prtInputEntry 16 }
1481
+
1482
+ prtInputSerialNumber OBJECT-TYPE
1483
+ SYNTAX OCTET STRING (SIZE(0..32))
1484
+ MAX-ACCESS read-only
1485
+ STATUS current
1486
+ DESCRIPTION
1487
+ "The serial number assigned to this input sub-unit."
1488
+ ::= { prtInputEntry 17 }
1489
+
1490
+ prtInputDescription OBJECT-TYPE
1491
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
1492
+ -- to a TC to better support localization of the object.
1493
+ SYNTAX PrtLocalizedDescriptionStringTC
1494
+ MAX-ACCESS read-only
1495
+ STATUS current
1496
+ DESCRIPTION
1497
+ "A free-form text description of this input sub-unit in the
1498
+ localization specified by prtGeneralCurrentLocalization."
1499
+ ::= { prtInputEntry 18 }
1500
+
1501
+ prtInputSecurity OBJECT-TYPE
1502
+ SYNTAX PresentOnOff
1503
+ MAX-ACCESS read-write
1504
+ STATUS current
1505
+ DESCRIPTION
1506
+ "Indicates if this input sub-unit has some security associated
1507
+ with it."
1508
+ ::= { prtInputEntry 19 }
1509
+
1510
+ -- The Input Media Group
1511
+ --
1512
+ -- The Input Media Group supports identification of media
1513
+ -- installed or available for use on a printing device.
1514
+
1515
+ -- Medium resources are identified by name, and include a
1516
+ -- collection of characteristic attributes that may further be
1517
+ -- used for selection and management of them.
1518
+ -- The Input Media group consists of a set of optional
1519
+ -- "columns" in the Input Table. In this manner, a minimally
1520
+ -- conforming implementation may choose to not support reporting
1521
+ -- of media resources if it cannot do so.
1522
+
1523
+ prtInputMediaWeight OBJECT-TYPE
1524
+ -- NOTE: In RFC 1759, the range was not defined.
1525
+ SYNTAX Integer32 (-2..2147483647)
1526
+ MAX-ACCESS read-write
1527
+ STATUS current
1528
+ DESCRIPTION
1529
+ "The weight of the medium associated with this input sub-unit
1530
+ in grams / per meter squared. The value (-2) means unknown."
1531
+ ::= { prtInputEntry 20 }
1532
+
1533
+ prtInputMediaType OBJECT-TYPE
1534
+ SYNTAX OCTET STRING (SIZE(0..63))
1535
+ MAX-ACCESS read-write
1536
+ STATUS current
1537
+ DESCRIPTION
1538
+ "The name of the type of medium associated with this input sub
1539
+ unit. This name need not be processed by the printer; it might
1540
+ simply be displayed to an operator.
1541
+
1542
+ NOTE: The above description has been modified from RFC 1759."
1543
+ -- The following reference was not included in RFC 1759.
1544
+ REFERENCE
1545
+ "The PWG Standardized Media Names specification [PWGMEDIA],
1546
+ section 3 Media Type Names, contains the recommended values for
1547
+ this object. Implementers may add additional string values.
1548
+ The naming conventions in ISO 9070 are recommended in order to
1549
+ avoid potential name clashes."
1550
+ ::= { prtInputEntry 21 }
1551
+
1552
+ prtInputMediaColor OBJECT-TYPE
1553
+ SYNTAX OCTET STRING (SIZE(0..63))
1554
+ MAX-ACCESS read-write
1555
+ STATUS current
1556
+ DESCRIPTION
1557
+ "The name of the color of the medium associated with
1558
+ this input sub-unit using standardized string values.
1559
+
1560
+ NOTE: The above description has been modified from RFC 1759."
1561
+ -- The following reference was not included in RFC 1759.
1562
+ REFERENCE
1563
+ "The PWG Standardized Media Names specification [PWGMEDIA],
1564
+ section 4 Media Color Names, contains the recommended values
1565
+ for this object. Implementers may add additional string values.
1566
+ The naming conventions in ISO 9070 are recommended in order to
1567
+ avoid potential name clashes."
1568
+ ::= { prtInputEntry 22 }
1569
+
1570
+ prtInputMediaFormParts OBJECT-TYPE
1571
+ -- NOTE: In RFC 1759, the range was not defined.
1572
+ SYNTAX Integer32 (-2..2147483647)
1573
+ MAX-ACCESS read-write
1574
+ STATUS current
1575
+ DESCRIPTION
1576
+ "The number of parts associated with the medium
1577
+ associated with this input sub-unit if the medium is a
1578
+ multi-part form. The value (-1) means other and
1579
+ specifically indicates that the device places no
1580
+ restrictions on this parameter. The value (-2) means
1581
+ unknown."
1582
+ ::= { prtInputEntry 23 }
1583
+
1584
+ -- The Input Switching Group
1585
+ --
1586
+ -- The input switching group allows the administrator to set the
1587
+ -- input subunit time-out for the printer and to control the
1588
+ -- automatic input subunit switching by the printer when an input
1589
+ -- subunit becomes empty.
1590
+
1591
+ prtInputMediaLoadTimeout OBJECT-TYPE
1592
+ SYNTAX Integer32 (-2..2147483647)
1593
+ MAX-ACCESS read-write
1594
+ STATUS current
1595
+ DESCRIPTION
1596
+ "When the printer is not able to print due to a subunit being
1597
+ empty or the requested media must be manually loaded, the
1598
+ printer will wait for the duration (in seconds) specified by
1599
+ this object. Upon expiration of the time-out, the printer will
1600
+ take the action specified by prtInputNextIndex.
1601
+
1602
+ The event which causes the printer to enter the waiting state
1603
+ is product specific. If the printer is not waiting for manually
1604
+ fed media, it may switch from an empty subunit to a different
1605
+ subunit without waiting for the time-out to expire.
1606
+
1607
+ A value of (-1) implies 'other' or 'infinite' which translates
1608
+ to 'wait forever'. The action which causes printing to continue
1609
+ is product specific. A value of (-2) implies 'unknown'."
1610
+ ::= { prtInputEntry 24 }
1611
+
1612
+ prtInputNextIndex OBJECT-TYPE
1613
+ SYNTAX Integer32 (-3..2147483647)
1614
+ MAX-ACCESS read-write
1615
+ STATUS current
1616
+ DESCRIPTION
1617
+ "The value of prtInputIndex corresponding to the input subunit
1618
+ which will be used when this input subunit is emptied and the
1619
+ time-out specified by prtInputMediaLoadTimeout expires. A value
1620
+ of zero(0) indicates that auto input switching will not occur
1621
+ when this input subunit is emptied. If the time-out specified
1622
+ by prtInputLoadMediaTimeout expires and this value is zero(0),
1623
+ the job will be aborted. A value of (-1) means other. The
1624
+ value (-2)means 'unknown' and specifically indicates that an
1625
+ implementation specific method will determine the next input
1626
+ subunit to use at the time this subunit is emptied and the time
1627
+ out expires. The value(-3) means input switching is not
1628
+ supported for this subunit."
1629
+ ::= { prtInputEntry 25 }
1630
+
1631
+ -- The Output Group
1632
+ --
1633
+ -- Output sub-units are managed as a tabular, indexed collection
1634
+ -- of possible devices capable of receiving media delivered from
1635
+ -- the printing process. Output sub-units typically have a
1636
+ -- location, a type, an identifier, a set of constraints on
1637
+ -- possible media sizes and potentially other characteristics,
1638
+ -- and may be capable of indicating current status or capacity.
1639
+
1640
+ prtOutput OBJECT IDENTIFIER ::= { printmib 9 }
1641
+
1642
+ prtOutputTable OBJECT-TYPE
1643
+ SYNTAX SEQUENCE OF PrtOutputEntry
1644
+ MAX-ACCESS not-accessible
1645
+ STATUS current
1646
+ DESCRIPTION
1647
+ "A table of the devices capable of receiving media delivered
1648
+ from the printing process."
1649
+ ::= { prtOutput 2 }
1650
+
1651
+ prtOutputEntry OBJECT-TYPE
1652
+ SYNTAX PrtOutputEntry
1653
+ MAX-ACCESS not-accessible
1654
+ STATUS current
1655
+ DESCRIPTION
1656
+ "Attributes of a device capable of receiving media delivered
1657
+ from the printing process. Entries may exist in the table for
1658
+ each device index with a device type of 'printer'.
1659
+
1660
+ NOTE: The above description has been modified from RFC 1759
1661
+ for clarification."
1662
+ INDEX { hrDeviceIndex, prtOutputIndex }
1663
+ ::= { prtOutputTable 1 }
1664
+
1665
+ PrtOutputEntry ::= SEQUENCE {
1666
+ prtOutputIndex Integer32,
1667
+ prtOutputType PrtOutputTypeTC,
1668
+ prtOutputCapacityUnit PrtCapacityUnitTC,
1669
+ prtOutputMaxCapacity Integer32,
1670
+ prtOutputRemainingCapacity Integer32,
1671
+ prtOutputStatus PrtSubUnitStatusTC,
1672
+ prtOutputName OCTET STRING,
1673
+ prtOutputVendorName OCTET STRING,
1674
+ prtOutputModel OCTET STRING,
1675
+ prtOutputVersion OCTET STRING,
1676
+ prtOutputSerialNumber OCTET STRING,
1677
+ prtOutputDescription PrtLocalizedDescriptionStringTC,
1678
+ prtOutputSecurity PresentOnOff,
1679
+ prtOutputDimUnit PrtMediaUnitTC,
1680
+ prtOutputMaxDimFeedDir Integer32,
1681
+ prtOutputMaxDimXFeedDir Integer32,
1682
+ prtOutputMinDimFeedDir Integer32,
1683
+ prtOutputMinDimXFeedDir Integer32,
1684
+ prtOutputStackingOrder PrtOutputStackingOrderTC,
1685
+ prtOutputPageDeliveryOrientation
1686
+ PrtOutputPageDeliveryOrientationTC,
1687
+ prtOutputBursting PresentOnOff,
1688
+ prtOutputDecollating PresentOnOff,
1689
+ prtOutputPageCollated PresentOnOff,
1690
+ prtOutputOffsetStacking PresentOnOff
1691
+ }
1692
+
1693
+ prtOutputIndex OBJECT-TYPE
1694
+ -- NOTE: In RFC 1759, the range was not defined.
1695
+ SYNTAX Integer32 (1..65535)
1696
+ MAX-ACCESS not-accessible
1697
+ STATUS current
1698
+ DESCRIPTION
1699
+ "A unique value used by this printer to identify this output
1700
+ sub-unit. Although these values may change due to a major
1701
+ reconfiguration of the sub-unit (e.g., the addition of new
1702
+ output devices to the printer), values SHOULD remain stable
1703
+ across successive printer power cycles.
1704
+
1705
+ NOTE: The above description has been modified from RFC 1759
1706
+ for clarification."
1707
+ ::= { prtOutputEntry 1 }
1708
+
1709
+ prtOutputType OBJECT-TYPE
1710
+ -- NOTE: In RFC 1759, the enumeration values were implicitly defined
1711
+ -- by this object.
1712
+ SYNTAX PrtOutputTypeTC
1713
+ MAX-ACCESS read-only
1714
+ STATUS current
1715
+ DESCRIPTION
1716
+ "The type of technology supported by this output sub-unit."
1717
+ ::= { prtOutputEntry 2 }
1718
+
1719
+ prtOutputCapacityUnit OBJECT-TYPE
1720
+ SYNTAX PrtCapacityUnitTC
1721
+ MAX-ACCESS read-only
1722
+ STATUS current
1723
+ DESCRIPTION
1724
+ "The unit of measurement for use in calculating and relaying
1725
+ capacity values for this output sub-unit."
1726
+ ::= { prtOutputEntry 3 }
1727
+
1728
+ prtOutputMaxCapacity OBJECT-TYPE
1729
+ -- NOTE: In RFC 1759, the range was not defined.
1730
+ SYNTAX Integer32 (-2..2147483647)
1731
+ MAX-ACCESS read-write
1732
+ STATUS current
1733
+ DESCRIPTION
1734
+ "The maximum capacity of this output sub-unit in output sub-
1735
+ unit capacity units (PrtCapacityUnitTC). There is no convention
1736
+ associated with the media itself so this value essentially
1737
+ reflects claimed capacity. If this output sub-unit can reliably
1738
+ sense this value, the value is sensed by the printer and may
1739
+ not be changed by management requests; otherwise, the value may
1740
+ be written (by a Remote Control Panel or a Management
1741
+ Application). The value (-1) means other and specifically
1742
+ indicates that the sub-unit places no restrictions on this
1743
+ parameter. The value (-2) means unknown."
1744
+ ::= { prtOutputEntry 4 }
1745
+
1746
+ prtOutputRemainingCapacity OBJECT-TYPE
1747
+ -- NOTE: In RFC 1759, the range was not defined.
1748
+ SYNTAX Integer32 (-3..2147483647)
1749
+ MAX-ACCESS read-write
1750
+ STATUS current
1751
+ DESCRIPTION
1752
+ "The remaining capacity of the possible output sub-unit
1753
+ capacity in output sub-unit capacity units
1754
+ (PrtCapacityUnitTC)of this output sub-unit. If this output sub-
1755
+ unit can reliably sense this value, the value is sensed by the
1756
+ printer and may not be modified by management requests;
1757
+
1758
+ otherwise, the value may be written (by a Remote Control Panel
1759
+ or a Management Application). The value (-1) means other and
1760
+ specifically indicates that the sub-unit places no restrictions
1761
+ on this parameter. The value (-2) means unknown. The value
1762
+ (-3) means that the printer knows that there remains capacity
1763
+ for at least one unit."
1764
+ ::= { prtOutputEntry 5 }
1765
+
1766
+ prtOutputStatus OBJECT-TYPE
1767
+ SYNTAX PrtSubUnitStatusTC
1768
+ MAX-ACCESS read-only
1769
+ STATUS current
1770
+ DESCRIPTION
1771
+ "The current status of this output sub-unit."
1772
+ ::= { prtOutputEntry 6 }
1773
+
1774
+ -- OUTPUT MEASUREMENT
1775
+ --
1776
+ -- _______ | | ________
1777
+ -- ^ | | ^
1778
+ -- | | | |
1779
+ -- | | |RemainingCapacity
1780
+ -- MaxCapacity| | |
1781
+ -- | | | v ^
1782
+ -- | |_ _ _ _ _ _ _ _ | _______________ |direction
1783
+ -- | | Sheets | |
1784
+ -- | | in |
1785
+ -- v | Output |
1786
+ -- _______ +________________+
1787
+
1788
+ -- The Extended Output Group
1789
+
1790
+ prtOutputName OBJECT-TYPE
1791
+ SYNTAX OCTET STRING (SIZE(0..63))
1792
+ MAX-ACCESS read-write
1793
+ STATUS current
1794
+ DESCRIPTION
1795
+ "The name assigned to this output sub-unit."
1796
+ ::= { prtOutputEntry 7 }
1797
+
1798
+ prtOutputVendorName OBJECT-TYPE
1799
+ SYNTAX OCTET STRING (SIZE(0..63))
1800
+ MAX-ACCESS read-only
1801
+ STATUS current
1802
+ DESCRIPTION
1803
+ "The vendor name of this output sub-unit."
1804
+ ::= { prtOutputEntry 8 }
1805
+
1806
+ prtOutputModel OBJECT-TYPE
1807
+ SYNTAX OCTET STRING (SIZE(0..63))
1808
+ MAX-ACCESS read-only
1809
+ STATUS current
1810
+ DESCRIPTION
1811
+ "The model name assigned to this output sub-unit.
1812
+
1813
+ NOTE: The above description has been modified from RFC 1759
1814
+ for clarification."
1815
+ ::= { prtOutputEntry 9 }
1816
+
1817
+ prtOutputVersion OBJECT-TYPE
1818
+ SYNTAX OCTET STRING (SIZE(0..63))
1819
+ MAX-ACCESS read-only
1820
+ STATUS current
1821
+ DESCRIPTION
1822
+ "The version of this output sub-unit."
1823
+ ::= { prtOutputEntry 10 }
1824
+
1825
+ prtOutputSerialNumber OBJECT-TYPE
1826
+ SYNTAX OCTET STRING (SIZE(0..63))
1827
+ MAX-ACCESS read-only
1828
+ STATUS current
1829
+ DESCRIPTION
1830
+ "The serial number assigned to this output sub-unit."
1831
+ ::= { prtOutputEntry 11 }
1832
+
1833
+ prtOutputDescription OBJECT-TYPE
1834
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
1835
+ -- to a TC to better support localization of the object.
1836
+ SYNTAX PrtLocalizedDescriptionStringTC
1837
+ MAX-ACCESS read-only
1838
+ STATUS current
1839
+ DESCRIPTION
1840
+ "A free-form text description of this output sub-unit in the
1841
+ localization specified by prtGeneralCurrentLocalization."
1842
+ ::= { prtOutputEntry 12 }
1843
+
1844
+ prtOutputSecurity OBJECT-TYPE
1845
+ SYNTAX PresentOnOff
1846
+ MAX-ACCESS read-write
1847
+ STATUS current
1848
+ DESCRIPTION
1849
+ "Indicates if this output sub-unit has some security associated
1850
+ with it and if that security is enabled or not."
1851
+ ::= { prtOutputEntry 13 }
1852
+
1853
+ -- The Output Dimensions Group
1854
+
1855
+ prtOutputDimUnit OBJECT-TYPE
1856
+ SYNTAX PrtMediaUnitTC
1857
+ MAX-ACCESS read-only
1858
+ STATUS current
1859
+ DESCRIPTION
1860
+ "The unit of measurement for use in calculating and relaying
1861
+ dimensional values for this output sub-unit."
1862
+ ::= { prtOutputEntry 14 }
1863
+
1864
+ prtOutputMaxDimFeedDir OBJECT-TYPE
1865
+ -- NOTE: In RFC 1759, the range was not defined.
1866
+ SYNTAX Integer32 (-2..2147483647)
1867
+ MAX-ACCESS read-write
1868
+ STATUS current
1869
+ DESCRIPTION
1870
+ "The maximum dimensions supported by this output sub-unit
1871
+ for measurements taken parallel relative to the feed
1872
+ direction associated with that sub-unit in output
1873
+ sub-unit dimensional units (controlled by prtOutputDimUnit,
1874
+ which uses PrtMediaUnitTC). If this output sub-unit can
1875
+ reliably sense this value, the value is sensed by the printer
1876
+ and may not be changed with management protocol operations.
1877
+ The value (-1) means other and specifically indicates that the
1878
+ sub-unit places no restrictions on this parameter. The value
1879
+ (-2) means unknown.
1880
+
1881
+ NOTE: The above description has been modified from RFC 1759
1882
+ for clarification and to explain the purpose of (-1) and (-2)."
1883
+ ::= { prtOutputEntry 15 }
1884
+
1885
+ prtOutputMaxDimXFeedDir OBJECT-TYPE
1886
+ -- NOTE: In RFC 1759, the range was not defined.
1887
+ SYNTAX Integer32 (-2..2147483647)
1888
+ MAX-ACCESS read-write
1889
+ STATUS current
1890
+ DESCRIPTION
1891
+ "The maximum dimensions supported by this output sub-unit
1892
+ for measurements taken ninety degrees relative to the
1893
+ feed direction associated with that sub-unit in output
1894
+ sub-unit dimensional units (controlled by prtOutputDimUnit,
1895
+ which uses PrtMediaUnitTC). If this output sub-unit can
1896
+ reliably sense this value, the value is sensed by the printer
1897
+ and may not be changed with management protocol operations.
1898
+ The value (-1) means other and specifically indicates that the
1899
+ sub-unit places no restrictions on this parameter. The value
1900
+ (-2) means unknown.
1901
+
1902
+ NOTE: The above description has been modified from RFC 1759
1903
+ for clarification and to explain the purpose of (-1) and (-2)."
1904
+ ::= { prtOutputEntry 16 }
1905
+
1906
+ prtOutputMinDimFeedDir OBJECT-TYPE
1907
+ -- NOTE: In RFC 1759, the range was not defined.
1908
+ SYNTAX Integer32 (-2..2147483647)
1909
+ MAX-ACCESS read-write
1910
+ STATUS current
1911
+ DESCRIPTION
1912
+ "The minimum dimensions supported by this output sub-unit
1913
+ for measurements taken parallel relative to the feed
1914
+ direction associated with that sub-unit in output
1915
+ sub-unit dimensional units (controlled by prtOutputDimUnit,
1916
+ which uses PrtMediaUnitTC). If this output sub-unit can
1917
+ reliably sense this value, the value is sensed by the printer
1918
+ and may not be changed with management protocol operations.
1919
+ The value (-1) means other and specifically indicates that the
1920
+ sub-unit places no restrictions on this parameter. The value
1921
+ (-2) means unknown.
1922
+
1923
+ NOTE: The above description has been modified from RFC 1759
1924
+ for clarification and to explain the purpose of (-1) and (-2)."
1925
+ ::= { prtOutputEntry 17 }
1926
+
1927
+ prtOutputMinDimXFeedDir OBJECT-TYPE
1928
+ -- NOTE: In RFC 1759, the range was not defined.
1929
+ SYNTAX Integer32 (-2..2147483647)
1930
+ MAX-ACCESS read-write
1931
+ STATUS current
1932
+ DESCRIPTION
1933
+ "The minimum dimensions supported by this output sub-unit
1934
+ for measurements taken ninety degrees relative to the
1935
+ feed direction associated with that sub-unit in output
1936
+ sub-unit dimensional units (controlled by prtOutputDimUnit,
1937
+ which uses PrtMediaUnitTC). If this output sub-unit can
1938
+ reliably sense this value, the value is sensed by the printer
1939
+ and may not be changed with management protocol operations.
1940
+ The value (-1) means other and specifically indicates that the
1941
+ sub-unit places no restrictions on this parameter. The value
1942
+ (-2) means unknown.
1943
+
1944
+ NOTE: The above description has been modified from RFC 1759
1945
+ for clarification and to explain the purpose of (-1) and (-2)."
1946
+ ::= { prtOutputEntry 18 }
1947
+
1948
+ -- The Output Features Group
1949
+
1950
+ prtOutputStackingOrder OBJECT-TYPE
1951
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
1952
+ -- defined by this object.
1953
+ SYNTAX PrtOutputStackingOrderTC
1954
+ MAX-ACCESS read-write
1955
+ STATUS current
1956
+ DESCRIPTION
1957
+ "The current state of the stacking order for the
1958
+ associated output sub-unit. 'FirstToLast' means
1959
+ that as pages are output the front of the next page is
1960
+ placed against the back of the previous page.
1961
+ 'LasttoFirst' means that as pages are output the back
1962
+ of the next page is placed against the front of the
1963
+ previous page."
1964
+ ::= { prtOutputEntry 19 }
1965
+
1966
+ prtOutputPageDeliveryOrientation OBJECT-TYPE
1967
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
1968
+ -- defined by this object.
1969
+ SYNTAX PrtOutputPageDeliveryOrientationTC
1970
+ MAX-ACCESS read-write
1971
+ STATUS current
1972
+ DESCRIPTION
1973
+ "The reading surface that will be 'up' when pages are
1974
+ delivered to the associated output sub-unit. Values are
1975
+ faceUp and faceDown. (Note: interpretation of these
1976
+ values is in general context-dependent based on locale;
1977
+ presentation of these values to an end-user should be
1978
+ normalized to the expectations of the user)."
1979
+ ::= { prtOutputEntry 20 }
1980
+
1981
+ prtOutputBursting OBJECT-TYPE
1982
+ SYNTAX PresentOnOff
1983
+ MAX-ACCESS read-write
1984
+ STATUS current
1985
+ DESCRIPTION
1986
+ "This object indicates that the outputting sub-unit supports
1987
+ bursting, and if so, whether the feature is enabled. Bursting
1988
+ is the process by which continuous media is separated into
1989
+ individual sheets, typically by bursting along pre-formed
1990
+ perforations."
1991
+ ::= { prtOutputEntry 21 }
1992
+
1993
+ prtOutputDecollating OBJECT-TYPE
1994
+ SYNTAX PresentOnOff
1995
+ MAX-ACCESS read-write
1996
+ STATUS current
1997
+ DESCRIPTION
1998
+ "This object indicates that the output supports decollating,
1999
+ and if so, whether the feature is enabled. Decollating is the
2000
+ process by which the individual parts within a multi-part form
2001
+ are separated and sorted into separate stacks for each part."
2002
+ ::= { prtOutputEntry 22 }
2003
+
2004
+ prtOutputPageCollated OBJECT-TYPE
2005
+ SYNTAX PresentOnOff
2006
+ MAX-ACCESS read-write
2007
+ STATUS current
2008
+ DESCRIPTION
2009
+ "This object indicates that the output sub-unit supports page
2010
+ collation, and if so, whether the feature is enabled. See RFC
2011
+ 3805 Appendix A, Glossary Of Terms, for definition of how this
2012
+ document defines collation.
2013
+
2014
+ NOTE: The above description has been modified from RFC 1759
2015
+ for clarification."
2016
+ ::= { prtOutputEntry 23 }
2017
+
2018
+ prtOutputOffsetStacking OBJECT-TYPE
2019
+ SYNTAX PresentOnOff
2020
+ MAX-ACCESS read-write
2021
+ STATUS current
2022
+ DESCRIPTION
2023
+ "This object indicates that the output supports offset
2024
+ stacking,and if so, whether the feature is enabled. See RFC
2025
+ 3805 Appendix A, Glossary Of Terms, for how Offset Stacking is
2026
+ defined by this document.
2027
+
2028
+ NOTE: The above description has been modified from RFC 1759
2029
+ for clarification."
2030
+ ::= { prtOutputEntry 24 }
2031
+
2032
+ -- The Marker Group
2033
+ --
2034
+ -- A marker is the mechanism that produces marks on the print
2035
+ -- media. The marker sub-units and their associated supplies are
2036
+ -- represented by the Marker Group in the model. A printer can
2037
+ -- contain one or more marking mechanisms. Some examples of
2038
+ -- multiple marker sub-units are: a printer
2039
+ -- with separate markers for normal and magnetic ink or an
2040
+ -- imagesetter that can output to both a proofing device and
2041
+ -- final film. Each marking device can have its own set of
2042
+ -- characteristics associated with it, such as marking technology
2043
+ -- and resolution.
2044
+
2045
+ prtMarker OBJECT IDENTIFIER ::= { printmib 10 }
2046
+
2047
+ -- The printable area margins as listed below define an area of
2048
+ -- the print media which is guaranteed to be printable for all
2049
+ -- combinations of input, media paths, and interpreters for this
2050
+ -- marker.
2051
+
2052
+ prtMarkerTable OBJECT-TYPE
2053
+ SYNTAX SEQUENCE OF PrtMarkerEntry
2054
+ MAX-ACCESS not-accessible
2055
+ STATUS current
2056
+ DESCRIPTION
2057
+ "The marker table provides a description of each marker
2058
+ sub-unit contained within the printer.
2059
+
2060
+ NOTE: The above description has been modified from RFC 1759
2061
+ for clarification."
2062
+ ::= { prtMarker 2 }
2063
+
2064
+ prtMarkerEntry OBJECT-TYPE
2065
+ SYNTAX PrtMarkerEntry
2066
+ MAX-ACCESS not-accessible
2067
+ STATUS current
2068
+ DESCRIPTION
2069
+ "Entries in this table define the characteristics and status
2070
+ of each marker sub-unit in the printer.
2071
+
2072
+ NOTE: The above description has been modified from RFC 1759
2073
+ for clarification."
2074
+ INDEX { hrDeviceIndex, prtMarkerIndex }
2075
+ ::= { prtMarkerTable 1 }
2076
+
2077
+ PrtMarkerEntry ::= SEQUENCE {
2078
+ prtMarkerIndex Integer32,
2079
+ prtMarkerMarkTech PrtMarkerMarkTechTC,
2080
+ prtMarkerCounterUnit PrtMarkerCounterUnitTC,
2081
+ prtMarkerLifeCount Counter32,
2082
+ prtMarkerPowerOnCount Counter32,
2083
+ prtMarkerProcessColorants Integer32,
2084
+ prtMarkerSpotColorants Integer32,
2085
+ prtMarkerAddressabilityUnit PrtMarkerAddressabilityUnitTC,
2086
+ prtMarkerAddressabilityFeedDir Integer32,
2087
+ prtMarkerAddressabilityXFeedDir Integer32,
2088
+ prtMarkerNorthMargin Integer32,
2089
+ prtMarkerSouthMargin Integer32,
2090
+ prtMarkerWestMargin Integer32,
2091
+ prtMarkerEastMargin Integer32,
2092
+ prtMarkerStatus PrtSubUnitStatusTC
2093
+
2094
+ }
2095
+
2096
+ prtMarkerIndex OBJECT-TYPE
2097
+ SYNTAX Integer32 (1..65535)
2098
+ MAX-ACCESS not-accessible
2099
+ STATUS current
2100
+ DESCRIPTION
2101
+ "A unique value used by the printer to identify this marking
2102
+ SubUnit. Although these values may change due to a major
2103
+ reconfiguration of the device (e.g., the addition of new marking
2104
+ sub-units to the printer), values SHOULD remain stable across
2105
+ successive printer power cycles.
2106
+
2107
+ NOTE: The above description has been modified from RFC 1759
2108
+ for clarification."
2109
+ ::= { prtMarkerEntry 1 }
2110
+
2111
+ prtMarkerMarkTech OBJECT-TYPE
2112
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2113
+ -- defined by this object.
2114
+ SYNTAX PrtMarkerMarkTechTC
2115
+ MAX-ACCESS read-only
2116
+ STATUS current
2117
+ DESCRIPTION
2118
+ "The type of marking technology used for this marking
2119
+ sub-unit."
2120
+ ::= { prtMarkerEntry 2 }
2121
+
2122
+ prtMarkerCounterUnit OBJECT-TYPE
2123
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2124
+ -- defined by this object.
2125
+ SYNTAX PrtMarkerCounterUnitTC
2126
+ MAX-ACCESS read-only
2127
+ STATUS current
2128
+ DESCRIPTION
2129
+ "The unit that will be used by the printer when reporting
2130
+ counter values for this marking sub-unit. The time units of
2131
+ measure are provided for a device like a strip recorder that
2132
+ does not or cannot track the physical dimensions of the media
2133
+ and does not use characters, lines or sheets."
2134
+ ::= { prtMarkerEntry 3 }
2135
+
2136
+ prtMarkerLifeCount OBJECT-TYPE
2137
+ SYNTAX Counter32
2138
+ MAX-ACCESS read-only
2139
+ STATUS current
2140
+ DESCRIPTION
2141
+ "The count of the number of units of measure counted during the
2142
+
2143
+ life of printer using units of measure as specified by
2144
+ prtMarkerCounterUnit.
2145
+
2146
+ Note: This object should be implemented as a persistent object
2147
+ with a reliable value throughout the lifetime of the printer."
2148
+ ::= { prtMarkerEntry 4 }
2149
+
2150
+ prtMarkerPowerOnCount OBJECT-TYPE
2151
+ SYNTAX Counter32
2152
+ MAX-ACCESS read-only
2153
+ STATUS current
2154
+ DESCRIPTION
2155
+ "The count of the number of units of measure counted since the
2156
+ equipment was most recently powered on using units of measure
2157
+ as specified by prtMarkerCounterUnit."
2158
+ ::= { prtMarkerEntry 5 }
2159
+
2160
+ prtMarkerProcessColorants OBJECT-TYPE
2161
+ SYNTAX Integer32 (0..65535)
2162
+ MAX-ACCESS read-only
2163
+ STATUS current
2164
+ DESCRIPTION
2165
+ "The number of process colors supported by this marker. A
2166
+ process color of 1 implies monochrome. The value of this
2167
+ object and prtMarkerSpotColorants cannot both be 0. The value
2168
+ of prtMarkerProcessColorants must be 0 or greater.
2169
+
2170
+ NOTE: The above description has been modified from RFC 1759
2171
+ for clarification."
2172
+ ::= { prtMarkerEntry 6 }
2173
+
2174
+ prtMarkerSpotColorants OBJECT-TYPE
2175
+ SYNTAX Integer32 (0..65535)
2176
+ MAX-ACCESS read-only
2177
+ STATUS current
2178
+ DESCRIPTION
2179
+ "The number of spot colors supported by this marker. The value
2180
+ of this object and prtMarkerProcessColorants cannot both be 0.
2181
+ Must be 0 or greater.
2182
+
2183
+ NOTE: The above description has been modified from RFC 1759
2184
+ for clarification."
2185
+ ::= { prtMarkerEntry 7 }
2186
+
2187
+ prtMarkerAddressabilityUnit OBJECT-TYPE
2188
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2189
+ -- defined by this object.
2190
+ SYNTAX PrtMarkerAddressabilityUnitTC
2191
+ MAX-ACCESS read-only
2192
+ STATUS current
2193
+ DESCRIPTION
2194
+ "The unit of measure of distances, as applied to the marker's
2195
+ resolution.
2196
+
2197
+ NOTE: The above description has been modified from RFC 1759
2198
+ for clarification."
2199
+ ::= { prtMarkerEntry 8 }
2200
+
2201
+ prtMarkerAddressabilityFeedDir OBJECT-TYPE
2202
+ -- NOTE: In RFC 1759, the range was not defined.
2203
+ SYNTAX Integer32 (-2..2147483647)
2204
+ MAX-ACCESS read-only
2205
+ STATUS current
2206
+ DESCRIPTION
2207
+ "The maximum number of addressable marking positions in the
2208
+ feed direction per 10000 units of measure specified by
2209
+ prtMarkerAddressabilityUnit. A value of (-1) implies 'other'
2210
+ or 'infinite' while a value of (-2) implies 'unknown'.
2211
+
2212
+ NOTE: The above description has been modified from RFC 1759
2213
+ for clarification."
2214
+ ::= { prtMarkerEntry 9 }
2215
+
2216
+ prtMarkerAddressabilityXFeedDir OBJECT-TYPE
2217
+ -- NOTE: In RFC 1759, the range was not defined.
2218
+ SYNTAX Integer32 (-2..2147483647)
2219
+ MAX-ACCESS read-only
2220
+ STATUS current
2221
+ DESCRIPTION
2222
+ "The maximum number of addressable marking positions in the
2223
+ cross feed direction in 10000 units of measure specified by
2224
+ prtMarkerAddressabilityUnit. A value of (-1) implies 'other'
2225
+ or 'infinite' while a value of (-2) implies 'unknown'.
2226
+
2227
+ NOTE: The above description has been modified from RFC 1759
2228
+ for clarification."
2229
+ ::= { prtMarkerEntry 10 }
2230
+
2231
+ prtMarkerNorthMargin OBJECT-TYPE
2232
+ -- NOTE: In RFC 1759, the range was not defined.
2233
+ SYNTAX Integer32 (-2..2147483647)
2234
+ MAX-ACCESS read-only
2235
+ STATUS current
2236
+ DESCRIPTION
2237
+ "The margin, in units identified by prtMarkerAddressabilityUnit,
2238
+ from the leading edge of the medium as the medium flows through
2239
+
2240
+ the marking engine with the side to be imaged facing the
2241
+ observer. The leading edge is the North edge and the other
2242
+ edges are defined by the normal compass layout of directions
2243
+ with the compass facing the observer. Printing within the area
2244
+ bounded by all four margins is guaranteed for all interpreters.
2245
+ The value (-2) means unknown."
2246
+ ::= { prtMarkerEntry 11 }
2247
+
2248
+ prtMarkerSouthMargin OBJECT-TYPE
2249
+ -- NOTE: In RFC 1759, the range was not defined.
2250
+ SYNTAX Integer32 (-2..2147483647)
2251
+ MAX-ACCESS read-only
2252
+ STATUS current
2253
+ DESCRIPTION
2254
+ "The margin from the South edge (see prtMarkerNorthMargin) of
2255
+ the medium in units identified by prtMarkerAddressabilityUnit.
2256
+ Printing within the area bounded by all four margins is
2257
+ guaranteed for all interpreters. The value (-2) means unknown."
2258
+ ::= { prtMarkerEntry 12 }
2259
+
2260
+ prtMarkerWestMargin OBJECT-TYPE
2261
+ -- NOTE: In RFC 1759, the range was not defined.
2262
+ SYNTAX Integer32 (-2..2147483647)
2263
+ MAX-ACCESS read-only
2264
+ STATUS current
2265
+ DESCRIPTION
2266
+ "The margin from the West edge (see prtMarkerNorthMargin) of
2267
+ the medium in units identified by prtMarkerAddressabilityUnit.
2268
+ Printing within the area bounded by all four margins is
2269
+ guaranteed for all interpreters. The value (-2) means unknown."
2270
+ ::= { prtMarkerEntry 13 }
2271
+
2272
+ prtMarkerEastMargin OBJECT-TYPE
2273
+ -- NOTE: In RFC 1759, the range was not defined.
2274
+ SYNTAX Integer32 (-2..2147483647)
2275
+ MAX-ACCESS read-only
2276
+ STATUS current
2277
+ DESCRIPTION
2278
+ "The margin from the East edge (see prtMarkerNorthMargin) of
2279
+ the medium in units identified by prtMarkerAddressabilityUnit.
2280
+ Printing within the area bounded by all four margins is
2281
+ guaranteed for all interpreters. The value (-2) means unknown."
2282
+ ::= { prtMarkerEntry 14 }
2283
+
2284
+ prtMarkerStatus OBJECT-TYPE
2285
+ SYNTAX PrtSubUnitStatusTC
2286
+ MAX-ACCESS read-only
2287
+ STATUS current
2288
+ DESCRIPTION
2289
+ "The current status of this marker sub-unit."
2290
+ ::= { prtMarkerEntry 15 }
2291
+
2292
+ -- The Marker Supplies Group
2293
+
2294
+ prtMarkerSupplies OBJECT IDENTIFIER ::= { printmib 11 }
2295
+
2296
+ prtMarkerSuppliesTable OBJECT-TYPE
2297
+ SYNTAX SEQUENCE OF PrtMarkerSuppliesEntry
2298
+ MAX-ACCESS not-accessible
2299
+ STATUS current
2300
+ DESCRIPTION
2301
+ "A table of the marker supplies available on this printer."
2302
+ ::= { prtMarkerSupplies 1 }
2303
+
2304
+ prtMarkerSuppliesEntry OBJECT-TYPE
2305
+ SYNTAX PrtMarkerSuppliesEntry
2306
+ MAX-ACCESS not-accessible
2307
+ STATUS current
2308
+ DESCRIPTION
2309
+ "Attributes of a marker supply. Entries may exist in the table
2310
+ for each device index with a device type of 'printer'.
2311
+
2312
+ NOTE: The above description has been modified from RFC 1759
2313
+ for clarification."
2314
+ INDEX { hrDeviceIndex, prtMarkerSuppliesIndex }
2315
+ ::= { prtMarkerSuppliesTable 1 }
2316
+ PrtMarkerSuppliesEntry ::= SEQUENCE {
2317
+ prtMarkerSuppliesIndex Integer32,
2318
+ prtMarkerSuppliesMarkerIndex Integer32,
2319
+ prtMarkerSuppliesColorantIndex Integer32,
2320
+ prtMarkerSuppliesClass PrtMarkerSuppliesClassTC,
2321
+ prtMarkerSuppliesType PrtMarkerSuppliesTypeTC,
2322
+ prtMarkerSuppliesDescription PrtLocalizedDescriptionStringTC,
2323
+ prtMarkerSuppliesSupplyUnit PrtMarkerSuppliesSupplyUnitTC,
2324
+ prtMarkerSuppliesMaxCapacity Integer32,
2325
+ prtMarkerSuppliesLevel Integer32
2326
+ }
2327
+
2328
+ prtMarkerSuppliesIndex OBJECT-TYPE
2329
+ SYNTAX Integer32 (1..65535)
2330
+ MAX-ACCESS not-accessible
2331
+ STATUS current
2332
+ DESCRIPTION
2333
+ "A unique value used by the printer to identify this marker
2334
+ supply. Although these values may change due to a major
2335
+ reconfiguration of the device (e.g., the addition of new marker
2336
+
2337
+ supplies to the printer), values SHOULD remain stable across
2338
+ successive printer power cycles.
2339
+
2340
+ NOTE: The above description has been modified from RFC 1759
2341
+ for clarification."
2342
+ ::= { prtMarkerSuppliesEntry 1 }
2343
+
2344
+ prtMarkerSuppliesMarkerIndex OBJECT-TYPE
2345
+ SYNTAX Integer32 (0..65535)
2346
+ MAX-ACCESS read-only
2347
+ STATUS current
2348
+ DESCRIPTION
2349
+ "The value of prtMarkerIndex corresponding to the marking sub
2350
+ unit with which this marker supply sub-unit is associated."
2351
+ ::= { prtMarkerSuppliesEntry 2 }
2352
+
2353
+ prtMarkerSuppliesColorantIndex OBJECT-TYPE
2354
+ SYNTAX Integer32 (0..65535)
2355
+ MAX-ACCESS read-only
2356
+ STATUS current
2357
+ DESCRIPTION
2358
+ "The value of prtMarkerColorantIndex corresponding to the
2359
+ colorant with which this marker supply sub-unit is associated.
2360
+ This value shall be 0 if there is no colorant table or if this
2361
+ supply does not depend on a single specified colorant.
2362
+ NOTE: The above description has been modified from RFC 1759
2363
+ for clarification."
2364
+ ::= { prtMarkerSuppliesEntry 3 }
2365
+
2366
+ prtMarkerSuppliesClass OBJECT-TYPE
2367
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2368
+ -- defined by this object.
2369
+ SYNTAX PrtMarkerSuppliesClassTC
2370
+ MAX-ACCESS read-only
2371
+ STATUS current
2372
+ DESCRIPTION
2373
+ "Indicates whether this supply entity represents a supply that
2374
+ is consumed or a receptacle that is filled.
2375
+
2376
+ NOTE: The above description has been modified from RFC 1759
2377
+ for clarification."
2378
+ ::= { prtMarkerSuppliesEntry 4 }
2379
+
2380
+ prtMarkerSuppliesType OBJECT-TYPE
2381
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2382
+ -- defined by this object.
2383
+ SYNTAX PrtMarkerSuppliesTypeTC
2384
+ MAX-ACCESS read-only
2385
+ STATUS current
2386
+ DESCRIPTION
2387
+ "The type of this supply."
2388
+ ::= { prtMarkerSuppliesEntry 5 }
2389
+
2390
+ prtMarkerSuppliesDescription OBJECT-TYPE
2391
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
2392
+ -- to a TC to better support localization of the object.
2393
+ SYNTAX PrtLocalizedDescriptionStringTC
2394
+ MAX-ACCESS read-only
2395
+ STATUS current
2396
+ DESCRIPTION
2397
+ "The description of this supply container/receptacle in the
2398
+ localization specified by prtGeneralCurrentLocalization."
2399
+ ::= { prtMarkerSuppliesEntry 6 }
2400
+
2401
+ prtMarkerSuppliesSupplyUnit OBJECT-TYPE
2402
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2403
+ -- defined by this object.
2404
+ SYNTAX PrtMarkerSuppliesSupplyUnitTC
2405
+ MAX-ACCESS read-only
2406
+ STATUS current
2407
+ DESCRIPTION
2408
+ "Unit of measure of this marker supply container/receptacle.
2409
+
2410
+ NOTE: The above description has been modified from RFC 1759
2411
+ for clarification."
2412
+ ::= { prtMarkerSuppliesEntry 7 }
2413
+
2414
+ prtMarkerSuppliesMaxCapacity OBJECT-TYPE
2415
+ -- NOTE: In RFC 1759, the range was not defined.
2416
+ SYNTAX Integer32 (-2..2147483647)
2417
+ MAX-ACCESS read-write
2418
+ STATUS current
2419
+ DESCRIPTION
2420
+ "The maximum capacity of this supply container/receptacle
2421
+ expressed in prtMarkerSuppliesSupplyUnit. If this supply
2422
+ container/receptacle can reliably sense this value, the value
2423
+ is reported by the printer and is read-only; otherwise, the
2424
+ value may be written (by a Remote Control Panel or a Management
2425
+ Application). The value (-1) means other and specifically
2426
+ indicates that the sub-unit places no restrictions on this
2427
+ parameter. The value (-2) means unknown."
2428
+ ::= { prtMarkerSuppliesEntry 8 }
2429
+
2430
+ prtMarkerSuppliesLevel OBJECT-TYPE
2431
+ -- NOTE: In RFC 1759, the range was not defined.
2432
+ SYNTAX Integer32 (-3..2147483647)
2433
+ MAX-ACCESS read-write
2434
+ STATUS current
2435
+ DESCRIPTION
2436
+ "The current level if this supply is a container; the remaining
2437
+ space if this supply is a receptacle. If this supply
2438
+ container/receptacle can reliably sense this value, the value
2439
+ is reported by the printer and is read-only; otherwise, the
2440
+ value may be written (by a Remote Control Panel or a Management
2441
+ Application). The value (-1) means other and specifically
2442
+ indicates that the sub-unit places no restrictions on this
2443
+ parameter. The value (-2) means unknown. A value of (-3) means
2444
+ that the printer knows that there is some supply/remaining
2445
+ space, respectively."
2446
+ ::= { prtMarkerSuppliesEntry 9 }
2447
+
2448
+ -- The Marker Colorant Group
2449
+
2450
+ prtMarkerColorant OBJECT IDENTIFIER ::= { printmib 12 }
2451
+
2452
+ prtMarkerColorantTable OBJECT-TYPE
2453
+ SYNTAX SEQUENCE OF PrtMarkerColorantEntry
2454
+ MAX-ACCESS not-accessible
2455
+ STATUS current
2456
+ DESCRIPTION
2457
+ "A table of all of the colorants available on the printer."
2458
+ ::= { prtMarkerColorant 1 }
2459
+
2460
+ prtMarkerColorantEntry OBJECT-TYPE
2461
+ SYNTAX PrtMarkerColorantEntry
2462
+ MAX-ACCESS not-accessible
2463
+ STATUS current
2464
+ DESCRIPTION
2465
+ "Attributes of a colorant available on the printer. Entries may
2466
+ exist in the table for each device index with a device type of
2467
+ 'printer'.
2468
+
2469
+ NOTE: The above description has been modified from RFC 1759
2470
+ for clarification."
2471
+ INDEX { hrDeviceIndex, prtMarkerColorantIndex }
2472
+ ::= { prtMarkerColorantTable 1 }
2473
+
2474
+ PrtMarkerColorantEntry ::= SEQUENCE {
2475
+ prtMarkerColorantIndex Integer32,
2476
+ prtMarkerColorantMarkerIndex Integer32,
2477
+ prtMarkerColorantRole PrtMarkerColorantRoleTC,
2478
+ prtMarkerColorantValue OCTET STRING,
2479
+ prtMarkerColorantTonality Integer32
2480
+ }
2481
+
2482
+ prtMarkerColorantIndex OBJECT-TYPE
2483
+ SYNTAX Integer32 (1..65535)
2484
+ MAX-ACCESS not-accessible
2485
+ STATUS current
2486
+ DESCRIPTION
2487
+ "A unique value used by the printer to identify this colorant.
2488
+ Although these values may change due to a major reconfiguration
2489
+ of the device (e.g., the addition of new colorants to the
2490
+ printer) , values SHOULD remain stable across successive
2491
+ printer power cycles.
2492
+
2493
+ NOTE: The above description has been modified from RFC 1759
2494
+ for clarification."
2495
+ ::= { prtMarkerColorantEntry 1 }
2496
+
2497
+ prtMarkerColorantMarkerIndex OBJECT-TYPE
2498
+ SYNTAX Integer32 (0..65535)
2499
+ MAX-ACCESS read-only
2500
+ STATUS current
2501
+ DESCRIPTION
2502
+ "The value of prtMarkerIndex corresponding to the marker sub
2503
+ unit with which this colorant entry is associated."
2504
+ ::= { prtMarkerColorantEntry 2 }
2505
+
2506
+ prtMarkerColorantRole OBJECT-TYPE
2507
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2508
+ -- defined by this object.
2509
+ SYNTAX PrtMarkerColorantRoleTC
2510
+ MAX-ACCESS read-only
2511
+ STATUS current
2512
+ DESCRIPTION
2513
+ "The role played by this colorant."
2514
+ ::= { prtMarkerColorantEntry 3 }
2515
+
2516
+ prtMarkerColorantValue OBJECT-TYPE
2517
+ -- NOTE: The string length range has been increased from RFC 1759.
2518
+ SYNTAX OCTET STRING (SIZE(0..255))
2519
+ MAX-ACCESS read-only
2520
+ STATUS current
2521
+ DESCRIPTION
2522
+ "The name of the color of this colorant using standardized
2523
+ string names from ISO 10175 (DPA) and ISO 10180 (SPDL) such as:
2524
+ other
2525
+ unknown
2526
+ white
2527
+ red
2528
+ green
2529
+ blue
2530
+
2531
+ cyan
2532
+ magenta
2533
+ yellow
2534
+ black
2535
+ Implementers may add additional string values. The naming
2536
+ conventions in ISO 9070 are recommended in order to avoid
2537
+ potential name clashes"
2538
+ ::= { prtMarkerColorantEntry 4 }
2539
+
2540
+ prtMarkerColorantTonality OBJECT-TYPE
2541
+ -- NOTE: In RFC 1759, the range was not defined.
2542
+ SYNTAX Integer32 (2..2147483647)
2543
+ MAX-ACCESS read-only
2544
+ STATUS current
2545
+ DESCRIPTION
2546
+ "The distinct levels of tonality realizable by a marking sub
2547
+ unit when using this colorant. This value does not include the
2548
+ number of levels of tonal difference that an interpreter can
2549
+ obtain by techniques such as half toning. This value must be at
2550
+ least 2."
2551
+ ::= { prtMarkerColorantEntry 5 }
2552
+
2553
+ -- The Media Path Group
2554
+ --
2555
+ -- The media paths encompass the mechanisms in the printer that
2556
+ -- move the media through the printer and connect all other media
2557
+ -- related sub-units: inputs, outputs, markers and finishers. A
2558
+ -- printer contains one or more media paths. These are
2559
+ -- represented by the Media Path Group in the model.
2560
+
2561
+ prtMediaPath OBJECT IDENTIFIER ::= { printmib 13 }
2562
+
2563
+ prtMediaPathTable OBJECT-TYPE
2564
+ SYNTAX SEQUENCE OF PrtMediaPathEntry
2565
+ MAX-ACCESS not-accessible
2566
+ STATUS current
2567
+ DESCRIPTION
2568
+ "The media path table includes both physical and logical paths
2569
+ within the printer.
2570
+
2571
+ NOTE: The above description has been modified from RFC 1759
2572
+ for clarification."
2573
+ ::= { prtMediaPath 4 }
2574
+
2575
+ prtMediaPathEntry OBJECT-TYPE
2576
+ SYNTAX PrtMediaPathEntry
2577
+ MAX-ACCESS not-accessible
2578
+ STATUS current
2579
+ DESCRIPTION
2580
+ "Entries may exist in the table for each device index with a
2581
+ device type of 'printer' Each entry defines the physical
2582
+ characteristics of and the status of the media path. The data
2583
+ provided indicates the maximum throughput and the media
2584
+ size limitations of these subunits.
2585
+
2586
+ NOTE: The above description has been modified from RFC 1759
2587
+ for clarification."
2588
+ INDEX { hrDeviceIndex, prtMediaPathIndex }
2589
+ ::= { prtMediaPathTable 1 }
2590
+
2591
+ PrtMediaPathEntry ::= SEQUENCE {
2592
+ prtMediaPathIndex Integer32,
2593
+ prtMediaPathMaxSpeedPrintUnit PrtMediaPathMaxSpeedPrintUnitTC,
2594
+ prtMediaPathMediaSizeUnit PrtMediaUnitTC,
2595
+ prtMediaPathMaxSpeed Integer32,
2596
+ prtMediaPathMaxMediaFeedDir Integer32,
2597
+ prtMediaPathMaxMediaXFeedDir Integer32,
2598
+ prtMediaPathMinMediaFeedDir Integer32,
2599
+ prtMediaPathMinMediaXFeedDir Integer32,
2600
+ prtMediaPathType PrtMediaPathTypeTC,
2601
+ prtMediaPathDescription PrtLocalizedDescriptionStringTC,
2602
+ prtMediaPathStatus PrtSubUnitStatusTC
2603
+ }
2604
+
2605
+ prtMediaPathIndex OBJECT-TYPE
2606
+ SYNTAX Integer32 (1..65535)
2607
+ MAX-ACCESS not-accessible
2608
+ STATUS current
2609
+ DESCRIPTION
2610
+ "A unique value used by the printer to identify this media
2611
+ path. Although these values may change due to a major
2612
+ reconfiguration of the device (e.g., the addition of new media
2613
+ paths to the printer), values SHOULD remain stable across
2614
+ successive printer power cycles.
2615
+
2616
+ NOTE: The above description has been modified from RFC 1759
2617
+ for clarification."
2618
+ ::= { prtMediaPathEntry 1 }
2619
+
2620
+ prtMediaPathMaxSpeedPrintUnit OBJECT-TYPE
2621
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2622
+ -- defined by this object.
2623
+ SYNTAX PrtMediaPathMaxSpeedPrintUnitTC
2624
+ MAX-ACCESS read-only
2625
+ STATUS current
2626
+ DESCRIPTION
2627
+ "The unit of measure used in specifying the speed of all media
2628
+ paths in the printer."
2629
+ ::= { prtMediaPathEntry 2 }
2630
+
2631
+ prtMediaPathMediaSizeUnit OBJECT-TYPE
2632
+ SYNTAX PrtMediaUnitTC
2633
+ MAX-ACCESS read-only
2634
+ STATUS current
2635
+ DESCRIPTION
2636
+ "The units of measure of media size for use in calculating and
2637
+ relaying dimensional values for all media paths in the
2638
+ printer."
2639
+ ::= { prtMediaPathEntry 3 }
2640
+
2641
+ prtMediaPathMaxSpeed OBJECT-TYPE
2642
+ -- NOTE: In RFC 1759, the range was not defined.
2643
+ SYNTAX Integer32 (-2..2147483647)
2644
+ MAX-ACCESS read-only
2645
+ STATUS current
2646
+ DESCRIPTION
2647
+ "The maximum printing speed of this media path expressed in
2648
+ prtMediaPathMaxSpeedUnit's. A value of (-1) implies 'other'."
2649
+ ::= { prtMediaPathEntry 4 }
2650
+
2651
+ prtMediaPathMaxMediaFeedDir OBJECT-TYPE
2652
+ -- NOTE: In RFC 1759, the range was not defined.
2653
+ SYNTAX Integer32 (-2..2147483647)
2654
+ MAX-ACCESS read-only
2655
+ STATUS current
2656
+ DESCRIPTION
2657
+ "The maximum physical media size in the feed direction of this
2658
+ media path expressed in units of measure specified by
2659
+ PrtMediaPathMediaSizeUnit. A value of (-1) implies 'unlimited'
2660
+ a value of (-2) implies 'unknown'.
2661
+
2662
+ NOTE: The above description has been modified from RFC 1759
2663
+ for clarification."
2664
+ ::= { prtMediaPathEntry 5 }
2665
+
2666
+ prtMediaPathMaxMediaXFeedDir OBJECT-TYPE
2667
+ -- NOTE: In RFC 1759, the range was not defined.
2668
+ SYNTAX Integer32 (-2..2147483647)
2669
+ MAX-ACCESS read-only
2670
+ STATUS current
2671
+ DESCRIPTION
2672
+ "The maximum physical media size across the feed direction of
2673
+ this media path expressed in units of measure specified by
2674
+ prtMediaPathMediaSizeUnit. A value of (-2) implies 'unknown'.
2675
+
2676
+ NOTE: The above description has been modified from RFC 1759
2677
+ for clarification."
2678
+ ::= { prtMediaPathEntry 6 }
2679
+
2680
+ prtMediaPathMinMediaFeedDir OBJECT-TYPE
2681
+ -- NOTE: In RFC 1759, the range was not defined.
2682
+ SYNTAX Integer32 (-2..2147483647)
2683
+ MAX-ACCESS read-only
2684
+ STATUS current
2685
+ DESCRIPTION
2686
+ "The minimum physical media size in the feed direction of this
2687
+ media path expressed in units of measure specified by
2688
+ prtMediaPathMediaSizeUnit. A value of (-2) implies 'unknown'.
2689
+
2690
+ NOTE: The above description has been modified from RFC 1759
2691
+ for clarification."
2692
+ ::= { prtMediaPathEntry 7 }
2693
+
2694
+ prtMediaPathMinMediaXFeedDir OBJECT-TYPE
2695
+ -- NOTE: In RFC 1759, the range was not defined.
2696
+ SYNTAX Integer32 (-2..2147483647)
2697
+ MAX-ACCESS read-only
2698
+ STATUS current
2699
+ DESCRIPTION
2700
+ "The minimum physical media size across the feed direction of
2701
+ this media path expressed in units of measure specified by
2702
+ prtMediaPathMediaSizeUnit. A value of (-2) implies 'unknown'.
2703
+
2704
+ NOTE: The above description has been modified from RFC 1759
2705
+ for clarification."
2706
+ ::= { prtMediaPathEntry 8 }
2707
+
2708
+ prtMediaPathType OBJECT-TYPE
2709
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2710
+ -- defined by this object.
2711
+ SYNTAX PrtMediaPathTypeTC
2712
+ MAX-ACCESS read-only
2713
+ STATUS current
2714
+ DESCRIPTION
2715
+ "The type of the media path for this media path."
2716
+ ::= { prtMediaPathEntry 9 }
2717
+
2718
+ prtMediaPathDescription OBJECT-TYPE
2719
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
2720
+ -- to a TC to better support localization of the object.
2721
+ SYNTAX PrtLocalizedDescriptionStringTC
2722
+ MAX-ACCESS read-only
2723
+ STATUS current
2724
+ DESCRIPTION
2725
+ "The manufacturer-provided description of this media path in
2726
+ the localization specified by prtGeneralCurrentLocalization."
2727
+ ::= { prtMediaPathEntry 10 }
2728
+
2729
+ prtMediaPathStatus OBJECT-TYPE
2730
+ SYNTAX PrtSubUnitStatusTC
2731
+ MAX-ACCESS read-only
2732
+ STATUS current
2733
+ DESCRIPTION
2734
+ "The current status of this media path."
2735
+ ::= { prtMediaPathEntry 11 }
2736
+
2737
+ -- The Print Job Delivery Channel Group
2738
+ --
2739
+ -- Print Job Delivery Channels are independent sources of print
2740
+ -- data. Here, print data is the term used for the information
2741
+ -- that is used to construct printed pages and may have both data
2742
+ -- and control aspects. The output of a channel is in a form
2743
+ -- suitable for input to one of the interpreters as a
2744
+ -- stream. A channel may be independently enabled (allowing
2745
+ -- print data to flow) or disabled (stopping the flow of
2746
+ -- print data). A printer may have one or more channels.
2747
+ --
2748
+ -- The Print Job Delivery Channel table describes the
2749
+ -- capabilities of the printer and not what is currently being
2750
+ -- performed by the printer
2751
+ --
2752
+ -- Basically, the print job delivery channel abstraction
2753
+ -- describes the final processing step of getting the print data
2754
+ -- to an interpreter. It might include some level of
2755
+ -- decompression or decoding of print stream data.
2756
+ -- channel. All of these aspects are hidden in the channel
2757
+ -- abstraction.
2758
+ --
2759
+ -- There are many kinds of print job delivery channels; some of
2760
+ -- which are based on networks and others which are not. For
2761
+ -- example, a channel can be a serial (or parallel) connection;
2762
+ -- it can be a service, such as the UNIX Line Printer Daemon
2763
+ -- (LPD), offering services over a network connection; or
2764
+ -- it could be a disk drive into which a floppy disk with
2765
+ -- the print data is inserted. Each print job delivery channel is
2766
+ -- identified by the electronic path and/or service protocol
2767
+ -- used to deliver print data to a print data interpreter.
2768
+ --
2769
+ -- Channel example Implementation
2770
+ --
2771
+ -- serial port channel bi-directional data channel
2772
+
2773
+ -- parallel port channel often uni-directional channel
2774
+ -- IEEE 1284 port channel bi-directional channel
2775
+ -- SCSI port channel bi-directional
2776
+ -- Apple PAP channel may be based on LocalTalk,
2777
+ -- Ethernet or Tokentalk
2778
+ -- LPD Server channel TCP/IP based, port 515
2779
+ -- Netware Remote Printer SPX/IPX based channel
2780
+ -- Netware Print Server SPX/IPX based channel
2781
+ --
2782
+ -- It is easy to note that this is a mixed bag. There are
2783
+ -- some physical connections over which no (or very meager)
2784
+ -- protocols are run (e.g., the serial or old parallel ports)
2785
+ -- and there are services which often have elaborate
2786
+ -- protocols that run over a number of protocol stacks. In
2787
+ -- the end, what is important is the delivery of print data
2788
+ -- through the channel.
2789
+ --
2790
+ -- The print job delivery channel sub-units are represented by
2791
+ -- the Print Job Delivery Channel Group in the Model. It has a
2792
+ -- current print job control language, which can be used to
2793
+ -- specify which interpreter is to be used for the print data and
2794
+ -- to query and change environment variables used by the
2795
+ -- interpreters (and Management Applications). There is also a
2796
+ -- default interpreter that is to be used if an interpreter is
2797
+ -- not explicitly specified using the Control Language.
2798
+
2799
+ -- The first seven items in the Print Job Delivery Channel Table
2800
+ -- define the "channel" itself. A channel typically depends on
2801
+ -- other protocols and interfaces to provide the data that flows
2802
+ -- through the channel.
2803
+ --
2804
+ -- Control of a print job delivery channel is largely limited to
2805
+ -- enabling or disabling the entire channel itself. It is likely
2806
+ -- that more control of the process of accessing print data
2807
+ -- will be needed over time. Thus, the ChannelType will
2808
+ -- allow type-specific data to be associated with each
2809
+ -- channel (using ChannelType specific groups in a fashion
2810
+ -- analogous to the media specific MIBs that are associated
2811
+ -- with the IANAIfType in the Interfaces Table). As a first
2812
+ -- step in this direction, each channel will identify the
2813
+ -- underlying Interface on which it is based. This is the
2814
+ -- eighth object in each row of the table.
2815
+
2816
+ -- The Print Job Delivery Channel Table
2817
+
2818
+ prtChannel OBJECT IDENTIFIER ::= { printmib 14 }
2819
+
2820
+ prtChannelTable OBJECT-TYPE
2821
+ SYNTAX SEQUENCE OF PrtChannelEntry
2822
+ MAX-ACCESS not-accessible
2823
+ STATUS current
2824
+ DESCRIPTION
2825
+ "The channel table represents the set of input data sources
2826
+ which can provide print data to one or more of the
2827
+ interpreters available on a printer.
2828
+
2829
+ NOTE: The above description has been modified from RFC 1759
2830
+ for clarification."
2831
+ ::= { prtChannel 1 }
2832
+
2833
+ prtChannelEntry OBJECT-TYPE
2834
+ SYNTAX PrtChannelEntry
2835
+ MAX-ACCESS not-accessible
2836
+ STATUS current
2837
+ DESCRIPTION
2838
+ "Entries may exist in the table for each device index with a
2839
+ device type of 'printer'. Each channel table entry is
2840
+ characterized by a unique protocol stack and/or addressing.
2841
+ The channel may also have printer dependent features that are
2842
+ associated with a printing language.
2843
+
2844
+ NOTE: The above description has been modified from RFC 1759
2845
+ for clarification."
2846
+ INDEX { hrDeviceIndex, prtChannelIndex }
2847
+ ::= { prtChannelTable 1 }
2848
+
2849
+ PrtChannelEntry ::= SEQUENCE {
2850
+ prtChannelIndex Integer32,
2851
+ prtChannelType PrtChannelTypeTC,
2852
+ prtChannelProtocolVersion OCTET STRING,
2853
+ prtChannelCurrentJobCntlLangIndex Integer32,
2854
+ prtChannelDefaultPageDescLangIndex Integer32,
2855
+ prtChannelState PrtChannelStateTC,
2856
+ prtChannelIfIndex InterfaceIndexOrZero,
2857
+ prtChannelStatus PrtSubUnitStatusTC,
2858
+ prtChannelInformation OCTET STRING
2859
+ }
2860
+
2861
+ prtChannelIndex OBJECT-TYPE
2862
+ -- NOTE: In RFC 1759, the range was not defined.
2863
+ SYNTAX Integer32 (1..65535)
2864
+ MAX-ACCESS not-accessible
2865
+ STATUS current
2866
+ DESCRIPTION
2867
+ "A unique value used by the printer to identify this data
2868
+ channel. Although these values may change due to a major
2869
+ reconfiguration of the device (e.g., the addition of new data
2870
+ channels to the printer), values SHOULD remain stable across
2871
+ successive printer power cycles.
2872
+
2873
+ NOTE: The above description has been modified from RFC 1759
2874
+ for clarification."
2875
+ ::= { prtChannelEntry 1 }
2876
+
2877
+ prtChannelType OBJECT-TYPE
2878
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2879
+ -- defined by this object.
2880
+ SYNTAX PrtChannelTypeTC
2881
+ MAX-ACCESS read-only
2882
+ STATUS current
2883
+ DESCRIPTION
2884
+ "The type of this print data channel. This object provides the
2885
+ linkage to ChannelType-specific groups that may (conceptually)
2886
+ extend the prtChannelTable with additional details about that
2887
+ channel."
2888
+ ::= { prtChannelEntry 2 }
2889
+
2890
+ prtChannelProtocolVersion OBJECT-TYPE
2891
+ SYNTAX OCTET STRING (SIZE(0..63))
2892
+ MAX-ACCESS read-only
2893
+ STATUS current
2894
+ DESCRIPTION
2895
+ "The version of the protocol used on this channel. The format
2896
+ used for version numbering depends on prtChannelType."
2897
+ ::= { prtChannelEntry 3 }
2898
+
2899
+ prtChannelCurrentJobCntlLangIndex OBJECT-TYPE
2900
+ -- NOTE: In RFC 1759, the range was not defined.
2901
+ SYNTAX Integer32 (0..65535)
2902
+ MAX-ACCESS read-write
2903
+ STATUS current
2904
+ DESCRIPTION
2905
+ "The value of prtInterpreterIndex corresponding to the Control
2906
+ Language Interpreter for this channel. This interpreter defines
2907
+ the syntax used for control functions, such as querying or
2908
+ changing environment variables and identifying job boundaries
2909
+ (e.g., PJL, PostScript, NPAP). A value of zero indicates that
2910
+ there is no current Job Control Language Interpreter for this
2911
+ channel.
2912
+
2913
+ NOTE: The above description has been modified from RFC 1759
2914
+ for clarification."
2915
+ ::= { prtChannelEntry 4 }
2916
+
2917
+ prtChannelDefaultPageDescLangIndex OBJECT-TYPE
2918
+ -- NOTE: In RFC 1759, the range was not defined.
2919
+ SYNTAX Integer32 (0..65535)
2920
+ MAX-ACCESS read-write
2921
+ STATUS current
2922
+ DESCRIPTION
2923
+ "The value of prtInterpreterIndex corresponding to the Page
2924
+ Description Language Interpreter for this channel. This
2925
+ interpreter defines the default Page Description Language
2926
+ interpreter to be used for the print data unless the Control
2927
+ Language is used to select a specific interpreter (e.g., PCL,
2928
+ PostScript Language, auto-sense). A value of zero indicates
2929
+ that there is no default page description language interpreter
2930
+ for this channel.
2931
+
2932
+ NOTE: The above description has been modified from RFC 1759
2933
+ for clarification."
2934
+ ::= { prtChannelEntry 5 }
2935
+
2936
+ prtChannelState OBJECT-TYPE
2937
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
2938
+ -- defined by this object.
2939
+ SYNTAX PrtChannelStateTC
2940
+ MAX-ACCESS read-write
2941
+ STATUS current
2942
+ DESCRIPTION
2943
+ "The state of this print data channel. The value determines
2944
+ whether control information and print data is allowed through
2945
+ this channel or not."
2946
+ ::= { prtChannelEntry 6 }
2947
+
2948
+ prtChannelIfIndex OBJECT-TYPE
2949
+ SYNTAX InterfaceIndexOrZero -- Was Integer32 in RFC 1759.
2950
+ MAX-ACCESS read-write
2951
+ STATUS current
2952
+ DESCRIPTION
2953
+ "The value of ifIndex in the ifTable; see the Interfaces Group
2954
+ MIB [RFC2863] which corresponds to this channel.
2955
+ When more than one row of the ifTable is relevant, this is the
2956
+ index of the row representing the topmost layer in the
2957
+ interface hierarchy. A value of zero indicates that no
2958
+ interface is associated with this channel.
2959
+
2960
+ NOTE: The above description has been modified from RFC 1759
2961
+
2962
+ for clarification."
2963
+ ::= { prtChannelEntry 7 }
2964
+
2965
+ prtChannelStatus OBJECT-TYPE
2966
+ SYNTAX PrtSubUnitStatusTC
2967
+ MAX-ACCESS read-only
2968
+ STATUS current
2969
+ DESCRIPTION
2970
+ "The current status of the channel."
2971
+ ::= { prtChannelEntry 8 }
2972
+
2973
+ prtChannelInformation OBJECT-TYPE
2974
+ SYNTAX OCTET STRING (SIZE (0..255))
2975
+ MAX-ACCESS read-only
2976
+ STATUS current
2977
+ DESCRIPTION
2978
+ "Auxiliary information to allow a printing application to use
2979
+ the channel for data submission to the printer. An application
2980
+ capable of using a specific PrtChannelType should be able to
2981
+ use the combined information from the prtChannelInformation and
2982
+ other channel and interface group objects to 'bootstrap' its
2983
+ use of the channel. prtChannelInformation is not intended to
2984
+ provide a general channel description, nor to provide
2985
+ information that is available once the channel is in use.
2986
+
2987
+ The encoding and interpretation of the prtChannelInformation
2988
+ object is specific to channel type. The description of each
2989
+ PrtChannelType enum value for which prtChannelInformation is
2990
+ defined specifies the appropriate encoding and interpretation,
2991
+ including interaction with other objects. For channel types
2992
+ that do not specify a prtChannelInformation value, its value
2993
+ shall be null (0 length).
2994
+
2995
+ When a new PrtChannelType enumeration value is registered, its
2996
+ accompanying description must specify the encoding and
2997
+ interpretation of the prtChannelInformation value for the
2998
+ channel type. prtChannelInformation semantics for an existing
2999
+ PrtChannelType may be added or amended in the same manner as
3000
+ described in section 2.4.1 for type 2 enumeration values.
3001
+
3002
+ The prtChannelInformation specifies values for a collection of
3003
+ channel attributes, represented as text according to the
3004
+ following rules:
3005
+
3006
+ 1. The prtChannelInformation is not affected by localization.
3007
+
3008
+ 2. The prtChannelInformation is a list of entries representing
3009
+ the attribute values. Each entry consists of the following
3010
+
3011
+ items, in order:
3012
+
3013
+ a. A keyword, composed of alphabetic characters (A-Z, a-z)
3014
+ represented by their NVT ASCII [RFC854] codes, that
3015
+ identifies a channel attribute,
3016
+ b. The NVT ASCII code for an Equals Sign (=) (code 61) to
3017
+ delimit the keyword,
3018
+ c. A data value encoded using rules specific to the
3019
+ PrtChannelType to with the prtChannelInformation applies which
3020
+ must in no case allow an octet with value 10 (the NVT ASCII
3021
+ Line Feed code),
3022
+ d. the NVT ASCII code for a Line Feed character (code 10) to
3023
+ delimit the data value.
3024
+
3025
+ No other octets shall be present.
3026
+
3027
+ Keywords are case-sensitive. Conventionally, keywords are
3028
+ capitalized (including each word of a multi-word keyword) and
3029
+ since they occupy space in the prtChannelInformation, they are
3030
+ kept short.
3031
+
3032
+ 3. If a channel attribute has multiple values, it is
3033
+ represented by multiple entries with the same keyword, each
3034
+ specifying one value. Otherwise, there shall be at most one
3035
+ entry for each attribute.
3036
+
3037
+ 4. By default, entries may appear in any order. If there are
3038
+ ordering constraints for particular entries, these must be
3039
+ specified in their definitions.
3040
+
3041
+ 5. The prtChannelInformation value by default consists of text
3042
+ represented by NVT ASCII graphics character codes. However,
3043
+ other representations may be specified:
3044
+
3045
+ a. In cases where the prtChannelInformation value contains
3046
+ information not normally coded in textual form, whatever
3047
+ symbolic representation is conventionally used for the
3048
+ information should be used for encoding the
3049
+ prtChannelInformation value. (For instance, a binary port value
3050
+ might be represented as a decimal number using NVT ASCII
3051
+ codes.) Such encoding must be specified in the definition of
3052
+ the value.
3053
+
3054
+ b. The value may contain textual information in a character set
3055
+ other than NVT ASCII graphics characters. (For instance, an
3056
+
3057
+ identifier might consist of ISO 10646 text encoded using the
3058
+ UTF-8 encoding scheme.) Such a character set and its encoding
3059
+ must be specified in the definition of the value.
3060
+
3061
+ 6. For each PrtChannelType for which prtChannelInformation
3062
+ entries are defined, the descriptive text associated with the
3063
+ PrtChannelType enumeration value shall specify the following
3064
+ information for each entry:
3065
+
3066
+ Title: Brief description phrase, e.g.: 'Port name',
3067
+ 'Service Name', etc.
3068
+
3069
+ Keyword: The keyword value, e.g.: 'Port' or 'Service'
3070
+
3071
+ Syntax: The encoding of the entry value if it cannot be
3072
+ directly represented by NVT ASCII.
3073
+
3074
+ Status: 'Mandatory', 'Optional', or 'Conditionally
3075
+ Mandatory'
3076
+
3077
+ Multiplicity: 'Single' or 'Multiple' to indicate whether the
3078
+ entry may be present multiple times.
3079
+
3080
+ Description: Description of the use of the entry, other
3081
+ information required to complete the definition
3082
+ (e.g.: ordering constraints, interactions between
3083
+ entries).
3084
+
3085
+ Applications that interpret prtChannelInformation should ignore
3086
+ unrecognized entries, so they are not affected if new entry
3087
+ types are added."
3088
+ ::= { prtChannelEntry 9 }
3089
+
3090
+ -- The Interpreter Group
3091
+ --
3092
+ -- The interpreter sub-units are responsible for the conversion
3093
+ -- of a description of intended print instances into images that
3094
+ -- are to be marked on the media. A printer may have one or more
3095
+ -- interpreters. The interpreter sub-units are represented by the
3096
+ -- Interpreter Group in the Model. Each interpreter is generally
3097
+ -- implemented with software running on the System Controller
3098
+ -- sub-unit. The Interpreter Table has one entry per interpreter
3099
+ -- where the interpreters include both Page Description Language
3100
+ -- (PDL) Interpreters and Control Language Interpreters.
3101
+
3102
+ prtInterpreter OBJECT IDENTIFIER ::= { printmib 15 }
3103
+
3104
+ -- Interpreter Table
3105
+
3106
+ prtInterpreterTable OBJECT-TYPE
3107
+ SYNTAX SEQUENCE OF PrtInterpreterEntry
3108
+ MAX-ACCESS not-accessible
3109
+ STATUS current
3110
+ DESCRIPTION
3111
+ "The interpreter table is a table representing the
3112
+ interpreters in the printer. An entry shall be placed in the
3113
+ interpreter table for each interpreter on the printer.
3114
+
3115
+ NOTE: The above description has been modified from RFC 1759
3116
+ for clarification."
3117
+ ::= { prtInterpreter 1 }
3118
+
3119
+ prtInterpreterEntry OBJECT-TYPE
3120
+ SYNTAX PrtInterpreterEntry
3121
+ MAX-ACCESS not-accessible
3122
+ STATUS current
3123
+ DESCRIPTION
3124
+ "Entries may exist in the table for each device index with a
3125
+ device type of 'printer'. Each table entry provides a complete
3126
+ description of the interpreter, including version information,
3127
+ rendering resolutions, default character sets, output
3128
+ orientation, and communication capabilities.
3129
+
3130
+ NOTE: The above description has been modified from RFC 1759
3131
+ for clarification."
3132
+ INDEX { hrDeviceIndex, prtInterpreterIndex }
3133
+ ::= { prtInterpreterTable 1 }
3134
+
3135
+ PrtInterpreterEntry ::= SEQUENCE {
3136
+ prtInterpreterIndex Integer32,
3137
+ prtInterpreterLangFamily PrtInterpreterLangFamilyTC,
3138
+ prtInterpreterLangLevel OCTET STRING,
3139
+ prtInterpreterLangVersion OCTET STRING,
3140
+ prtInterpreterDescription PrtLocalizedDescriptionStringTC,
3141
+ prtInterpreterVersion OCTET STRING,
3142
+ prtInterpreterDefaultOrientation PrtPrintOrientationTC,
3143
+ prtInterpreterFeedAddressability Integer32,
3144
+ prtInterpreterXFeedAddressability Integer32,
3145
+ prtInterpreterDefaultCharSetIn IANACharset,
3146
+ prtInterpreterDefaultCharSetOut IANACharset,
3147
+ prtInterpreterTwoWay PrtInterpreterTwoWayTC
3148
+ }
3149
+
3150
+ prtInterpreterIndex OBJECT-TYPE
3151
+ -- NOTE: In RFC 1759, the range was not defined.
3152
+ SYNTAX Integer32 (1..65535)
3153
+ MAX-ACCESS not-accessible
3154
+ STATUS current
3155
+ DESCRIPTION
3156
+ "A unique value for each PDL or control language for which
3157
+ there exists an interpreter or emulator in the printer. The
3158
+ value is used to identify this interpreter. Although these
3159
+ values may change due to a major reconfiguration of the device
3160
+ (e.g., the addition of new interpreters to the printer), values
3161
+ SHOULD remain stable across successive printer power cycles.
3162
+
3163
+ NOTE: The above description has been modified from RFC 1759
3164
+ for clarification."
3165
+ ::= { prtInterpreterEntry 1 }
3166
+
3167
+ prtInterpreterLangFamily OBJECT-TYPE
3168
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3169
+ -- defined by this object.
3170
+ SYNTAX PrtInterpreterLangFamilyTC
3171
+ MAX-ACCESS read-only
3172
+ STATUS current
3173
+ DESCRIPTION
3174
+ "The family name of a Page Description Language (PDL) or
3175
+ control language which this interpreter in the printer can
3176
+ interpret or emulate.
3177
+
3178
+ NOTE: The above description has been modified from RFC 1759
3179
+ for clarification."
3180
+ ::= { prtInterpreterEntry 2 }
3181
+
3182
+ prtInterpreterLangLevel OBJECT-TYPE
3183
+ SYNTAX OCTET STRING (SIZE(0..31))
3184
+ MAX-ACCESS read-only
3185
+ STATUS current
3186
+ DESCRIPTION
3187
+ "The level of the language which this interpreter is
3188
+ interpreting or emulating. This might contain a value like
3189
+ '5e'for an interpreter which is emulating level 5e of the PCL
3190
+ language. It might contain '2' for an interpreter which is
3191
+ emulating level 2 of the PostScript language. Similarly it
3192
+ might contain '2' for an interpreter which is emulating level 2
3193
+ of the HPGL language."
3194
+ ::= { prtInterpreterEntry 3 }
3195
+
3196
+ prtInterpreterLangVersion OBJECT-TYPE
3197
+ SYNTAX OCTET STRING (SIZE(0..31))
3198
+ MAX-ACCESS read-only
3199
+ STATUS current
3200
+ DESCRIPTION
3201
+ "The date code or version of the language which this
3202
+ interpreter is interpreting or emulating."
3203
+ ::= { prtInterpreterEntry 4 }
3204
+
3205
+ prtInterpreterDescription OBJECT-TYPE
3206
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
3207
+ -- to a TC to better support localization of the object.
3208
+ SYNTAX PrtLocalizedDescriptionStringTC
3209
+ MAX-ACCESS read-only
3210
+ STATUS current
3211
+ DESCRIPTION
3212
+ "A string to identify this interpreter in the localization
3213
+ specified by prtGeneralCurrentLocalization as opposed to the
3214
+ language which is being interpreted. It is anticipated that
3215
+ this string will allow manufacturers to unambiguously identify
3216
+ their interpreters."
3217
+ ::= { prtInterpreterEntry 5 }
3218
+
3219
+ prtInterpreterVersion OBJECT-TYPE
3220
+ SYNTAX OCTET STRING (SIZE(0..31))
3221
+ MAX-ACCESS read-only
3222
+ STATUS current
3223
+ DESCRIPTION
3224
+ "The date code, version number, or other product specific
3225
+ information tied to this interpreter. This value is associated
3226
+ with the interpreter, rather than with the version of the
3227
+ language which is being interpreted or emulated."
3228
+ ::= { prtInterpreterEntry 6 }
3229
+
3230
+ prtInterpreterDefaultOrientation OBJECT-TYPE
3231
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3232
+ -- defined by this object.
3233
+ SYNTAX PrtPrintOrientationTC
3234
+ MAX-ACCESS read-write
3235
+ STATUS current
3236
+ DESCRIPTION
3237
+ "The current orientation default for this interpreter. This
3238
+ value may be overridden for a particular job (e.g., by a
3239
+ command in the input data stream)."
3240
+ ::= { prtInterpreterEntry 7 }
3241
+
3242
+ prtInterpreterFeedAddressability OBJECT-TYPE
3243
+ -- NOTE: In RFC 1759, the range was not defined.
3244
+ SYNTAX Integer32 (-2..2147483647)
3245
+ MAX-ACCESS read-only
3246
+ STATUS current
3247
+ DESCRIPTION
3248
+ "The maximum interpreter addressability in the feed
3249
+ direction in 10000 prtMarkerAddressabilityUnits (as specified
3250
+ by prtMarkerDefaultIndex) for this interpreter. The
3251
+ value (-1) means other and specifically indicates that the
3252
+ sub-unit places no restrictions on this parameter. The value
3253
+ (-2) means unknown.
3254
+
3255
+ NOTE: The above description has been modified from RFC 1759
3256
+ for clarification."
3257
+ ::= { prtInterpreterEntry 8 }
3258
+
3259
+ prtInterpreterXFeedAddressability OBJECT-TYPE
3260
+ -- NOTE: In RFC 1759, the range was not defined.
3261
+ SYNTAX Integer32 (-2..2147483647)
3262
+ MAX-ACCESS read-only
3263
+ STATUS current
3264
+ DESCRIPTION
3265
+ "The maximum interpreter addressability in the cross feed
3266
+ direction in 10000 prtMarkerAddressabilityUnits (as specified
3267
+ by prtMarkerDefaultIndex) for this interpreter. The
3268
+ value (-1) means other and specifically indicates that the
3269
+ sub-unit places no restrictions on this parameter. The value
3270
+ (-2) means unknown.
3271
+
3272
+ NOTE: The above description has been modified from RFC 1759
3273
+ for clarification."
3274
+ ::= { prtInterpreterEntry 9 }
3275
+
3276
+ prtInterpreterDefaultCharSetIn OBJECT-TYPE
3277
+ SYNTAX IANACharset
3278
+ MAX-ACCESS read-write
3279
+ STATUS current
3280
+ DESCRIPTION
3281
+ "The default coded character set for input octets encountered
3282
+ outside a context in which the Page Description Language
3283
+ established the interpretation of the octets. (Input octets are
3284
+ presented to the interpreter through a path defined in the
3285
+ channel group.)"
3286
+ ::= { prtInterpreterEntry 10 }
3287
+
3288
+ prtInterpreterDefaultCharSetOut OBJECT-TYPE
3289
+ SYNTAX IANACharset
3290
+ MAX-ACCESS read-write
3291
+ STATUS current
3292
+ DESCRIPTION
3293
+ "The default character set for data coming from this
3294
+ interpreter through the printer's output channel (i.e. the
3295
+ 'backchannel')."
3296
+ ::= { prtInterpreterEntry 11 }
3297
+
3298
+ prtInterpreterTwoWay OBJECT-TYPE
3299
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3300
+ -- defined by this object.
3301
+ SYNTAX PrtInterpreterTwoWayTC
3302
+ MAX-ACCESS read-only
3303
+ STATUS current
3304
+ DESCRIPTION
3305
+ "Indicates whether or not this interpreter returns information
3306
+ back to the host."
3307
+ ::= { prtInterpreterEntry 12 }
3308
+
3309
+ -- The Console Group
3310
+ --
3311
+ -- Many printers have a console on the printer, the operator
3312
+ -- console, that is used to display and modify the state of the
3313
+ -- printer. The console can be as simple as a few indicators and
3314
+ -- switches or as complicated as full screen displays and
3315
+ -- keyboards. There can be at most one such console.
3316
+
3317
+ -- The Display Buffer Table
3318
+
3319
+ prtConsoleDisplayBuffer OBJECT IDENTIFIER ::= { printmib 16 }
3320
+
3321
+ prtConsoleDisplayBufferTable OBJECT-TYPE
3322
+ SYNTAX SEQUENCE OF PrtConsoleDisplayBufferEntry
3323
+ MAX-ACCESS not-accessible
3324
+ STATUS current
3325
+ DESCRIPTION
3326
+ "Physical display buffer for printer console display or
3327
+ operator panel
3328
+
3329
+ NOTE: The above description has been modified from RFC 1759
3330
+ for clarification."
3331
+ ::= { prtConsoleDisplayBuffer 5 }
3332
+
3333
+ prtConsoleDisplayBufferEntry OBJECT-TYPE
3334
+ SYNTAX PrtConsoleDisplayBufferEntry
3335
+ MAX-ACCESS not-accessible
3336
+ STATUS current
3337
+ DESCRIPTION
3338
+ "This table contains one entry for each physical line on
3339
+ the display. Lines cannot be added or deleted. Entries may
3340
+ exist in the table for each device index with a device type of
3341
+ 'printer'.
3342
+
3343
+ NOTE: The above description has been modified from RFC 1759
3344
+
3345
+ for clarification."
3346
+ INDEX { hrDeviceIndex, prtConsoleDisplayBufferIndex }
3347
+ ::= { prtConsoleDisplayBufferTable 1 }
3348
+
3349
+ PrtConsoleDisplayBufferEntry ::= SEQUENCE {
3350
+ prtConsoleDisplayBufferIndex Integer32,
3351
+ prtConsoleDisplayBufferText PrtConsoleDescriptionStringTC
3352
+ }
3353
+
3354
+ prtConsoleDisplayBufferIndex OBJECT-TYPE
3355
+ SYNTAX Integer32 (1..65535)
3356
+ MAX-ACCESS not-accessible
3357
+ STATUS current
3358
+ DESCRIPTION
3359
+ "A unique value for each console line in the printer. The value
3360
+ is used to identify this console line. Although these values
3361
+ may change due to a major reconfiguration of the device (e.g.,
3362
+ the addition of new console lines to the printer). Values
3363
+ SHOULD remain stable across successive printer power cycles.
3364
+
3365
+ NOTE: The above description has been modified from RFC 1759
3366
+ for clarification."
3367
+ ::= { prtConsoleDisplayBufferEntry 1 }
3368
+
3369
+ prtConsoleDisplayBufferText OBJECT-TYPE
3370
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
3371
+ -- to a TC to better support localization of the object.
3372
+ SYNTAX PrtConsoleDescriptionStringTC
3373
+ MAX-ACCESS read-write
3374
+ STATUS current
3375
+ DESCRIPTION
3376
+ "The content of a line in the logical display buffer of
3377
+ the operator's console of the printer. When a write
3378
+ operation occurs, normally a critical message, to one of
3379
+ the LineText strings, the agent should make that line
3380
+ displayable if a physical display is present. Writing a zero
3381
+ length string clears the line. It is an implementation-
3382
+ specific matter as to whether the agent allows a line to be
3383
+ overwritten before it has been cleared. Printer generated
3384
+ strings shall be in the localization specified by
3385
+ prtConsoleLocalization.Management Application generated strings
3386
+ should be localized by the Management Application."
3387
+ ::= { prtConsoleDisplayBufferEntry 2 }
3388
+
3389
+ -- The Console Light Table
3390
+
3391
+ prtConsoleLights OBJECT IDENTIFIER ::= { printmib 17 }
3392
+
3393
+ prtConsoleLightTable OBJECT-TYPE
3394
+ SYNTAX SEQUENCE OF PrtConsoleLightEntry
3395
+ MAX-ACCESS not-accessible
3396
+ STATUS current
3397
+ DESCRIPTION
3398
+ "The console light table provides a description and state
3399
+ information for each light present on the printer console.
3400
+
3401
+ NOTE: The above description has been modified from RFC 1759
3402
+ for clarification."
3403
+ ::= { prtConsoleLights 6 }
3404
+
3405
+ prtConsoleLightEntry OBJECT-TYPE
3406
+ SYNTAX PrtConsoleLightEntry
3407
+ MAX-ACCESS not-accessible
3408
+ STATUS current
3409
+ DESCRIPTION
3410
+ "Entries may exist in the table for each device index with a
3411
+ device type of 'printer'.
3412
+
3413
+ NOTE: The above description has been modified from RFC 1759
3414
+ for clarification."
3415
+ INDEX { hrDeviceIndex, prtConsoleLightIndex }
3416
+ ::= { prtConsoleLightTable 1 }
3417
+
3418
+ PrtConsoleLightEntry ::= SEQUENCE {
3419
+ prtConsoleLightIndex Integer32,
3420
+ prtConsoleOnTime Integer32,
3421
+ prtConsoleOffTime Integer32,
3422
+ prtConsoleColor PrtConsoleColorTC,
3423
+ prtConsoleDescription PrtConsoleDescriptionStringTC
3424
+ }
3425
+
3426
+ prtConsoleLightIndex OBJECT-TYPE
3427
+ SYNTAX Integer32 (1..65535) -- Lower limit invalid in RFC 1759
3428
+ MAX-ACCESS not-accessible
3429
+ STATUS current
3430
+ DESCRIPTION
3431
+ "A unique value used by the printer to identify this light.
3432
+ Although these values may change due to a major
3433
+ reconfiguration of the device (e.g., the addition of new lights
3434
+ to the printer). Values SHOULD remain stable across successive
3435
+ printer power cycles.
3436
+
3437
+ NOTE: The above description has been modified from RFC 1759
3438
+ for clarification."
3439
+ ::= { prtConsoleLightEntry 1 }
3440
+
3441
+ prtConsoleOnTime OBJECT-TYPE
3442
+ -- NOTE: In RFC 1759, the range was not defined.
3443
+ SYNTAX Integer32 (0..2147483647)
3444
+ MAX-ACCESS read-write
3445
+ STATUS current
3446
+ DESCRIPTION
3447
+ "This object, in conjunction with prtConsoleOffTime, defines
3448
+ the current status of the light. If both prtConsoleOnTime and
3449
+ prtConsoleOffTime are non-zero, the lamp is blinking and the
3450
+ values presented define the on time and off time, respectively,
3451
+ in milliseconds. If prtConsoleOnTime is zero and
3452
+ prtConsoleOffTime is non-zero, the lamp is off. If
3453
+ prtConsoleOffTime is zero and prtConsoleOnTime is non-zero, the
3454
+ lamp is on. If both values are zero the lamp is off.
3455
+
3456
+ NOTE: The above description has been modified from RFC 1759
3457
+ for clarification."
3458
+ ::= { prtConsoleLightEntry 2 }
3459
+
3460
+ prtConsoleOffTime OBJECT-TYPE
3461
+ -- NOTE: In RFC 1759, the range was not defined.
3462
+ SYNTAX Integer32 (0..2147483647)
3463
+ MAX-ACCESS read-write
3464
+ STATUS current
3465
+ DESCRIPTION
3466
+ "This object, in conjunction with prtConsoleOnTime, defines the
3467
+ current status of the light. If both prtConsoleOnTime and
3468
+ prtConsoleOffTime are non-zero, the lamp is blinking and the
3469
+ values presented define the on time and off time, respectively,
3470
+ in milliseconds. If prtConsoleOnTime is zero and
3471
+ prtConsoleOffTime is non-zero, the lamp is off. If
3472
+ prtConsoleOffTime is zero and prtConsoleOnTime is non-zero, the
3473
+ lamp is on. If both values are zero the lamp is off.
3474
+
3475
+ NOTE: The above description has been modified from RFC 1759
3476
+ for clarification."
3477
+ ::= { prtConsoleLightEntry 3 }
3478
+
3479
+ prtConsoleColor OBJECT-TYPE
3480
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3481
+ -- defined by this object.
3482
+ SYNTAX PrtConsoleColorTC
3483
+ MAX-ACCESS read-only
3484
+ STATUS current
3485
+ DESCRIPTION
3486
+ "The color of this light."
3487
+ ::= { prtConsoleLightEntry 4 }
3488
+
3489
+ prtConsoleDescription OBJECT-TYPE
3490
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
3491
+ -- to a TC to better support localization of the object.
3492
+ SYNTAX PrtConsoleDescriptionStringTC
3493
+ MAX-ACCESS read-only
3494
+ STATUS current
3495
+ DESCRIPTION
3496
+ "The vendor description or label of this light in the
3497
+ localization specified by prtConsoleLocalization."
3498
+ ::= { prtConsoleLightEntry 5 }
3499
+
3500
+ -- The Alerts Group
3501
+ --
3502
+ -- The table contains information on the severity, component,
3503
+ -- detail location within the component, alert code and
3504
+ -- description of each critical alert that is currently active
3505
+ -- within the printer. See 2.2.13 for a more complete
3506
+ -- description of the alerts table and its management.
3507
+ --
3508
+ -- Each parameter in the Trap PDU is a full OID which itself is
3509
+ -- indexed by the host resources MIB "hrDeviceIndex" object. In
3510
+ -- order for a management station to obtain the correct
3511
+ -- "hrDeviceIndex" associated with a particular Trap PDU, the
3512
+ -- "hrDeviceIndex" value can be extracted from the returned OID
3513
+ -- value in the Trap PDU when the PDU is received by the
3514
+ -- Management station.
3515
+
3516
+ prtAlert OBJECT IDENTIFIER ::= { printmib 18 }
3517
+
3518
+ prtAlertTable OBJECT-TYPE
3519
+ SYNTAX SEQUENCE OF PrtAlertEntry
3520
+ MAX-ACCESS not-accessible
3521
+ STATUS current
3522
+ DESCRIPTION
3523
+ "The prtAlertTable lists all the critical and non-critical
3524
+ alerts currently active in the printer. A critical alert is
3525
+ one that stops the printer from printing immediately and
3526
+ printing can not continue until the critical alert condition
3527
+ is eliminated. Non-critical alerts are those items that do
3528
+ not stop printing but may at some future time.
3529
+
3530
+ NOTE: The above description has been modified from RFC 1759
3531
+ for clarification."
3532
+ ::= { prtAlert 1 }
3533
+
3534
+ prtAlertEntry OBJECT-TYPE
3535
+ SYNTAX PrtAlertEntry
3536
+ MAX-ACCESS not-accessible
3537
+ STATUS current
3538
+ DESCRIPTION
3539
+ "Entries may exist in the table for each device
3540
+ index with a device type of 'printer'.
3541
+
3542
+ NOTE: The above description has been modified from RFC 1759
3543
+ for clarification."
3544
+ INDEX { hrDeviceIndex, prtAlertIndex }
3545
+ ::= { prtAlertTable 1 }
3546
+
3547
+ PrtAlertEntry ::= SEQUENCE {
3548
+ prtAlertIndex Integer32,
3549
+ prtAlertSeverityLevel PrtAlertSeverityLevelTC,
3550
+ prtAlertTrainingLevel PrtAlertTrainingLevelTC,
3551
+ prtAlertGroup PrtAlertGroupTC,
3552
+ prtAlertGroupIndex Integer32,
3553
+ prtAlertLocation Integer32,
3554
+ prtAlertCode PrtAlertCodeTC,
3555
+ prtAlertDescription PrtLocalizedDescriptionStringTC,
3556
+ prtAlertTime TimeTicks
3557
+ }
3558
+
3559
+ prtAlertIndex OBJECT-TYPE
3560
+ -- NOTE: In RFC 1759, the range was not defined. The MAX-ACCESS has
3561
+ -- been changed from not accessible to allow the object to be
3562
+ -- included (as originally in RFC 1759) in the trap bindings.
3563
+ SYNTAX Integer32 (1..2147483647)
3564
+ MAX-ACCESS read-only
3565
+ STATUS current
3566
+ DESCRIPTION
3567
+ "The index value used to determine which alerts have been added
3568
+ or removed from the alert table. This is an incrementing
3569
+ integer initialized to 1 when the printer is reset. (i.e., The
3570
+ first event placed in the alert table after a reset of the
3571
+ printer shall have an index value of 1.) When the printer adds
3572
+ an alert to the table, that alert is assigned the next higher
3573
+ integer value from the last item entered into the table. If
3574
+ the index value reaches its maximum value, the next index value
3575
+ used must be 1.
3576
+
3577
+ NOTE: The management application will read the alert table when
3578
+ a trap or event notification occurs or at a periodic rate and
3579
+ then parse the table to determine if any new entries were added
3580
+ by comparing the last known index value with the current
3581
+ highest index value. The management application will then
3582
+ update its copy of the alert table. When the printer discovers
3583
+ that an alert is no longer active, the printer shall remove the
3584
+
3585
+ row for that alert from the table and shall reduce the number
3586
+ of rows in the table. The printer may add or delete any number
3587
+ of rows from the table at any time. The management station can
3588
+ detect when binary change alerts have been deleted by
3589
+ requesting an attribute of each alert, and noting alerts as
3590
+ deleted when that retrieval is not possible. The objects
3591
+ 'prtAlertCriticalEvents'and 'prtAlertAllEvents' in the
3592
+ 'prtGeneralTable' reduce the need for management applications
3593
+ to scan the 'prtAlertTable'.
3594
+
3595
+ NOTE: The above description has been modified from RFC 1759
3596
+ for clarification."
3597
+ ::= { prtAlertEntry 1 }
3598
+
3599
+ prtAlertSeverityLevel OBJECT-TYPE
3600
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3601
+ -- defined by this object.
3602
+ SYNTAX PrtAlertSeverityLevelTC
3603
+ MAX-ACCESS read-only
3604
+ STATUS current
3605
+ DESCRIPTION
3606
+ "The level of severity of this alert table entry. The printer
3607
+ determines the severity level assigned to each entry into the
3608
+ table."
3609
+ ::= { prtAlertEntry 2 }
3610
+
3611
+ prtAlertTrainingLevel OBJECT-TYPE
3612
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3613
+ -- defined by this object.
3614
+ SYNTAX PrtAlertTrainingLevelTC
3615
+ MAX-ACCESS read-only
3616
+ STATUS current
3617
+ DESCRIPTION
3618
+ "See TEXTUAL-CONVENTION PrtAlertTrainingLevelTC.
3619
+
3620
+ NOTE: The above description has been modified from RFC 1759
3621
+ for clarification."
3622
+ ::= { prtAlertEntry 3 }
3623
+
3624
+ prtAlertGroup OBJECT-TYPE
3625
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3626
+ -- defined by this object.
3627
+ SYNTAX PrtAlertGroupTC
3628
+ MAX-ACCESS read-only
3629
+ STATUS current
3630
+ DESCRIPTION
3631
+ "The type of sub-unit within the printer model that this alert
3632
+ is related. Input, output, and markers are examples of printer
3633
+
3634
+ model groups, i.e., examples of types of sub-units. Wherever
3635
+ possible, these enumerations match the sub-identifier that
3636
+ identifies the relevant table in the printmib."
3637
+ ::= { prtAlertEntry 4 }
3638
+
3639
+ prtAlertGroupIndex OBJECT-TYPE
3640
+ -- NOTE: In RFC 1759, the range was not defined.
3641
+ SYNTAX Integer32 (-1..2147483647)
3642
+ MAX-ACCESS read-only
3643
+ STATUS current
3644
+ DESCRIPTION
3645
+ "The low-order index of the row within the table identified
3646
+ by prtAlertGroup that represents the sub-unit of the printer
3647
+ that caused this alert, or -1 if not applicable. The
3648
+ combination of the prtAlertGroup and the prtAlertGroupIndex
3649
+ defines exactly which printer sub-unit caused the alert; for
3650
+ example, Input #3, Output#2, and Marker #1. Every object in
3651
+ this MIB is indexed with hrDeviceIndex and optionally, another
3652
+ index variable. If this other index variable is present in the
3653
+ table that generated the alert, it will be used as the value
3654
+ for this object. Otherwise, this value shall be -1.
3655
+
3656
+ NOTE: The above description has been modified from RFC 1759
3657
+ for clarification."
3658
+ ::= { prtAlertEntry 5 }
3659
+
3660
+ prtAlertLocation OBJECT-TYPE
3661
+ -- NOTE: In RFC 1759, the range was not defined.
3662
+ SYNTAX Integer32 (-2..2147483647)
3663
+ MAX-ACCESS read-only
3664
+ STATUS current
3665
+ DESCRIPTION
3666
+ "The sub-unit location that is defined by the printer
3667
+ manufacturer to further refine the location of this alert
3668
+ within the designated sub-unit. The location is used in
3669
+ conjunction with the Group and GroupIndex values; for example,
3670
+ there is an alert in Input #2 at location number 7. The value
3671
+ (-2) indicates unknown.
3672
+
3673
+ NOTE: The above description has been modified from RFC 1759
3674
+ for clarification."
3675
+ ::= { prtAlertEntry 6 }
3676
+
3677
+ prtAlertCode OBJECT-TYPE
3678
+ -- NOTE: In RFC 1759, the enumeration values were implicitly
3679
+ -- defined by this object.
3680
+ SYNTAX PrtAlertCodeTC
3681
+ MAX-ACCESS read-only
3682
+ STATUS current
3683
+ DESCRIPTION
3684
+ "See associated TEXTUAL-CONVENTION PrtAlertCodeTC.
3685
+
3686
+ NOTE: The above description has been modified from RFC 1759
3687
+ for clarification."
3688
+ ::= { prtAlertEntry 7 }
3689
+
3690
+ prtAlertDescription OBJECT-TYPE
3691
+ -- In RFC 1759, the SYNTAX was OCTET STRING. This has been changed
3692
+ -- to a TC to better support localization of the object.
3693
+ SYNTAX PrtLocalizedDescriptionStringTC
3694
+ MAX-ACCESS read-only
3695
+ STATUS current
3696
+ DESCRIPTION
3697
+ "A description of this alert entry in the localization
3698
+ specified by prtGeneralCurrentLocalization. The description is
3699
+ provided by the printer to further elaborate on the enumerated
3700
+ alert or provide information in the case where the code is
3701
+ classified as 'other' or 'unknown'. The printer is required to
3702
+ return a description string but the string may be a null
3703
+ string."
3704
+ ::= { prtAlertEntry 8 }
3705
+
3706
+ prtAlertTime OBJECT-TYPE
3707
+ SYNTAX TimeTicks
3708
+ MAX-ACCESS read-only
3709
+ STATUS current
3710
+ DESCRIPTION
3711
+ "The value of sysUpTime at the time that this alert was
3712
+ generated."
3713
+ ::= { prtAlertEntry 9 }
3714
+
3715
+ printerV1Alert OBJECT-IDENTITY
3716
+ STATUS current
3717
+ DESCRIPTION
3718
+ "The value of the enterprise-specific OID in an SNMPv1 trap
3719
+ sent signaling a critical event in the prtAlertTable."
3720
+ ::= { prtAlert 2 }
3721
+
3722
+ printerV2AlertPrefix OBJECT IDENTIFIER ::= { printerV1Alert 0 }
3723
+
3724
+ printerV2Alert NOTIFICATION-TYPE
3725
+ OBJECTS { prtAlertIndex, prtAlertSeverityLevel, prtAlertGroup,
3726
+ prtAlertGroupIndex, prtAlertLocation, prtAlertCode }
3727
+ STATUS current
3728
+ DESCRIPTION
3729
+ "This trap is sent whenever a critical event is added to the
3730
+
3731
+ prtAlertTable.
3732
+
3733
+ NOTE: The prtAlertIndex object was redundantly included in the
3734
+ bindings of the 'printerV2Alert' notification in RFC 1759, even
3735
+ though the value exists in the instance qualifier of all the
3736
+ other bindings. This object has been retained to provide
3737
+ compatiblity with existing RFC 1759 implementaions."
3738
+ ::= { printerV2AlertPrefix 1 }
3739
+
3740
+ -- Note that the SNMPv2 to SNMPv1 translation rules dictate that
3741
+ -- the preceding structure will result in SNMPv1 traps of the
3742
+ -- following form:
3743
+ --
3744
+ -- printerAlert TRAP-TYPE
3745
+ -- ENTERPRISE printerV1Alert
3746
+ -- VARIABLES { prtAlertIndex, prtAlertSeverityLevel,
3747
+ -- prtAlertGroup, prtAlertGroupIndex,
3748
+ -- prtAlertLocation, prtAlertCode }
3749
+ -- DESCRIPTION
3750
+ -- "This trap is sent whenever a critical event is added
3751
+ -- to the prtAlertTable."
3752
+ -- ::= 1
3753
+
3754
+ -- Conformance Information
3755
+
3756
+ prtMIBConformance OBJECT IDENTIFIER ::= { printmib 2 }
3757
+
3758
+ -- compliance statements
3759
+
3760
+ prtMIBCompliance MODULE-COMPLIANCE
3761
+ STATUS current
3762
+ DESCRIPTION
3763
+ "The compliance statement for agents that implement the
3764
+ printer MIB as defined by RFC 1759."
3765
+ MODULE -- this module
3766
+ MANDATORY-GROUPS { prtGeneralGroup, prtInputGroup,
3767
+ prtOutputGroup,
3768
+ prtMarkerGroup, prtMediaPathGroup,
3769
+ prtChannelGroup, prtInterpreterGroup,
3770
+ prtConsoleGroup, prtAlertTableGroup }
3771
+ OBJECT prtGeneralReset
3772
+ SYNTAX INTEGER {
3773
+ notResetting(3),
3774
+ resetToNVRAM(5)
3775
+ }
3776
+ DESCRIPTION
3777
+ "It is conformant to implement just these two states in this
3778
+
3779
+ object. Any additional states are optional."
3780
+
3781
+ OBJECT prtConsoleOnTime
3782
+ MIN-ACCESS read-only
3783
+ DESCRIPTION
3784
+ "It is conformant to implement this object as read-only"
3785
+
3786
+ OBJECT prtConsoleOffTime
3787
+ MIN-ACCESS read-only
3788
+ DESCRIPTION
3789
+ "It is conformant to implement this object as read-only"
3790
+ ::= { prtMIBConformance 1 }
3791
+
3792
+ prtMIB2Compliance MODULE-COMPLIANCE
3793
+ STATUS current
3794
+ DESCRIPTION
3795
+ "The compliance statement for agents that implement the
3796
+ printer MIB V2."
3797
+ -- The changes from RFC 1759 fall into 2 categories:
3798
+ -- 1. New objects plus existing objects with a MIN-ACCESS of
3799
+ -- read-only are included. Existing objects have been added
3800
+ -- to this category due to feedback from implementers and
3801
+ -- interoperability testing. This allows products to be
3802
+ -- be designed with a higher degree of SNMP security.
3803
+ -- 2. New object groups have been added to include all new
3804
+ -- objects in this MIB. All new object groups are optional.
3805
+ -- Any MIB that is compliant with RFC 1759 will also be
3806
+ -- compliant with this version of the MIB.
3807
+ MODULE -- this module
3808
+ MANDATORY-GROUPS { prtGeneralGroup, prtInputGroup,
3809
+ prtOutputGroup,
3810
+ prtMarkerGroup, prtMediaPathGroup,
3811
+ prtChannelGroup, prtInterpreterGroup,
3812
+ prtConsoleGroup, prtAlertTableGroup }
3813
+ OBJECT prtGeneralReset
3814
+ SYNTAX INTEGER {
3815
+ notResetting(3),
3816
+ resetToNVRAM(5)
3817
+ }
3818
+ DESCRIPTION
3819
+ "It is conformant to implement just these two states in this
3820
+ object. Any additional states are optional."
3821
+
3822
+ OBJECT prtGeneralCurrentLocalization
3823
+ MIN-ACCESS read-only
3824
+ DESCRIPTION
3825
+ "It is conformant to implement this object as read-only"
3826
+
3827
+ OBJECT prtGeneralCurrentOperator
3828
+ MIN-ACCESS read-only
3829
+ DESCRIPTION
3830
+ "It is conformant to implement this object as read-only"
3831
+
3832
+ OBJECT prtGeneralServicePerson
3833
+ MIN-ACCESS read-only
3834
+ DESCRIPTION
3835
+ "It is conformant to implement this object as read-only"
3836
+
3837
+ OBJECT prtGeneralPrinterName
3838
+ MIN-ACCESS read-only
3839
+ DESCRIPTION
3840
+ "It is conformant to implement this object as read-only"
3841
+
3842
+ OBJECT prtGeneralSerialNumber
3843
+ MIN-ACCESS read-only
3844
+ DESCRIPTION
3845
+ "It is conformant to implement this object as read-only"
3846
+
3847
+ OBJECT prtInputDefaultIndex
3848
+ MIN-ACCESS read-only
3849
+ DESCRIPTION
3850
+ "It is conformant to implement this object as read-only"
3851
+
3852
+ OBJECT prtInputMediaDimFeedDirDeclared
3853
+ MIN-ACCESS read-only
3854
+ DESCRIPTION
3855
+ "It is conformant to implement this object as read-only"
3856
+
3857
+ OBJECT prtInputMaxCapacity
3858
+ MIN-ACCESS read-only
3859
+ DESCRIPTION
3860
+ "It is conformant to implement this object as read-only"
3861
+
3862
+ OBJECT prtInputCurrentLevel
3863
+ MIN-ACCESS read-only
3864
+ DESCRIPTION
3865
+ "It is conformant to implement this object as read-only"
3866
+
3867
+ OBJECT prtInputMediaName
3868
+ MIN-ACCESS read-only
3869
+ DESCRIPTION
3870
+ "It is conformant to implement this object as read-only"
3871
+
3872
+ OBJECT prtInputName
3873
+ MIN-ACCESS read-only
3874
+ DESCRIPTION
3875
+ "It is conformant to implement this object as read-only"
3876
+
3877
+ OBJECT prtInputSecurity
3878
+ MIN-ACCESS read-only
3879
+ DESCRIPTION
3880
+ "It is conformant to implement this object as read-only"
3881
+
3882
+ OBJECT prtInputMediaWeight
3883
+ MIN-ACCESS read-only
3884
+ DESCRIPTION
3885
+ "It is conformant to implement this object as read-only"
3886
+
3887
+ OBJECT prtInputMediaType
3888
+ MIN-ACCESS read-only
3889
+ DESCRIPTION
3890
+ "It is conformant to implement this object as read-only"
3891
+
3892
+ OBJECT prtInputMediaColor
3893
+ MIN-ACCESS read-only
3894
+ DESCRIPTION
3895
+ "It is conformant to implement this object as read-only"
3896
+
3897
+ OBJECT prtInputMediaFormParts
3898
+ MIN-ACCESS read-only
3899
+ DESCRIPTION
3900
+ "It is conformant to implement this object as read-only"
3901
+
3902
+ OBJECT prtOutputDefaultIndex
3903
+ MIN-ACCESS read-only
3904
+ DESCRIPTION
3905
+ "It is conformant to implement this object as read-only"
3906
+
3907
+ OBJECT prtOutputMaxCapacity
3908
+ MIN-ACCESS read-only
3909
+ DESCRIPTION
3910
+ "It is conformant to implement this object as read-only"
3911
+
3912
+ OBJECT prtOutputRemainingCapacity
3913
+ MIN-ACCESS read-only
3914
+ DESCRIPTION
3915
+ "It is conformant to implement this object as read-only"
3916
+
3917
+ OBJECT prtOutputName
3918
+ MIN-ACCESS read-only
3919
+ DESCRIPTION
3920
+ "It is conformant to implement this object as read-only"
3921
+
3922
+ OBJECT prtOutputSecurity
3923
+ MIN-ACCESS read-only
3924
+ DESCRIPTION
3925
+ "It is conformant to implement this object as read-only"
3926
+
3927
+ OBJECT prtOutputMaxDimFeedDir
3928
+ MIN-ACCESS read-only
3929
+ DESCRIPTION
3930
+ "It is conformant to implement this object as read-only"
3931
+
3932
+ OBJECT prtOutputMaxDimXFeedDir
3933
+ MIN-ACCESS read-only
3934
+ DESCRIPTION
3935
+ "It is conformant to implement this object as read-only"
3936
+
3937
+ OBJECT prtOutputMinDimFeedDir
3938
+ MIN-ACCESS read-only
3939
+ DESCRIPTION
3940
+ "It is conformant to implement this object as read-only"
3941
+
3942
+ OBJECT prtOutputMinDimXFeedDir
3943
+ MIN-ACCESS read-only
3944
+ DESCRIPTION
3945
+ "It is conformant to implement this object as read-only"
3946
+
3947
+ OBJECT prtOutputStackingOrder
3948
+ MIN-ACCESS read-only
3949
+ DESCRIPTION
3950
+ "It is conformant to implement this object as read-only"
3951
+
3952
+ OBJECT prtOutputPageDeliveryOrientation
3953
+ MIN-ACCESS read-only
3954
+ DESCRIPTION
3955
+ "It is conformant to implement this object as read-only"
3956
+
3957
+ OBJECT prtOutputBursting
3958
+ MIN-ACCESS read-only
3959
+ DESCRIPTION
3960
+ "It is conformant to implement this object as read-only"
3961
+
3962
+ OBJECT prtOutputDecollating
3963
+ MIN-ACCESS read-only
3964
+ DESCRIPTION
3965
+ "It is conformant to implement this object as read-only"
3966
+
3967
+ OBJECT prtOutputPageCollated
3968
+ MIN-ACCESS read-only
3969
+ DESCRIPTION
3970
+ "It is conformant to implement this object as read-only"
3971
+
3972
+ OBJECT prtOutputOffsetStacking
3973
+ MIN-ACCESS read-only
3974
+ DESCRIPTION
3975
+ "It is conformant to implement this object as read-only"
3976
+
3977
+ OBJECT prtMarkerDefaultIndex
3978
+ MIN-ACCESS read-only
3979
+ DESCRIPTION
3980
+ "It is conformant to implement this object as read-only"
3981
+
3982
+ OBJECT prtMarkerSuppliesMaxCapacity
3983
+ MIN-ACCESS read-only
3984
+ DESCRIPTION
3985
+ "It is conformant to implement this object as read-only"
3986
+
3987
+ OBJECT prtMarkerSuppliesLevel
3988
+ MIN-ACCESS read-only
3989
+ DESCRIPTION
3990
+ "It is conformant to implement this object as read-only"
3991
+
3992
+ OBJECT prtMediaPathDefaultIndex
3993
+ MIN-ACCESS read-only
3994
+ DESCRIPTION
3995
+ "It is conformant to implement this object as read-only"
3996
+
3997
+ OBJECT prtChannelCurrentJobCntlLangIndex
3998
+ MIN-ACCESS read-only
3999
+ DESCRIPTION
4000
+ "It is conformant to implement this object as read-only"
4001
+
4002
+ OBJECT prtChannelDefaultPageDescLangIndex
4003
+ MIN-ACCESS read-only
4004
+ DESCRIPTION
4005
+ "It is conformant to implement this object as read-only"
4006
+
4007
+ OBJECT prtChannelState
4008
+ MIN-ACCESS read-only
4009
+ DESCRIPTION
4010
+ "It is conformant to implement this object as read-only"
4011
+
4012
+ OBJECT prtChannelIfIndex
4013
+ MIN-ACCESS read-only
4014
+ DESCRIPTION
4015
+ "It is conformant to implement this object as read-only"
4016
+
4017
+ OBJECT prtInterpreterDefaultOrientation
4018
+ MIN-ACCESS read-only
4019
+ DESCRIPTION
4020
+ "It is conformant to implement this object as read-only"
4021
+
4022
+ OBJECT prtInterpreterDefaultCharSetIn
4023
+ MIN-ACCESS read-only
4024
+ DESCRIPTION
4025
+ "It is conformant to implement this object as read-only"
4026
+
4027
+ OBJECT prtInterpreterDefaultCharSetOut
4028
+ MIN-ACCESS read-only
4029
+ DESCRIPTION
4030
+ "It is conformant to implement this object as read-only"
4031
+
4032
+ OBJECT prtConsoleLocalization
4033
+ MIN-ACCESS read-only
4034
+ DESCRIPTION
4035
+ "It is conformant to implement this object as read-only"
4036
+
4037
+ OBJECT prtConsoleDisable
4038
+ MIN-ACCESS read-only
4039
+ DESCRIPTION
4040
+ "It is conformant to implement this object as read-only"
4041
+
4042
+ OBJECT prtConsoleDisplayBufferText
4043
+ MIN-ACCESS read-only
4044
+ DESCRIPTION
4045
+ "It is conformant to implement this object as read-only"
4046
+
4047
+ OBJECT prtConsoleOnTime
4048
+ MIN-ACCESS read-only
4049
+ DESCRIPTION
4050
+ "It is conformant to implement this object as read-only"
4051
+
4052
+ OBJECT prtConsoleOffTime
4053
+ MIN-ACCESS read-only
4054
+ DESCRIPTION
4055
+ "It is conformant to implement this object as read-only"
4056
+
4057
+ OBJECT prtAlertIndex
4058
+ MIN-ACCESS accessible-for-notify
4059
+ DESCRIPTION
4060
+ "It is conformant to implement this object as
4061
+ accessible-for-notify "
4062
+
4063
+ GROUP prtResponsiblePartyGroup
4064
+ DESCRIPTION
4065
+ "This group is unconditionally optional."
4066
+
4067
+ GROUP prtExtendedInputGroup
4068
+ DESCRIPTION
4069
+ "This group is unconditionally optional."
4070
+
4071
+ GROUP prtInputMediaGroup
4072
+ DESCRIPTION
4073
+ "This group is unconditionally optional."
4074
+
4075
+ GROUP prtExtendedOutputGroup
4076
+ DESCRIPTION
4077
+ "This group is unconditionally optional."
4078
+
4079
+ GROUP prtOutputDimensionsGroup
4080
+ DESCRIPTION
4081
+ "This group is unconditionally optional."
4082
+
4083
+ GROUP prtOutputFeaturesGroup
4084
+ DESCRIPTION
4085
+ "This group is unconditionally optional."
4086
+
4087
+ GROUP prtMarkerSuppliesGroup
4088
+ DESCRIPTION
4089
+ "This group is unconditionally optional."
4090
+
4091
+ GROUP prtMarkerColorantGroup
4092
+ DESCRIPTION
4093
+ "This group is unconditionally optional."
4094
+
4095
+ GROUP prtAlertTimeGroup
4096
+ DESCRIPTION
4097
+ "This group is unconditionally optional."
4098
+
4099
+ -- the prtResponsiblePartyGroup, prtExtendedInputGroup,
4100
+ -- prtInputMediaGroup, prtExtendedOutputGroup,
4101
+ -- prtOutputDimensionsGroup, prtOutputFeaturesGroup,
4102
+ -- prtMarkerSuppliesGroup, prtMarkerColorantGroup, and the
4103
+ -- prtAlertTimeGroup are completely optional. However, it is
4104
+ -- strongly RECOMMENDED that the prtAlertTimeGroup be implemented.
4105
+
4106
+ -- New to version 2 of this printer MIB:
4107
+ OBJECT prtAuxiliarySheetStartupPage
4108
+ MIN-ACCESS read-only
4109
+ DESCRIPTION
4110
+ "It is conformant to implement this object as read-only"
4111
+
4112
+ OBJECT prtAuxiliarySheetBannerPage
4113
+ MIN-ACCESS read-only
4114
+ DESCRIPTION
4115
+ "It is conformant to implement this object as read-only"
4116
+
4117
+ OBJECT prtInputMediaLoadTimeout
4118
+ MIN-ACCESS read-only
4119
+ DESCRIPTION
4120
+ "It is conformant to implement this object as read-only"
4121
+
4122
+ OBJECT prtInputNextIndex
4123
+ MIN-ACCESS read-only
4124
+ DESCRIPTION
4125
+ "It is conformant to implement this object as read-only"
4126
+
4127
+ GROUP prtAuxiliarySheetGroup
4128
+ DESCRIPTION
4129
+ "This group is unconditionally optional."
4130
+
4131
+ GROUP prtInputSwitchingGroup
4132
+ DESCRIPTION
4133
+ "This group is unconditionally optional."
4134
+
4135
+ GROUP prtGeneralV2Group
4136
+ DESCRIPTION
4137
+ "This group is unconditionally optional."
4138
+
4139
+ GROUP prtAlertTableV2Group
4140
+ DESCRIPTION
4141
+ "This group is unconditionally optional."
4142
+
4143
+ GROUP prtChannelV2Group
4144
+ DESCRIPTION
4145
+ "This group is unconditionally optional."
4146
+
4147
+ GROUP prtAlertTrapGroup
4148
+ DESCRIPTION
4149
+ "This group is unconditionally optional."
4150
+ ::= { prtMIBConformance 3 }
4151
+
4152
+ prtMIBGroups OBJECT IDENTIFIER ::= { prtMIBConformance 2 }
4153
+ -- These groups are from RFC 1759 and are applicable to Printer MIB V2
4154
+
4155
+ prtGeneralGroup OBJECT-GROUP
4156
+ OBJECTS { prtGeneralConfigChanges,
4157
+ prtGeneralCurrentLocalization,
4158
+ prtGeneralReset, prtCoverDescription,
4159
+ prtCoverStatus,
4160
+ prtLocalizationLanguage, prtLocalizationCountry,
4161
+ prtLocalizationCharacterSet, prtStorageRefIndex,
4162
+ prtDeviceRefIndex }
4163
+ STATUS current
4164
+ DESCRIPTION
4165
+ "The general printer group."
4166
+ ::= { prtMIBGroups 1 }
4167
+
4168
+ prtResponsiblePartyGroup OBJECT-GROUP
4169
+ OBJECTS { prtGeneralCurrentOperator, prtGeneralServicePerson }
4170
+ STATUS current
4171
+ DESCRIPTION
4172
+ "The responsible party group contains contact information for
4173
+ humans responsible for the printer."
4174
+ ::= { prtMIBGroups 2 }
4175
+
4176
+ prtInputGroup OBJECT-GROUP
4177
+ OBJECTS { prtInputDefaultIndex, prtInputType, prtInputDimUnit,
4178
+ prtInputMediaDimFeedDirDeclared,
4179
+ prtInputMediaDimXFeedDirDeclared,
4180
+ prtInputMediaDimFeedDirChosen,
4181
+ prtInputMediaDimXFeedDirChosen, prtInputCapacityUnit,
4182
+ prtInputMaxCapacity, prtInputCurrentLevel, prtInputStatus,
4183
+ prtInputMediaName }
4184
+ STATUS current
4185
+ DESCRIPTION
4186
+ "The input group."
4187
+ ::= { prtMIBGroups 3 }
4188
+
4189
+ prtExtendedInputGroup OBJECT-GROUP
4190
+ OBJECTS { prtInputName, prtInputVendorName, prtInputModel,
4191
+ prtInputVersion, prtInputSerialNumber,
4192
+ prtInputDescription, prtInputSecurity }
4193
+ STATUS current
4194
+ DESCRIPTION
4195
+ "The extended input group."
4196
+ ::= { prtMIBGroups 4 }
4197
+
4198
+ prtInputMediaGroup OBJECT-GROUP
4199
+ OBJECTS { prtInputMediaWeight, prtInputMediaType,
4200
+ prtInputMediaColor, prtInputMediaFormParts }
4201
+ STATUS current
4202
+ DESCRIPTION
4203
+ "The input media group."
4204
+ ::= { prtMIBGroups 5 }
4205
+
4206
+ prtOutputGroup OBJECT-GROUP
4207
+ OBJECTS { prtOutputDefaultIndex, prtOutputType,
4208
+ prtOutputCapacityUnit, prtOutputMaxCapacity,
4209
+ prtOutputRemainingCapacity, prtOutputStatus }
4210
+ STATUS current
4211
+ DESCRIPTION
4212
+ "The output group."
4213
+ ::= { prtMIBGroups 6 }
4214
+
4215
+ prtExtendedOutputGroup OBJECT-GROUP
4216
+ OBJECTS { prtOutputName, prtOutputVendorName, prtOutputModel,
4217
+ prtOutputVersion, prtOutputSerialNumber,
4218
+ prtOutputDescription, prtOutputSecurity }
4219
+ STATUS current
4220
+ DESCRIPTION
4221
+ "The extended output group."
4222
+ ::= { prtMIBGroups 7 }
4223
+
4224
+ prtOutputDimensionsGroup OBJECT-GROUP
4225
+ OBJECTS { prtOutputDimUnit, prtOutputMaxDimFeedDir,
4226
+ prtOutputMaxDimXFeedDir, prtOutputMinDimFeedDir,
4227
+ prtOutputMinDimXFeedDir }
4228
+ STATUS current
4229
+ DESCRIPTION
4230
+ "The output dimensions group"
4231
+ ::= { prtMIBGroups 8 }
4232
+
4233
+ prtOutputFeaturesGroup OBJECT-GROUP
4234
+ OBJECTS { prtOutputStackingOrder,
4235
+ prtOutputPageDeliveryOrientation, prtOutputBursting,
4236
+ prtOutputDecollating, prtOutputPageCollated,
4237
+ prtOutputOffsetStacking }
4238
+ STATUS current
4239
+ DESCRIPTION
4240
+ "The output features group."
4241
+ ::= { prtMIBGroups 9 }
4242
+
4243
+ prtMarkerGroup OBJECT-GROUP
4244
+ OBJECTS { prtMarkerDefaultIndex, prtMarkerMarkTech,
4245
+ prtMarkerCounterUnit, prtMarkerLifeCount,
4246
+ prtMarkerPowerOnCount, prtMarkerProcessColorants,
4247
+ prtMarkerSpotColorants, prtMarkerAddressabilityUnit,
4248
+ prtMarkerAddressabilityFeedDir,
4249
+ prtMarkerAddressabilityXFeedDir, prtMarkerNorthMargin,
4250
+ prtMarkerSouthMargin, prtMarkerWestMargin,
4251
+ prtMarkerEastMargin, prtMarkerStatus }
4252
+ STATUS current
4253
+ DESCRIPTION
4254
+ "The marker group."
4255
+ ::= { prtMIBGroups 10 }
4256
+
4257
+ prtMarkerSuppliesGroup OBJECT-GROUP
4258
+ OBJECTS { prtMarkerSuppliesMarkerIndex,
4259
+ prtMarkerSuppliesColorantIndex, prtMarkerSuppliesClass,
4260
+ prtMarkerSuppliesType, prtMarkerSuppliesDescription,
4261
+ prtMarkerSuppliesSupplyUnit,
4262
+ prtMarkerSuppliesMaxCapacity, prtMarkerSuppliesLevel }
4263
+ STATUS current
4264
+ DESCRIPTION
4265
+ "The marker supplies group."
4266
+ ::= { prtMIBGroups 11 }
4267
+
4268
+ prtMarkerColorantGroup OBJECT-GROUP
4269
+ OBJECTS { prtMarkerColorantMarkerIndex, prtMarkerColorantRole,
4270
+ prtMarkerColorantValue, prtMarkerColorantTonality }
4271
+ STATUS current
4272
+ DESCRIPTION
4273
+ "The marker colorant group."
4274
+ ::= { prtMIBGroups 12 }
4275
+
4276
+ prtMediaPathGroup OBJECT-GROUP
4277
+ OBJECTS { prtMediaPathDefaultIndex, prtMediaPathMaxSpeedPrintUnit,
4278
+ prtMediaPathMediaSizeUnit, prtMediaPathMaxSpeed,
4279
+ prtMediaPathMaxMediaFeedDir,
4280
+ prtMediaPathMaxMediaXFeedDir,
4281
+ prtMediaPathMinMediaFeedDir,
4282
+ prtMediaPathMinMediaXFeedDir, prtMediaPathType,
4283
+ prtMediaPathDescription, prtMediaPathStatus}
4284
+ STATUS current
4285
+ DESCRIPTION
4286
+ "The media path group."
4287
+ ::= { prtMIBGroups 13 }
4288
+
4289
+ prtChannelGroup OBJECT-GROUP
4290
+ OBJECTS { prtChannelType, prtChannelProtocolVersion,
4291
+ prtChannelCurrentJobCntlLangIndex,
4292
+ prtChannelDefaultPageDescLangIndex, prtChannelState,
4293
+ prtChannelIfIndex, prtChannelStatus
4294
+ }
4295
+ STATUS current
4296
+ DESCRIPTION
4297
+ "The channel group."
4298
+ ::= { prtMIBGroups 14 }
4299
+
4300
+ prtInterpreterGroup OBJECT-GROUP
4301
+ OBJECTS { prtInterpreterLangFamily, prtInterpreterLangLevel,
4302
+ prtInterpreterLangVersion, prtInterpreterDescription,
4303
+ prtInterpreterVersion, prtInterpreterDefaultOrientation,
4304
+ prtInterpreterFeedAddressability,
4305
+ prtInterpreterXFeedAddressability,
4306
+ prtInterpreterDefaultCharSetIn,
4307
+ prtInterpreterDefaultCharSetOut, prtInterpreterTwoWay }
4308
+ STATUS current
4309
+ DESCRIPTION
4310
+ "The interpreter group."
4311
+ ::= { prtMIBGroups 15 }
4312
+
4313
+ prtConsoleGroup OBJECT-GROUP
4314
+ OBJECTS { prtConsoleLocalization, prtConsoleNumberOfDisplayLines,
4315
+ prtConsoleNumberOfDisplayChars, prtConsoleDisable,
4316
+ prtConsoleDisplayBufferText, prtConsoleOnTime,
4317
+ prtConsoleOffTime, prtConsoleColor,
4318
+ prtConsoleDescription }
4319
+ STATUS current
4320
+ DESCRIPTION
4321
+ "The console group."
4322
+ ::= { prtMIBGroups 16 }
4323
+
4324
+ prtAlertTableGroup OBJECT-GROUP
4325
+ OBJECTS { prtAlertSeverityLevel, prtAlertTrainingLevel,
4326
+ prtAlertGroup, prtAlertGroupIndex, prtAlertLocation,
4327
+ prtAlertCode, prtAlertDescription }
4328
+ STATUS current
4329
+ DESCRIPTION
4330
+ "The alert table group."
4331
+ ::= { prtMIBGroups 17 }
4332
+
4333
+ prtAlertTimeGroup OBJECT-GROUP
4334
+ OBJECTS { prtAlertTime }
4335
+ STATUS current
4336
+ DESCRIPTION
4337
+ "The alert time group. Implementation of prtAlertTime is
4338
+ strongly RECOMMENDED."
4339
+ ::= { prtMIBGroups 18 }
4340
+
4341
+ prtMIB2Groups OBJECT IDENTIFIER ::= { prtMIBConformance 4 }
4342
+ -- These groups are unique to Printer MIB V2
4343
+
4344
+ prtAuxiliarySheetGroup OBJECT-GROUP
4345
+ OBJECTS { prtAuxiliarySheetStartupPage,
4346
+ prtAuxiliarySheetBannerPage }
4347
+ STATUS current
4348
+ DESCRIPTION
4349
+ "The auxiliary sheet group."
4350
+ ::= { prtMIBGroups 19 }
4351
+
4352
+ prtInputSwitchingGroup OBJECT-GROUP
4353
+ OBJECTS { prtInputMediaLoadTimeout, prtInputNextIndex }
4354
+ STATUS current
4355
+ DESCRIPTION
4356
+ "The input switching group."
4357
+ ::= { prtMIBGroups 20 }
4358
+
4359
+ prtGeneralV2Group OBJECT-GROUP
4360
+ OBJECTS { prtGeneralPrinterName, prtGeneralSerialNumber }
4361
+ STATUS current
4362
+ DESCRIPTION
4363
+ "The general printer group with new v2 objects."
4364
+ ::= { prtMIBGroups 21 }
4365
+
4366
+ prtAlertTableV2Group OBJECT-GROUP
4367
+ OBJECTS { prtAlertIndex, prtAlertCriticalEvents, prtAlertAllEvents }
4368
+ STATUS current
4369
+ DESCRIPTION
4370
+ "The alert table group with new v2 objects and prtAlertIndex
4371
+ changed to MAX-ACCESS of 'read-only' for inclusion in the trap
4372
+ bindings (as originally defined in RFC 1759)."
4373
+ ::= { prtMIBGroups 22 }
4374
+
4375
+ prtChannelV2Group OBJECT-GROUP
4376
+ OBJECTS { prtChannelInformation }
4377
+ STATUS current
4378
+ DESCRIPTION
4379
+ "The channel group with a new v2 object."
4380
+ ::= { prtMIBGroups 23 }
4381
+
4382
+ prtAlertTrapGroup NOTIFICATION-GROUP
4383
+ NOTIFICATIONS { printerV2Alert }
4384
+ STATUS current
4385
+ DESCRIPTION
4386
+ "The alert trap group."
4387
+ ::= { prtMIBGroups 24 }
4388
+
4389
+ END