1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
|
Independent Submission P. Fleming
Request for Comments: 7612 Independent
Obsoletes: 3712 I. McDonald
Category: Informational High North
ISSN: 2070-1721 June 2015
Lightweight Directory Access Protocol (LDAP):
Schema for Printer Services
Abstract
This document defines a schema, object classes, and attributes, for
Printers and print services, for use with directories that support
the Lightweight Directory Access Protocol (RFC 4510). This document
is based on the Printer attributes listed in Appendix E of "Internet
Printing Protocol/1.1: Model and Semantics" (RFC 2911). Additional
Printer attributes are based on definitions in "Printer MIB v2" (RFC
3805), "PWG Command Set Format for IEEE 1284 Device ID v1.0" (PWG
5107.2), "IPP Job and Printer Extensions - Set 3 (JPS3)" (PWG
5100.13), and "IPP Everywhere" (PWG 5100.14).
This memo is an Independent Submission to the RFC Editor by the
Internet Printing Protocol (IPP) Working Group of the IEEE-ISTO
Printer Working Group (PWG), as part of their PWG "IPP Everywhere"
(PWG 5100.14) project for secure mobile printing with vendor-neutral
Client software.
This document obsoletes RFC 3712.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This is a contribution to the RFC Series, independently of any other
RFC stream. The RFC Editor has chosen to publish this document at
its discretion and makes no statement about its value for
implementation or deployment. Documents approved for publication by
the RFC Editor are not a candidate for any level of Internet
Standard; see Section 2 of RFC 5741.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc7612.
Fleming & McDonald Informational [Page 1]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document.
Table of Contents
1. Introduction ....................................................4
1.1. Relationship to SLP Printer Service ........................4
1.2. Source of LDAP Printer Attributes ..........................4
1.3. Source of LDAP Printer Schema OIDs .........................5
1.3.1. IBM Assignments for RFC 3712 ........................5
1.3.2. IEEE-ISTO PWG Assignments ...........................5
1.4. Rationale for Design Choices ...............................5
1.4.1. Rationale for Using DirectoryString Syntax ..........5
1.4.2. Rationale for Using caseIgnoreMatch .................6
1.4.3. Rationale for Using caseIgnoreSubstringsMatch .......7
2. Conventions Used in This Document ...............................8
2.1. Requirements Language ......................................8
2.2. LDAP Schema Descriptions ...................................8
2.3. Abbreviations ..............................................8
3. Definition of Object Classes ....................................9
3.1. slpServicePrinter .........................................10
3.2. printerAbstract ...........................................10
3.3. printerService ............................................11
3.4. printerServiceAuxClass ....................................12
3.5. printerIPP ................................................12
3.6. printerLPR ................................................12
4. Definition of Attribute Types ..................................13
4.1. printer-uri ...............................................15
4.2. printer-xri-supported .....................................16
4.3. printer-name ..............................................18
4.4. printer-natural-language-configured .......................19
4.5. printer-location ..........................................19
4.6. printer-info ..............................................20
4.7. printer-more-info .........................................21
4.8. printer-make-and-model ....................................21
4.9. printer-ipp-versions-supported ............................22
4.10. printer-multiple-document-jobs-supported .................23
4.11. printer-charset-configured ...............................23
4.12. printer-charset-supported ................................24
Fleming & McDonald Informational [Page 2]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.13. printer-generated-natural-language-supported .............24
4.14. printer-document-format-supported ........................25
4.15. printer-color-supported ..................................25
4.16. printer-compression-supported ............................26
4.17. printer-pages-per-minute .................................26
4.18. printer-pages-per-minute-color ...........................27
4.19. printer-finishings-supported .............................27
4.20. printer-number-up-supported ..............................28
4.21. printer-sides-supported ..................................28
4.22. printer-media-supported ..................................29
4.23. printer-media-local-supported ............................30
4.24. printer-resolution-supported .............................30
4.25. printer-print-quality-supported ..........................31
4.26. printer-job-priority-supported ...........................32
4.27. printer-copies-supported .................................32
4.28. printer-job-k-octets-supported ...........................33
4.29. printer-current-operator .................................33
4.30. printer-service-person ...................................34
4.31. printer-delivery-orientation-supported ...................34
4.32. printer-stacking-order-supported .........................35
4.33. printer-output-features-supported ........................36
4.34. printer-aliases ..........................................37
4.35. printer-device-id ........................................37
4.36. printer-device-service-count .............................38
4.37. printer-uuid .............................................38
4.38. printer-charge-info ......................................39
4.39. printer-charge-info-uri ..................................39
4.40. printer-geo-location .....................................40
4.41. printer-ipp-features-supported ...........................41
5. Definition of Syntaxes .........................................42
6. Definition of Matching Rules ...................................42
7. IANA Considerations ............................................42
7.1. Registration of Attribute Types ...........................43
7.2. Object Classes and Attribute Types from RFC 3712 ..........44
8. Internationalization Considerations ............................45
9. Security Considerations ........................................45
10. References ....................................................46
10.1. Normative References .....................................46
10.2. Informative References ...................................50
Appendix A. Changes since RFC 3712 ................................52
Acknowledgments ...................................................54
Authors' Addresses ................................................54
Fleming & McDonald Informational [Page 3]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
1. Introduction
This document defines several object classes to provide Lightweight
Directory Access Protocol (LDAP) [RFC4510] applications with flexible
options in defining Printer information using an LDAP schema.
Classes are provided for defining directory entries with common
Printer information as well as for extending existing directory
entries with Service Location Protocol Version 2 (SLPv2) [RFC2608],
Internet Printing Protocol/1.1 (IPP/1.1) [RFC2911], and lineprinter
(LPR) [RFC1179] protocol-specific information.
This memo is an Independent Submission to the RFC Editor by the
Internet Printing Protocol Working Group of the IEEE-ISTO Printer
Working Group, as part of their Printer Working Group (PWG) "IPP
Everywhere" (PWG 5100.14) project for secure mobile printing with
vendor-neutral Client software.
1.1. Relationship to SLP Printer Service
The schema defined in this document is technically aligned with the
stable IANA-registered 'service:printer:' v2.0 template [SLPPRT20],
for compatibility with already-deployed SLPv2 [RFC2608] service
advertising and discovery infrastructure. The attribute syntaxes are
technically aligned with the 'service:printer:' v2.0 template;
therefore, simpler types are sometimes used (for example,
'DirectoryString' [RFC4517] rather than 'labeledURI' [RFC2079] for
the 'printer-uri' attribute).
1.2. Source of LDAP Printer Attributes
The schema defined in this document is based on:
o all of the Printer attributes listed in Appendix E ("Generic
Directory Schema") of "Internet Printing Protocol/1.1: Model and
Semantics" [RFC2911] that are defined in Section 4.4 ("Printer
Description Attributes") of [RFC2911]
o selected Printer attributes defined in "Printer MIB v2" [RFC3805],
"PWG Command Set for IEEE 1284 Device ID v1.0" [PWG5107.2], "IPP
Job and Printer Extensions - Set 3 (JPS3)" [PWG5100.13], and "IPP
Everywhere" [PWG5100.14]
See the table of Printer attributes and source documents in Section 4
("Definition of Attribute Types") of this document.
Fleming & McDonald Informational [Page 4]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
1.3. Source of LDAP Printer Schema OIDs
1.3.1. IBM Assignments for RFC 3712
In March 2000, IBM permanently assigned ASN.1 OIDs to all of the
object classes and attribute types that were defined in the original
LDAP Printer Schema [RFC3712] (see Section 7.2).
1.3.2. IEEE-ISTO PWG Assignments
In October 2011, IBM permanently delegated the base ASN.1 OID
"1.3.18.0.2.24.46" to the IEEE-ISTO PWG for use in any PWG project.
In October 2011, the IEEE-ISTO PWG permanently assigned subordinate
ASN.1 OIDs for all of the new attribute types defined in this updated
LDAP Printer Schema (see Section 7.1).
1.4. Rationale for Design Choices
1.4.1. Rationale for Using DirectoryString Syntax
The attribute syntax 'DirectoryString' (UTF-8 [STD63]) defined in
[RFC4517] is specified for several groups of string attributes that
are defined in this document:
1) URI
- printer-uri, printer-xri-supported, printer-more-info,
printer-charge-info-uri, printer-uuid
The UTF-8 encoding is compatible with deployment of (UTF-8
based) Internationalized Resource Identifiers (IRIs) [RFC3987].
2) Description
- printer-name, printer-location, printer-info,
printer-make-and-model
The UTF-8 encoding supports descriptions in any language,
conformant with the IETF Policy on Character Sets and Languages
[BCP18].
Note: The printer-natural-language-configured attribute contains
a language tag [BCP47] for these description attributes (for
example, to support text-to-speech conversions).
Fleming & McDonald Informational [Page 5]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
3) Keyword
- printer-compression-supported, printer-finishings-supported,
printer-media-supported, printer-media-local-supported,
printer-print-quality-supported
The UTF-8 encoding is compatible with the current IPP/1.1
[RFC2911] definition of the equivalent attributes, most of which
have the IPP/1.1 union syntax 'keyword' or 'name'. The keyword
attributes defined in this document are extensible by site-
specific or vendor-specific 'names' that behave like new
'keywords'.
Note: In IPP/1.1, each value is strongly typed over-the-wire as
either 'keyword' or 'name'. This union selector is not
preserved in the definitions of these equivalent LDAP
attributes.
1.4.2. Rationale for Using caseIgnoreMatch
The EQUALITY matching rule 'caseIgnoreMatch' defined in [RFC4517] is
specified for several groups of string attributes that are defined in
this document:
1) URI
These URI attributes specify EQUALITY matching with
'caseIgnoreMatch' (rather than with 'caseExactMatch') in order to
conform to the spirit of [STD66], which requires case-insensitive
matching on the host part of a URI versus case-sensitive matching
on the remainder of a URI.
These URI attributes follow existing practice of supporting
case-insensitive equality matching for host names in the
associatedDomain attribute defined in [RFC4524].
Either equality matching rule choice would be a compromise:
a) case-sensitive whole URI matching can lead to false negative
matches and has been shown to be fragile (given deployed client
applications that 'pretty up' host names displayed and
transferred in URI);
b) case-insensitive whole URI matching can lead to false positive
matches, although it is a dangerous practice to publish URI
that differ only by case (for example, in the path elements).
Fleming & McDonald Informational [Page 6]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
2) Description
Case-insensitive equality matching is more user-friendly for
description attributes.
3) Keyword
Case-insensitive equality matching is more user-friendly for
keyword attributes.
4) IEEE 1284 Device ID
Case-insensitive equality matching is mandatory for IEEE 1284
Device ID attributes.
1.4.3. Rationale for Using caseIgnoreSubstringsMatch
The SUBSTR matching rule 'caseIgnoreSubstringsMatch' defined in
[RFC4517] is specified for several groups of string attributes that
are defined in this document:
1) URI
These URI attributes follow existing practice of supporting
case-insensitive equality matching for host names in the
associatedDomain attribute defined in [RFC4524].
2) Description
Support for case-insensitive substring matching is more
user-friendly for description attributes.
3) Keyword
Support for case-insensitive substring matching is more
user-friendly for keyword attributes.
4) IEEE 1284 Device ID
Support for case-insensitive substring matching is mandatory for
IEEE 1284 Device ID attributes.
Fleming & McDonald Informational [Page 7]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
2. Conventions Used in This Document
2.1. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [RFC2119].
2.2. LDAP Schema Descriptions
Schema definitions are provided using LDAP [RFC4510] description
formats. Definitions provided here are formatted (line wrapped) for
readability.
2.3. Abbreviations
This document makes use of the following abbreviations (given with
their expanded forms and references for further reading):
IANA - Internet Assigned Numbers Authority
<http://www.iana.org>
IEEE - Institute of Electrical and Electronics Engineers
<http://www.ieee.org>
IPP - Internet Printing Protocol [RFC2911] [PWG5100.12]
<http://www.pwg.org/ipp/>
ISTO - IEEE Industry Standards and Technology Organization
<http://www.ieee-isto.org/>
PWG - IEEE-ISTO Printer Working Group
<http://www.pwg.org>
RFC - Request for Comments
<http://www.rfc-editor.org>
TLS - Transport Layer Security [RFC5246]
URI - Uniform Resource Identifier [STD66]
URL - Uniform Resource Locator [STD66]
UTF-8 - Unicode Transformation Format - 8-bit [STD63]
Fleming & McDonald Informational [Page 8]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
3. Definition of Object Classes
We define the following LDAP object classes for use with both generic
Printer-related information and services specific to SLPv2 [RFC2608],
IPP/1.1 [RFC2911], and LPR [RFC1179].
slpServicePrinter - auxiliary class for SLP-registered Printers
printerAbstract - abstract class for all Printer classes
printerService - structural class for Printers
printerServiceAuxClass - auxiliary class for Printers
printerIPP - auxiliary class for IPP Printers
printerLPR - auxiliary class for LPR Printers
The following are some examples of how applications could choose to
use these classes when creating directory entries:
1) Use printerService for directory entries containing common Printer
information.
2) Use both printerService and slpServicePrinter for directory
entries containing common Printer information for SLP-registered
Printers.
3) Use printerService, printerLPR, and printerIPP for directory
entries containing common Printer information for Printers that
support both LPR and IPP.
4) Use printerServiceAuxClass and object classes not defined by this
document for directory entries containing common Printer
information. In this example, printerServiceAuxClass is used for
extending other structural classes defining Printer information
with common Printer information defined in this document.
Refer to Section 4 for the definition of attribute types referenced
by these object classes. We use attribute names instead of OIDs in
object class definitions for clarity. Some attribute names described
in [RFC2911] have been prefixed with 'printer-' as recommended in
[RFC2926] and [SLPPRT20].
Fleming & McDonald Informational [Page 9]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
3.1. slpServicePrinter
( 1.3.18.0.2.6.254
NAME 'slpServicePrinter'
DESC 'Service Location Protocol (SLP) information.'
AUXILIARY
SUP slpService
)
This auxiliary class defines information specific to the Service
Location Protocol (SLPv2) [RFC2608]. It MAY be used to create new,
or extend existing, directory entries with SLP 'service:printer'
abstract service type information as defined in [SLPPRT20]. This
object class is derived from 'slpService', the parent class for all
SLP services, defined in [RFC2926].
3.2. printerAbstract
( 1.3.18.0.2.6.258
NAME 'printerAbstract'
DESC 'Printer-related information.'
ABSTRACT
SUP top
MAY ( printer-name $
printer-natural-language-configured $
printer-location $
printer-info $
printer-more-info $
printer-make-and-model $
printer-multiple-document-jobs-supported $
printer-charset-configured $
printer-charset-supported $
printer-generated-natural-language-supported $
printer-document-format-supported $
printer-color-supported $
printer-compression-supported $
printer-pages-per-minute $
printer-pages-per-minute-color $
printer-finishings-supported $
printer-number-up-supported $
printer-sides-supported $
printer-media-supported $
printer-media-local-supported $
printer-resolution-supported $
printer-print-quality-supported $
printer-job-priority-supported $
printer-copies-supported $
printer-job-k-octets-supported $
Fleming & McDonald Informational [Page 10]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
printer-current-operator $
printer-service-person $
printer-delivery-orientation-supported $
printer-stacking-order-supported $
printer-output-features-supported $
printer-device-id $
printer-device-service-count $
printer-uuid $
printer-charge-info $
printer-charge-info-uri $
printer-geo-location )
)
This abstract class defines Printer information. It is a base class
for deriving other Printer-related classes, such as, but not limited
to, classes defined in this document. It defines a common set of
Printer attributes that are not specific to any one type of service,
protocol, or operating system.
3.3. printerService
( 1.3.18.0.2.6.255
NAME 'printerService'
DESC 'Printer information.'
STRUCTURAL
SUP printerAbstract
MAY ( printer-uri $
printer-xri-supported )
)
This structural class defines Printer information. It is derived
from class printerAbstract and thus inherits common Printer
attributes. This class can be used with or without auxiliary classes
to define Printer information. Auxiliary classes can be used to
extend the common Printer information with information specific to
the protocol, service, or operating system.
Note: When extending other structural classes with auxiliary classes,
printerService SHOULD NOT be used.
Fleming & McDonald Informational [Page 11]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
3.4. printerServiceAuxClass
( 1.3.18.0.2.6.257
NAME 'printerServiceAuxClass'
DESC 'Printer information.'
AUXILIARY
SUP printerAbstract
MAY ( printer-uri $
printer-xri-supported )
)
This auxiliary class defines Printer information. It is derived from
class printerAbstract and thus inherits common Printer attributes.
3.5. printerIPP
( 1.3.18.0.2.6.256
NAME 'printerIPP'
DESC 'Internet Printing Protocol (IPP) information.'
AUXILIARY
SUP top
MAY ( printer-ipp-versions-supported $
printer-ipp-features-supported $
printer-multiple-document-jobs-supported )
)
This auxiliary class defines Internet Printing Protocol (IPP/1.1)
[RFC2911] information. It is used to extend structural classes with
IPP-specific Printer information.
Note: See "Internet Printing Protocol/1.1: IPP URL Scheme" [RFC3510]
and "Internet Printing Protocol (IPP) over HTTPS Transport Binding
and the 'ipps' URI Scheme" [RFC7472] for conforming URI for IPP
Printers.
3.6. printerLPR
( 1.3.18.0.2.6.253
NAME 'printerLPR'
DESC 'LPR information.'
AUXILIARY
SUP top
MUST ( printer-name )
MAY ( printer-aliases )
)
This auxiliary class defines LPR [RFC1179] information. It is used
to identify directory entries that support LPR.
Fleming & McDonald Informational [Page 12]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4. Definition of Attribute Types
The following attribute types are referenced by the object classes
defined in Section 3.
The following attribute types reference syntax OIDs defined in
Section 3 of [RFC4517] (see Section 5 ("Definition of Syntaxes")
below).
The following attribute types reference matching rule names (instead
of OIDs) for clarity (see Section 6 below). For optional attributes,
if the Printer information is not known, the attribute value
SHOULD NOT be set. In the following definitions, referenced matching
rules are defined in Section 4 of [RFC4517] and discussed in
Section 6 ("Definition of Matching Rules") later in this document.
Note: For compatibility with existing implementations of [RFC3712]
and underlying string length limits in [RFC2707], [RFC2911],
[RFC3805], [PWG5107.2], [PWG5100.13], and [PWG5100.14],
implementations of the attributes defined in this document SHOULD NOT
exceed those underlying string length limits (to avoid truncation and
false matches).
Note: For interoperability and consistent text display, values of
attributes defined in this document (a) SHOULD be normalized as
recommended in "Unicode Format for Network Interchange" [RFC5198];
(b) SHOULD NOT contain DEL or any C0 or C1 control characters except
for HT, CR, and LF; (c) SHOULD only contain CR and LF characters
together (not as singletons); and (d) SHOULD NOT contain HT, CR, or
LF characters in names, e.g., printer-name and printer-aliases.
Note: Some of the following attributes are described as 'List of xxx'
(using a comma as the member delimiter). Some other attributes are
described as 'One of xxx' (single-valued). In all cases, any
attribute can have multiple values represented as multiple instances,
except where explicitly restricted in syntax to be single-valued.
Note: Values of the string attributes printer-xri-supported and
printer-resolution-supported use different field delimiters ('<' and
'>', respectively). These two field delimiters are different for
compatibility with the corresponding attributes in the IANA-
registered SLP 'service:printer:' v2.0 template [SLPPRT20], which was
defined before the original LDAP Printer Schema [RFC3712] was
written.
Fleming & McDonald Informational [Page 13]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
The following table is a summary of the attribute names defined by
this document and their corresponding source document names as
defined in [RFC2911], [RFC3805], [PWG5107.2], or [PWG5100.13]. Some
source attribute names have been prefixed with 'printer-' as
recommended in [RFC2926], to address the flat namespace for LDAP
identifiers.
LDAP and SLP Printer Schema Source Document and Attribute Name
------------------------------ -------------------------------------
*** IPP/1.1 and Semantics Model [RFC2911]
printer-uri
printer-xri-supported
[printer-uri-supported]
[uri-authentication-supported]
[uri-security-supported]
printer-name printer-name
printer-natural-language-configured
natural-language-configured
printer-location printer-location
printer-info printer-info
printer-more-info printer-more-info
printer-make-and-model printer-make-and-model
printer-ipp-versions-supported ipp-versions-supported
printer-multiple-document-jobs-supported
multiple-document-jobs-supported
printer-charset-configured charset-configured
printer-charset-supported charset-supported
printer-generated-natural-language-supported
generated-natural-language-supported
printer-document-format-supported
document-format-supported
printer-color-supported color-supported
printer-compression-supported compression-supported
printer-pages-per-minute pages-per-minute
printer-pages-per-minute-color pages-per-minute-color
printer-finishings-supported finishings-supported
printer-number-up-supported number-up-supported
printer-sides-supported sides-supported
printer-media-supported media-supported
printer-media-local-supported [site names from IPP media-supported]
printer-resolution-supported printer-resolution-supported
printer-print-quality-supported print-quality-supported
printer-job-priority-supported job-priority-supported
printer-copies-supported copies-supported
printer-job-k-octets-supported job-k-octets-supported
Fleming & McDonald Informational [Page 14]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
*** Printer MIB v2 [RFC3805]
printer-current-operator prtGeneralCurrentOperator
printer-service-person prtGeneralServicePerson
printer-delivery-orientation-supported
prtOutputPageDeliveryOrientation
printer-stacking-order-supported
prtOutputStackingOrder
printer-output-features-supported
[prtOutputBursting]
[prtOutputDecollating]
[prtOutputPageCollated]
[prtOutputOffsetStacking]
printer-aliases prtGeneralPrinterName
*** Cmd Set 1284 Device ID [PWG5107.2]
printer-device-id printer-device-id
*** IPP Job/Printer Ext Set3 [PWG5100.13]
printer-device-service-count device-service-count
printer-uuid printer-uuid
printer-charge-info printer-charge-info
printer-charge-info-uri printer-charge-info-uri
printer-geo-location printer-geo-location
printer-ipp-features-supported ipp-features-supported
4.1. printer-uri
( 1.3.18.0.2.4.1140
NAME 'printer-uri'
DESC 'A URI supported by this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
If the printer-xri-supported LDAP attribute is implemented, then this
printer-uri value MUST be listed in printer-xri-supported.
See [STD66] for details of URI syntax.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 1023 octets in length.
Note: LDAP application clients SHOULD NOT attempt to use malformed
URI values read from this attribute. LDAP administrative clients
SHOULD NOT write malformed URI values into this attribute.
Fleming & McDonald Informational [Page 15]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: See "Internet Printing Protocol/1.1: IPP URL Scheme" [RFC3510]
and "Internet Printing Protocol (IPP) over HTTPS Transport Binding
and the 'ipps' URI Scheme" [RFC7472] for conforming URI for IPP
Printers.
Note: For SLP-registered Printers, the LDAP printer-uri attribute
SHOULD be set to the value of the SLP-registered URL of the Printer,
for interworking with SLPv2 [RFC2608] service discovery.
Note: See Sections 1.4.1, 1.4.2, and 1.4.3 for rationale for design
choices.
4.2. printer-xri-supported
( 1.3.18.0.2.4.1107
NAME 'printer-xri-supported'
DESC 'An XRI (extended resource identifier) supported by
this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
Each value of this attribute MUST consist of a URI (uniform resource
identifier) followed by (optional) authentication and security
fields.
Each XRI field MUST be delimited by '<', with optional trailing
whitespace. For example:
'uri=ipp://example.com/ipp< auth=digest< sec=tls<'
'uri=ipps://example.com/ipp< auth=digest< sec=tls<'
'uri=lpr://example.com/lpr< auth=none< sec=none<'
'uri=mailto:printer@example.com< auth=none< sec=none<'
Note: See the note in Section 4 about the different field delimiters
used in the printer-xri-supported and printer-resolution-supported
attributes ('<' and '>', respectively), chosen for compatibility with
the IANA-registered SLP 'service:printer:' v2.0 template [SLPPRT20].
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
See [STD66] for details of URI syntax.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 1023 octets in length.
Fleming & McDonald Informational [Page 16]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: LDAP application clients SHOULD NOT attempt to use malformed
URI values read from this attribute. LDAP administrative clients
SHOULD NOT write malformed URI values into this attribute.
Note: This attribute is based on the IPP/1.1 [RFC2911] attributes
'printer-uri-supported', 'uri-authentication-supported', and
'uri-security-supported' (called the 'Three Musketeers' because they
are parallel, ordered attributes). This attribute unfolds those
IPP/1.1 attributes and thus avoids the ordering (and same number of
values) constraints of the IPP/1.1 separate attributes.
Defined keywords for fields include:
'uri' (IPP 'printer-uri-supported')
'auth' (IPP 'uri-authentication-supported')
'sec' (IPP 'uri-security-supported')
A missing 'auth' field SHOULD be interpreted to mean 'none'. Per
IPP/1.1 [RFC2911], "IPP Job and Printer Extensions - Set 3 (JPS3)"
[PWG5100.13], and the IANA IPP registry [IANAIPP], defined values of
the 'auth' field include:
'none' (no authentication for this URI)
'requesting-user-name' (from operation request)
'basic' (HTTP/1.1 Basic [RFC2617] and [RFC7235])
'digest' (HTTP/1.1 Digest [RFC2617] and [RFC7235])
'certificate' (X.509 Certificate [RFC5280] and [RFC6818])
'negotiate' (HTTP/1.1 Negotiate [RFC4559])
The 'certificate' value refers to the IPP Client certificate
extracted from the TLS session.
A missing 'sec' field SHOULD be interpreted to mean 'none'. Per
IPP/1.1 [RFC2911] and the IANA IPP registry [IANAIPP], defined values
of the 'sec' field include:
'none' (no security for this URI)
'ssl3' (Netscape's Secure Socket Layer protocol (SSL3))
'tls' (IETF TLS, [RFC5246])
Note: The syntax and delimiter for this attribute are aligned with
the equivalent attribute in the 'service:printer:' v2.0 template
[SLPPRT20]. Whitespace is permitted after (but not before) the
delimiter '<'.
Fleming & McDonald Informational [Page 17]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: See "Internet Printing Protocol/1.1: IPP URL Scheme" [RFC3510]
and "Internet Printing Protocol (IPP) over HTTPS Transport Binding
and the 'ipps' URI Scheme" [RFC7472] for conforming URI for IPP
Printers.
Note: See Sections 1.4.1, 1.4.2, and 1.4.3 for rationale for design
choices.
4.3. printer-name
( 1.3.18.0.2.4.1135
NAME 'printer-name'
DESC 'The site-specific administrative name of this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
Values of this attribute SHOULD be specified in the language
specified in printer-natural-language-configured (for example, to
support text-to-speech conversions), although the Printer's name MAY
be specified in any language.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
Note: This name can be the last part of the Printer's URI, or it can
be completely unrelated. This name can contain characters that are
not allowed in a conventional URI (see [STD66]).
Note: For interoperability, values of this attribute (a) SHOULD be
normalized as recommended in "Unicode Format for Network Interchange"
[RFC5198]; and (b) SHOULD NOT contain DEL or any C0 or C1 control
characters.
Fleming & McDonald Informational [Page 18]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.4. printer-natural-language-configured
( 1.3.18.0.2.4.1119
NAME 'printer-natural-language-configured'
DESC 'The configured natural language for LDAP attributes of
syntax DirectoryString (UTF-8) in this directory entry.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
Also, a possible natural language for IPP protocol string attributes
set by operator, system administrator, or manufacturer. Also, the
(declared) natural language of the printer-name, printer-location,
printer-info, and printer-make-and-model attributes of this Printer.
Values of language tags MUST conform to "Tags for Identifying
Languages" [BCP47]. For example:
'en-us' (English as spoken in the US)
'fr-fr' (French as spoken in France)
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 63 octets in length.
Note: For compatibility with IPP/1.1 [RFC2911], language tags in this
attribute SHOULD be lowercase normalized.
4.5. printer-location
( 1.3.18.0.2.4.1136
NAME 'printer-location'
DESC 'The physical location of this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
For example:
'Room 123A'
'Second floor of building XYZ'
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 127 octets in length.
Fleming & McDonald Informational [Page 19]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: For interoperability and consistent text display, values of
this attribute (a) SHOULD be normalized as recommended in "Unicode
Format for Network Interchange" [RFC5198]; (b) SHOULD NOT contain DEL
or any C0 or C1 control characters except for HT, CR, and LF; and
(c) SHOULD only contain CR and LF characters together (not as
singletons).
4.6. printer-info
( 1.3.18.0.2.4.1139
NAME 'printer-info'
DESC 'Descriptive information about this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
For example:
'This Printer can be used for printing color transparencies for
HR presentations'
'Out of courtesy for others, please print only small (1-5 page)
jobs at this Printer'
'This Printer is going away on July 1, 1997; please find a new
Printer'
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 127 octets in length.
Note: For interoperability and consistent text display, values of
this attribute (a) SHOULD be normalized as recommended in "Unicode
Format for Network Interchange" [RFC5198]; (b) SHOULD NOT contain DEL
or any C0 or C1 control characters except for HT, CR, and LF; and
(c) SHOULD only contain CR and LF characters together (not as
singletons).
Fleming & McDonald Informational [Page 20]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.7. printer-more-info
( 1.3.18.0.2.4.1134
NAME 'printer-more-info'
DESC 'A URI for more information about this specific Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
For example, this could be an HTTP URI referencing an HTML page
accessible to a Web Browser. The information obtained from this URI
is intended for end user consumption.
See [STD66] for details of URI syntax.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 1023 octets in length.
Note: LDAP application clients SHOULD NOT attempt to use malformed
URI values read from this attribute. LDAP administrative clients
SHOULD NOT write malformed URI values into this attribute.
Note: See Sections 1.4.1, 1.4.2, and 1.4.3 for rationale for design
choices.
4.8. printer-make-and-model
( 1.3.18.0.2.4.1138
NAME 'printer-make-and-model'
DESC 'Make and model of this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 127 octets in length.
Note: The Printer manufacturer MAY initially populate this attribute.
Fleming & McDonald Informational [Page 21]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: For interoperability and consistent text display, values of
this attribute (a) SHOULD be normalized as recommended in "Unicode
Format for Network Interchange" [RFC5198]; (b) SHOULD NOT contain DEL
or any C0 or C1 control characters except for HT, CR, and LF; and
(c) SHOULD only contain CR and LF characters together (not as
singletons).
4.9. printer-ipp-versions-supported
( 1.3.18.0.2.4.1133
NAME 'printer-ipp-versions-supported'
DESC 'Comma-delimited list of IPP versions supported by
this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'1.1,2.0'
Note: Length overflow in values of this attribute MUST be handled by
multiple instances of this attribute, i.e., individual
comma-delimited list members MUST NOT be truncated.
The IPP protocol version(s) MUST include major and minor versions,
i.e., the exact version numbers for which this Printer implementation
meets the IPP version-specific conformance requirements as registered
in the IANA IPP registry [IANAIPP].
IANA-registered versions of IPP currently are:
'1.0' (IPP/1.0 [RFC2566], OBSOLETE)
'1.1' (IPP/1.1 [RFC2911])
'2.0' (IPP/2.0 [PWG5100.12])
'2.1' (IPP/2.1 [PWG5100.12])
'2.2' (IPP/2.2 [PWG5100.12])
Fleming & McDonald Informational [Page 22]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.10. printer-multiple-document-jobs-supported
( 1.3.18.0.2.4.1132
NAME 'printer-multiple-document-jobs-supported'
DESC 'Indicates whether or not this Printer supports more than one
document per job.'
EQUALITY booleanMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
SINGLE-VALUE
)
4.11. printer-charset-configured
( 1.3.18.0.2.4.1109
NAME 'printer-charset-configured'
DESC 'The configured charset for IPP protocol values of error
and status messages generated by this Printer.'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
Also, a possible charset for IPP protocol string attributes set by
operator, system administrator, or manufacturer. For example:
'utf-8' (ISO 10646/Unicode in UTF-8 transform [STD63])
'iso-8859-1' (ISO Latin1)
Values of charset tags SHOULD be defined in the IANA registry of
Character Sets [IANACHAR] (see also [BCP19]), and the '(preferred
MIME name)' SHOULD be used as the charset tag in this attribute.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 63 octets in length.
Note: For compatibility with IPP/1.1 [RFC2911], charset tags in this
attribute SHOULD be lowercase normalized.
Fleming & McDonald Informational [Page 23]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.12. printer-charset-supported
( 1.3.18.0.2.4.1131
NAME 'printer-charset-supported'
DESC 'One of the charsets supported for IPP protocol values of
IPP string attributes that correspond to attributes of
syntax DirectoryString (UTF-8) for this directory entry.'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'utf-8' (ISO 10646/Unicode in UTF-8 transform [STD63])
'iso-8859-1' (ISO Latin1)
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
Values of charset tags SHOULD be defined in the IANA registry of
Character Sets [IANACHAR] (see also [BCP19]), and the '(preferred
MIME name)' SHOULD be used as the charset tag in this attribute.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 63 octets in length.
Note: For compatibility with IPP/1.1 [RFC2911], charset tags in this
attribute SHOULD be lowercase normalized.
4.13. printer-generated-natural-language-supported
( 1.3.18.0.2.4.1137
NAME 'printer-generated-natural-language-supported'
DESC 'One of the natural languages supported for LDAP attributes of
syntax DirectoryString (UTF-8) in this directory entry.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
Values of language tags SHOULD conform to "Tags for Identifying
Languages" [BCP47]. For example:
'en-us' (English as spoken in the US)
'fr-ca' (French as spoken in Canada)
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
Fleming & McDonald Informational [Page 24]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 63 octets in length.
Note: For compatibility with IPP/1.1 [RFC2911], language tags in this
attribute SHOULD be lowercase normalized.
4.14. printer-document-format-supported
( 1.3.18.0.2.4.1130
NAME 'printer-document-format-supported'
DESC 'One of the source document formats that can be interpreted
and printed by this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
Values of document formats SHOULD be MIME media types defined in the
IANA registry of MIME Media Types [IANAMIME] (see also [BCP13]).
For example:
'application/postscript' (Adobe PostScript)
'text/plain' (plain text)
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
4.15. printer-color-supported
( 1.3.18.0.2.4.1129
NAME 'printer-color-supported'
DESC 'Indicates whether or not this Printer is capable of any type of
color printing at all, including highlight color.'
EQUALITY booleanMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
SINGLE-VALUE
)
Fleming & McDonald Informational [Page 25]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.16. printer-compression-supported
( 1.3.18.0.2.4.1128
NAME 'printer-compression-supported'
DESC 'Comma-delimited list of compression algorithms supported by
this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'none'
'deflate,gzip'
Note: Length overflow in values of this attribute MUST be handled by
multiple instances of this attribute, i.e., individual
comma-delimited list members MUST NOT be truncated.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
Values defined in IPP/1.1 [RFC2911] and recorded in the IANA IPP
registry [IANAIPP] include:
'none' (no compression is used)
'deflate' (public domain ZIP described in [RFC1951])
'gzip' (GNU ZIP described in [RFC1952])
'compress' (UNIX compression described in [RFC1977])
4.17. printer-pages-per-minute
( 1.3.18.0.2.4.1127
NAME 'printer-pages-per-minute'
DESC 'The nominal number of pages per minute that can be output by
this Printer.'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE
)
This attribute is informative, not a service guarantee. Typically,
it is the value used in marketing literature to describe this Printer
-- for example, the value for a simplex or black-and-white print
mode.
Fleming & McDonald Informational [Page 26]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.18. printer-pages-per-minute-color
( 1.3.18.0.2.4.1126
NAME 'printer-pages-per-minute-color'
DESC 'The nominal number of color pages per minute that can be
output by this Printer.'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE
)
This attribute is informative, not a service guarantee. Typically,
it is the value used in marketing literature to describe this
Printer.
4.19. printer-finishings-supported
( 1.3.18.0.2.4.1125
NAME 'printer-finishings-supported'
DESC 'Comma-delimited list of finishing operations supported by
this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'staple'
'staple,punch,bind'
Note: Length overflow in values of this attribute MUST be handled by
multiple instances of this attribute, i.e., individual
comma-delimited list members MUST NOT be truncated.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
Values defined in IPP/1.1 [RFC2911] and recorded in the IANA IPP
registry [IANAIPP] include:
'none', 'staple', 'punch', 'cover', 'bind', 'saddle-stitch',
'edge-stitch', 'staple-top-left', 'staple-bottom-left',
'staple-top-right', 'staple-bottom-right', 'edge-stitch-left',
'edge-stitch-top', 'edge-stitch-right', 'edge-stitch-bottom',
'staple-dual-left', 'staple-dual-top', 'staple-dual-right',
'staple-dual-bottom'.
Fleming & McDonald Informational [Page 27]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: Implementations MAY support other values.
4.20. printer-number-up-supported
( 1.3.18.0.2.4.1124
NAME 'printer-number-up-supported'
DESC 'Maximum number of print-stream pages that can be imposed upon
a single side of an instance of a selected medium by this
Printer.'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE
)
For example:
'1'
'4'
Note: Values of this attribute differ from the corresponding IPP
attribute, in that only the maximum number-up is mapped from the
corresponding IPP attribute 'number-up-supported' defined in
[RFC2911].
4.21. printer-sides-supported
( 1.3.18.0.2.4.1123
NAME 'printer-sides-supported'
DESC 'Comma-delimited list of impression sides (one or two) and the
two-sided impression rotations supported by this Printer.'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'one-sided'
'one-sided,two-sided-short-edge'
Note: Length overflow in values of this attribute MUST be handled by
multiple instances of this attribute, i.e., individual
comma-delimited list members MUST NOT be truncated.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
Fleming & McDonald Informational [Page 28]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Values defined in IPP/1.1 [RFC2911] and recorded in the IANA IPP
registry [IANAIPP] are:
'one-sided'
'two-sided-long-edge'
'two-sided-short-edge'
4.22. printer-media-supported
( 1.3.18.0.2.4.1122
NAME 'printer-media-supported'
DESC 'One of the names/sizes/types/colors of the media supported by
this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
Values SHOULD conform to "PWG Media Standardized Names 2.0 (MSN2)"
[PWG5101.1].
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
Values of standardized media size names defined in [PWG5101.1] and
recorded in the IANA IPP registry [IANAIPP] include:
'na_letter_8.5x11in'
'iso_a4_210x297mm'
Values of standardized media types defined in [PWG5101.1] and
recorded in the IANA IPP registry [IANAIPP] include:
'envelope'
'stationery'
Values of standardized media colors defined in [PWG5101.1] and
recorded in the IANA IPP registry [IANAIPP] include:
'white'
'blue'
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
Fleming & McDonald Informational [Page 29]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.23. printer-media-local-supported
( 1.3.18.0.2.4.1117
NAME 'printer-media-local-supported'
DESC 'One of the site-specific media supported by this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
Values SHOULD conform to "PWG Media Standardized Names 2.0 (MSN2)"
[PWG5101.1].
For example:
'custom_purchasing-form_8.5x11in' (site-specific name)
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
4.24. printer-resolution-supported
( 1.3.18.0.2.4.1121
NAME 'printer-resolution-supported'
DESC 'One of the resolutions supported for printing documents by
this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
Each resolution value MUST be a string containing three fields:
1) Cross-feed direction resolution (positive integer);
2) Feed direction resolution (positive integer);
3) Unit -- 'dpi' (dots per inch) or 'dpcm' (dots per centimeter).
Each resolution field MUST be delimited by '>', with optional
trailing whitespace. For example:
'300> 300> dpi>'
'600> 600> dpi>'
Fleming & McDonald Informational [Page 30]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: See the note in Section 4 about the different field delimiters
used in the printer-xri-supported and printer-resolution-supported
attributes ('<' and '>', respectively), chosen for compatibility with
the IANA-registered SLP 'service:printer:' v2.0 template [SLPPRT20].
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
Note: This attribute is based on 'printer-resolution-supported'
defined in IPP/1.1 [RFC2911] with a complex encoding derived from
'prtMarkerAddressabilityFeedDir', 'prtMarkerAddressabilityXFeedDir',
and 'prtMarkerAddressabilityUnit' defined in "Printer MIB v2"
[RFC3805] (which have integer encodings).
Note: The syntax and delimiter for this attribute are aligned with
the equivalent attribute in the 'service:printer:' v2.0 template
[SLPPRT20]. Whitespace is permitted after (but not before) the
delimiter '>'.
4.25. printer-print-quality-supported
( 1.3.18.0.2.4.1120
NAME 'printer-print-quality-supported'
DESC 'Comma-delimited list of print qualities supported
for printing documents on this Printer.'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'unknown'
'draft,normal,high'
Note: Length overflow in values of this attribute MUST be handled by
multiple instances of this attribute, i.e., individual
comma-delimited list members MUST NOT be truncated.
Values defined in IPP/1.1 [RFC2911] and recorded in the IANA IPP
registry [IANAIPP] include:
'draft'
'normal'
'high'
Note: The value 'unknown' MUST only be reported if the corresponding
IPP attribute is not present, i.e., the value 'unknown' is an
artifact of this LDAP mapping.
Fleming & McDonald Informational [Page 31]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.26. printer-job-priority-supported
( 1.3.18.0.2.4.1110
NAME 'printer-job-priority-supported'
DESC 'Indicates the number of job priority levels supported by
this Printer.'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE
)
An IPP/1.1 [RFC2911] conformant Printer, which supports job priority,
always supports a full range of priorities from '1' to '100' (to
ensure consistent behavior); therefore, this attribute describes the
'granularity' of priority supported. Values of this attribute are
from '1' to '100'.
4.27. printer-copies-supported
( 1.3.18.0.2.4.1118
NAME 'printer-copies-supported'
DESC 'The maximum number of copies of a document that can be printed
as a single job on this Printer.'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE
)
A positive value indicates the maximum supported copies. A value of
'0' indicates no maximum limit. A value of '-1' indicates 'unknown'.
Note: The syntax and values for this attribute are aligned with the
equivalent attribute in the 'service:printer:' v2.0 template
[SLPPRT20].
Fleming & McDonald Informational [Page 32]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.28. printer-job-k-octets-supported
( 1.3.18.0.2.4.1111
NAME 'printer-job-k-octets-supported'
DESC 'The maximum size of an incoming print job that this Printer
will accept, in kilobytes (1,024 octets).'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE
)
A positive value indicates the maximum supported job size. A value
of '0' indicates no maximum limit. A value of '-1' indicates
'unknown'.
Note: The syntax and values for this attribute are aligned with the
equivalent attribute in the 'service:printer:' v2.0 template
[SLPPRT20].
4.29. printer-current-operator
( 1.3.18.0.2.4.1112
NAME 'printer-current-operator'
DESC 'The identity of the current human operator responsible for
operating this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
The value of this attribute SHOULD include information that would
enable other humans to reach the operator, such as a telephone
number.
Note: For interoperability and consistent text display, values of
this attribute (a) SHOULD be normalized as recommended in "Unicode
Format for Network Interchange" [RFC5198]; (b) SHOULD NOT contain DEL
or any C0 or C1 control characters except for HT, CR, and LF; and
(c) SHOULD only contain CR and LF characters together (not as
singletons).
Fleming & McDonald Informational [Page 33]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.30. printer-service-person
( 1.3.18.0.2.4.1113
NAME 'printer-service-person'
DESC 'The identity of the current human service person responsible
for servicing this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
The value of this attribute SHOULD include information that would
enable other humans to reach the service person, such as a telephone
number.
Note: For interoperability and consistent text display, values of
this attribute (a) SHOULD be normalized as recommended in "Unicode
Format for Network Interchange" [RFC5198]; (b) SHOULD NOT contain DEL
or any C0 or C1 control characters except for HT, CR, and LF; and
(c) SHOULD only contain CR and LF characters together (not as
singletons).
4.31. printer-delivery-orientation-supported
( 1.3.18.0.2.4.1114
NAME 'printer-delivery-orientation-supported'
DESC 'Comma-delimited list of delivery orientations of pages as they
are printed and ejected supported by this Printer.'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'unknown'
'face-up,face-down'
Values defined in "Printer MIB v2" [RFC3805] for
prtOutputPageDeliveryOrientation are:
'face-up'
'face-down'
Note: The value 'unknown' MUST only be reported if the corresponding
Printer MIB attribute is not present, i.e., the value 'unknown' is an
artifact of this LDAP mapping.
Fleming & McDonald Informational [Page 34]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: The syntax and values for this attribute are aligned with the
equivalent attribute in the 'service:printer:' v2.0 template
[SLPPRT20].
4.32. printer-stacking-order-supported
( 1.3.18.0.2.4.1115
NAME 'printer-stacking-order-supported'
DESC 'Comma-delimited list of stacking orders of pages as they are
printed and ejected supported by this Printer.'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'unknown'
'first-to-last'
'first-to-last,last-to-first'
Values defined in "Printer MIB v2" [RFC3805] for
prtOutputStackingOrder are:
'first-to-last'
'last-to-first'
Note: The value 'unknown' MUST only be reported if the corresponding
Printer MIB attribute is not present, i.e., the value 'unknown' is an
artifact of this LDAP mapping.
Note: The syntax and values for this attribute are aligned with the
equivalent attribute in the 'service:printer:' v2.0 template
[SLPPRT20].
Fleming & McDonald Informational [Page 35]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.33. printer-output-features-supported
( 1.3.18.0.2.4.1116
NAME 'printer-output-features-supported'
DESC 'Comma-delimited list of output features supported by
this Printer.'
EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'unknown'
'bursting,decollating'
'offset-stacking'
Note: Length overflow in values of this attribute MUST be handled by
multiple instances of this attribute, i.e., individual
comma-delimited list members MUST NOT be truncated.
Values defined in "Printer MIB v2" [RFC3805] for prtOutputBursting,
prtOutputDecollating, prtOutputPageCollated, and
prtOutputOffsetStacking are:
'bursting'
'decollating'
'page-collating'
'offset-stacking'
Note: The value 'unknown' MUST only be reported if the corresponding
Printer MIB attributes are not present, i.e., the value 'unknown' is
an artifact of this LDAP mapping.
Note: The syntax and values for this attribute are aligned with the
equivalent attribute in the 'service:printer:' v2.0 template
[SLPPRT20].
Note: Implementations MAY support other values.
Fleming & McDonald Informational [Page 36]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.34. printer-aliases
( 1.3.18.0.2.4.1108
NAME 'printer-aliases'
DESC 'One of the site-specific administrative names of this Printer
in addition to the value specified for printer-name.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
Values of this attribute SHOULD be specified in the language
specified in printer-natural-language-configured (for example, to
support text-to-speech conversions), although the Printer's alias MAY
be specified in any language.
Note: Multiple values for this attribute are represented as multiple
instances of this attribute.
Note: For compatibility with IPP/1.1 [RFC2911], values of this
attribute SHOULD NOT exceed 255 octets in length.
Note: For interoperability, values of this attribute (a) SHOULD be
normalized as recommended in "Unicode Format for Network Interchange"
[RFC5198]; and (b) SHOULD NOT contain DEL or any C0 or C1 control
characters.
4.35. printer-device-id
( 1.3.18.0.2.24.46.1.101
NAME 'printer-device-id'
DESC 'The IEEE 1284 Device ID for this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
Values of this attribute SHOULD conform to "PWG Command Set Format
for IEEE 1284 Device ID v1.0" [PWG5107.2].
Note: For compatibility with [PWG5100.14] and [PWG5107.2], values of
this attribute SHOULD NOT exceed 1023 octets in length.
Fleming & McDonald Informational [Page 37]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.36. printer-device-service-count
( 1.3.18.0.2.24.46.1.102
NAME 'printer-device-service-count'
DESC 'The number of Printer (print service) instances configured on
this Imaging Device (host system).'
EQUALITY integerMatch
ORDERING integerOrderingMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE
)
A positive value indicates the number of Printer (print service)
instances. A value of '-1' indicates 'unknown'. A value of '0' is
not meaningful (because this attribute must be reported by some
Printer instance).
Note: The syntax and values for this attribute are aligned with the
equivalent 'device-service-count' attribute defined in [PWG5100.13].
4.37. printer-uuid
( 1.3.18.0.2.24.46.1.104
NAME 'printer-uuid'
DESC 'A URN specifying the UUID of this Printer (print service)
instance on this Imaging Device (host system).'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
For example:
'urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6'
Values of this attribute MUST conform to the Universally Unique
Identifier (UUID) URN namespace [RFC4122].
Note: For compatibility with [PWG5100.13] and [RFC4122], values of
this attribute SHOULD NOT exceed 45 octets in length.
Note: LDAP application clients SHOULD NOT attempt to use malformed
URN values read from this attribute. LDAP administrative clients
SHOULD NOT write malformed URN values into this attribute.
Note: The syntax and values for this attribute are aligned with the
equivalent 'printer-uuid' attribute defined in [PWG5100.13].
Fleming & McDonald Informational [Page 38]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.38. printer-charge-info
( 1.3.18.0.2.24.46.1.105
NAME 'printer-charge-info'
DESC 'Descriptive information about paid printing services for this
Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
For example:
'This Printer can be used for paid printing at 2 cents/page.'
Note: For compatibility with [PWG5100.13], values of this attribute
SHOULD NOT exceed 1023 octets in length.
Note: For interoperability and consistent text display, values of
this attribute (a) SHOULD be normalized as recommended in "Unicode
Format for Network Interchange" [RFC5198]; (b) SHOULD NOT contain any
C0 or C1 control characters except for HT, CR, and LF; and (c) SHOULD
only contain CR and LF characters together (not as singletons).
Note: The syntax and values for this attribute are aligned with the
equivalent 'printer-charge-info' attribute defined in [PWG5100.13].
4.39. printer-charge-info-uri
( 1.3.18.0.2.24.46.1.106
NAME 'printer-charge-info-uri'
DESC 'A URI for a human-readable Web page for paid printing services
for this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
For example:
'http://example.com/charges'
See [STD66] for details of URI syntax.
Note: For compatibility with IPP/1.1 [RFC2911] and [PWG5100.13],
values of this attribute SHOULD NOT exceed 1023 octets in length.
Fleming & McDonald Informational [Page 39]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: LDAP application clients SHOULD NOT attempt to use malformed
URI values read from this attribute. LDAP administrative clients
SHOULD NOT write malformed URI values into this attribute.
Note: The syntax and values for this attribute are aligned with the
equivalent 'printer-charge-info-uri' attribute defined in
[PWG5100.13].
4.40. printer-geo-location
( 1.3.18.0.2.24.46.1.107
NAME 'printer-geo-location'
DESC 'A geo: URI specifying the geographic location of this Printer.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SINGLE-VALUE
)
For example:
'geo:13.4125,103.8667'
Values of this attribute MUST conform to the 'geo' URI scheme
[RFC5870].
Note: For compatibility with IPP/1.1 [RFC2911] and [PWG5100.13],
values of this attribute SHOULD NOT exceed 1023 octets in length.
Note: LDAP application clients SHOULD NOT attempt to use malformed
URI values read from this attribute. LDAP administrative clients
SHOULD NOT write malformed URI values into this attribute.
Note: The syntax and values for this attribute are aligned with the
equivalent 'printer-geo-location' attribute defined in [PWG5100.13].
Fleming & McDonald Informational [Page 40]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
4.41. printer-ipp-features-supported
( 1.3.18.0.2.24.46.1.108
NAME 'printer-ipp-features-supported'
DESC 'Comma-delimited list of IPP protocol features that
this Printer supports.'
EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
)
For example:
'none'
'unknown'
'proof-print'
'ipp-everywhere,proof-print,job-save'
Note: Length overflow in values of this attribute MUST be handled by
multiple instances of this attribute, i.e., individual
comma-delimited list members MUST NOT be truncated.
Values of this attribute SHOULD specify only IANA-registered keywords
for the 'ipp-features-supported' attribute defined in [PWG5100.13] or
other Standards Track IETF or IEEE-ISTO PWG specifications if this
Printer implementation meets all of the IPP feature-specific
conformance requirements.
IANA-registered values include:
'none' (No extension features are supported)
'document-object' (Document object defined in [PWG5100.5])
'job-save' (Job save defined in [PWG5100.11])
'ipp-everywhere' ("IPP Everywhere" defined in [PWG5100.14])
'page-overrides' (Page overrides defined in [PWG5100.6])
'proof-print' (Proof print defined in [PWG5100.11])
'subscription-object' (Subscription object defined in [RFC3995])
Note: The value 'unknown' MUST only be reported if the corresponding
IPP Printer attribute is not present, i.e., the value 'unknown' is an
artifact of this LDAP mapping.
Note: The syntax and values for this attribute are aligned with the
equivalent 'ipp-features-supported' attribute defined in
[PWG5100.13].
Fleming & McDonald Informational [Page 41]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
5. Definition of Syntaxes
No new attribute syntaxes are defined by this document.
The attribute types defined in Section 4 of this document reference
syntax OIDs defined in Section 3 of [RFC4517], which are summarized
below:
Syntax OID Syntax Description
------------------------------ -------------------------------
1.3.6.1.4.1.1466.115.121.1.7 Boolean
1.3.6.1.4.1.1466.115.121.1.15 DirectoryString (UTF-8 [STD63])
1.3.6.1.4.1.1466.115.121.1.27 Integer
6. Definition of Matching Rules
No new matching rules are defined by this document.
The attribute types defined in Section 4 of this document reference
matching rules defined in Section 4 of [RFC4517], which are
summarized below:
Matching Rule OID Matching Rule Name Usage
----------------------------- ------------------ --------
2.5.13.13 booleanMatch EQUALITY
2.5.13.2 caseIgnoreMatch EQUALITY
2.5.13.14 integerMatch EQUALITY
2.5.13.15 integerOrderingMatch ORDERING
2.5.13.4 caseIgnoreSubstringsMatch SUBSTR
7. IANA Considerations
This document does not define any new syntaxes or matching rules.
This document defines a few new attribute types that have been
registered by IANA per this document (see Section 7.1 below).
All of the object classes and most of the attribute types described
in this document were registered by IANA when RFC 3712 was published
(see Section 7.2 below).
Fleming & McDonald Informational [Page 42]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
7.1. Registration of Attribute Types
The following Attribute Type OIDs have been assigned by the IEEE-ISTO
PWG (see Section 1.3.2) and have been registered by IANA.
Subject: Request for Object Identifier Descriptor Registration
Descriptor (short name): see table below
Object Identifier: see table below
Person & email address to contact for further information: see below
Usage: attribute type
Specification: RFC 7612 (this document)
Author/Change Controller:
Ira McDonald
High North Inc.
221 Ridge Ave.
Grand Marais, MI 49839
United States
Phone: +1 906-494-2434
Email: blueroofmusic@gmail.com
Comments:
Attribute Type OID
------------------------------------ ----------------------
printer-device-id 1.3.18.0.2.24.46.1.101
printer-device-service-count 1.3.18.0.2.24.46.1.102
printer-uuid 1.3.18.0.2.24.46.1.104
printer-charge-info 1.3.18.0.2.24.46.1.105
printer-charge-info-uri 1.3.18.0.2.24.46.1.106
printer-geo-location 1.3.18.0.2.24.46.1.107
printer-ipp-features-supported 1.3.18.0.2.24.46.1.108
Fleming & McDonald Informational [Page 43]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
7.2. Object Classes and Attribute Types from RFC 3712
This section is strictly informative. None of the LDAP OIDs listed
in this section have been re-registered by IANA.
The following Object Class OIDs were assigned by IBM (see
Section 1.3.1) and were already registered by IANA when RFC 3712 was
published.
Object Class OID
------------------------------------ ----------------
slpServicePrinter 1.3.18.0.2.6.254
printerAbstract 1.3.18.0.2.6.258
printerService 1.3.18.0.2.6.255
printerServiceAuxClass 1.3.18.0.2.6.257
printerIPP 1.3.18.0.2.6.256
printerLPR 1.3.18.0.2.6.253
The following Attribute Type OIDs were assigned by IBM (see
Section 1.3.1) and were already registered by IANA when RFC 3712 was
published.
Attribute Type OID
------------------------------------ -----------------
printer-uri 1.3.18.0.2.4.1140
printer-xri-supported 1.3.18.0.2.4.1107
printer-name 1.3.18.0.2.4.1135
printer-natural-language-configured 1.3.18.0.2.4.1119
printer-location 1.3.18.0.2.4.1136
printer-info 1.3.18.0.2.4.1139
printer-more-info 1.3.18.0.2.4.1134
printer-make-and-model 1.3.18.0.2.4.1138
printer-ipp-versions-supported 1.3.18.0.2.4.1133
printer-multiple-document-jobs-supported 1.3.18.0.2.4.1132
printer-charset-configured 1.3.18.0.2.4.1109
printer-charset-supported 1.3.18.0.2.4.1131
printer-generated-natural-language-supported 1.3.18.0.2.4.1137
printer-document-format-supported 1.3.18.0.2.4.1130
printer-color-supported 1.3.18.0.2.4.1129
printer-compression-supported 1.3.18.0.2.4.1128
printer-pages-per-minute 1.3.18.0.2.4.1127
printer-pages-per-minute-color 1.3.18.0.2.4.1126
printer-finishings-supported 1.3.18.0.2.4.1125
printer-number-up-supported 1.3.18.0.2.4.1124
printer-sides-supported 1.3.18.0.2.4.1123
printer-media-supported 1.3.18.0.2.4.1122
printer-media-local-supported 1.3.18.0.2.4.1117
printer-resolution-supported 1.3.18.0.2.4.1121
Fleming & McDonald Informational [Page 44]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
printer-print-quality-supported 1.3.18.0.2.4.1120
printer-job-priority-supported 1.3.18.0.2.4.1110
printer-copies-supported 1.3.18.0.2.4.1118
printer-job-k-octets-supported 1.3.18.0.2.4.1111
printer-current-operator 1.3.18.0.2.4.1112
printer-service-person 1.3.18.0.2.4.1113
printer-delivery-orientation-supported 1.3.18.0.2.4.1114
printer-stacking-order-supported 1.3.18.0.2.4.1115
printer-output-features-supported 1.3.18.0.2.4.1116
printer-aliases 1.3.18.0.2.4.1108
8. Internationalization Considerations
All text string attributes defined in this document of syntax
'DirectoryString' [RFC4517] have values that are encoded in UTF-8
[STD63], as required by [RFC4517].
A language tag [BCP47] for all of the text string attributes defined
in this document is contained in the
printer-natural-language-configured attribute.
Therefore, all object classes defined in this document conform to the
IETF Policy on Character Sets and Languages [BCP18].
Note: For interoperability and consistent text display, values of
attributes defined in this document (a) SHOULD be normalized as
recommended in "Unicode Format for Network Interchange" [RFC5198];
(b) SHOULD NOT contain DEL or any C0 or C1 control characters except
for HT, CR, and LF; (c) SHOULD only contain CR and LF characters
together (not as singletons); and (d) SHOULD NOT contain HT, CR, or
LF characters in names, e.g., printer-name and printer-aliases.
9. Security Considerations
See [RFC4513] for detailed guidance on authentication methods for
LDAP and the use of TLS/1.2 [RFC5246] to supply connection
confidentiality and data integrity for LDAP sessions.
As with any LDAP schema, it is important to protect specific entries
and attributes with the appropriate access control. It is
particularly important that only administrators can modify entries
defined in this LDAP Printer schema. Otherwise, an LDAP client might
be fooled into diverting print service requests from the original
Printer (or spooler) to a malicious intruder's host system, thus
exposing the information in printed documents.
Fleming & McDonald Informational [Page 45]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Note: Security vulnerabilities can arise if DEL or any C0 or C1
control characters are included in names, e.g., printer-name or
printer-aliases.
For additional security considerations regarding deploying Printers
in an IPP environment, see Section 8 of [RFC2911].
10. References
10.1. Normative References
[BCP47] Phillips, A. and M. Davis, "Matching of Language Tags",
BCP 47, RFC 4647, September 2006.
Phillips, A., Ed., and M. Davis, Ed., "Tags for
Identifying Languages", BCP 47, RFC 5646,
September 2009.
<http://www.rfc-editor.org/info/bcp47>
[IANACHAR] Internet Assigned Numbers Authority (IANA) registry
"Character Sets",
<http://www.iana.org/assignments/character-sets>.
[IANAIPP] Internet Assigned Numbers Authority (IANA) registry
"Internet Printing Protocol (IPP) Registrations",
<http://www.iana.org/assignments/ipp-registrations>.
[IANAMIME] Internet Assigned Numbers Authority (IANA) registry
"Media Types", <http://www.iana.org/assignments/
media-types/index.html>.
[PWG5100.5] Carney, D., Hastings, T., and P. Zehler, "IPP Document
Object", PWG 5100.5-2003, October 2003,
<http://www.pwg.org/standards.html>.
[PWG5100.6] Zehler, P., Herriot, R., and K. Ocke, "IPP Page
Overrides", PWG 5100.6-2003, October 2003,
<http://www.pwg.org/standards.html>.
[PWG5100.11] Hastings, T. and D. Fullman, "IPP Job and Printer
Extensions - Set 2 (JPS2)", PWG 5100.11-2010,
October 2010, <http://www.pwg.org/standards.html>.
[PWG5100.12] Bergman, R., Lewis, H., McDonald, I., and M. Sweet, "IPP
Version 2.0 Second Edition (IPP/2.0 SE)",
PWG 5100.12-2011, February 2011,
<http://www.pwg.org/standards.html>.
Fleming & McDonald Informational [Page 46]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
[PWG5100.13] Sweet, M., McDonald, I., and P. Zehler, "IPP Job and
Printer Extensions - Set 3 (JPS3)", PWG 5100.13-2012,
July 2012, <http://www.pwg.org/standards.html>.
[PWG5100.14] Sweet, M., McDonald, I., Mitchell, A., and J. Hutchings,
"IPP Everywhere", PWG 5100.14-2013, January 2013,
<http://www.pwg.org/standards.html>.
[PWG5101.1] Sweet, M., Bergman, R., and T. Hastings, "PWG Media
Standardized Names 2.0 (MSN2)", PWG 5101.1-2013,
March 2013, <http://www.pwg.org/standards.html>.
[PWG5107.2] McDonald, I., "PWG Command Set Format for IEEE 1284
Device ID v1.0", PWG 5107.2-2010, May 2010,
<http://www.pwg.org/standards.html>.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<http://www.rfc-editor.org/info/rfc2119>.
[RFC2617] Franks, J., Hallam-Baker, P., Hostetler, J., Lawrence,
S., Leach, P., Luotonen, A., and L. Stewart, "HTTP
Authentication: Basic and Digest Access Authentication",
RFC 2617, DOI 10.17487/RFC2617, June 1999,
<http://www.rfc-editor.org/info/rfc2617>.
[RFC2707] Bergman, R., Hastings, T., Isaacson, S., and H. Lewis,
"Job Monitoring MIB - V1.0", RFC 2707,
DOI 10.17487/RFC2707, November 1999,
<http://www.rfc-editor.org/info/rfc2707>.
[RFC2911] Hastings, T., Ed., Herriot, R., deBry, R., Isaacson, S.,
and P. Powell, "Internet Printing Protocol/1.1: Model
and Semantics", RFC 2911, DOI 10.17487/RFC2911,
September 2000,
<http://www.rfc-editor.org/info/rfc2911>.
[RFC2926] Kempf, J., Moats, R., and P. St. Pierre, "Conversion of
LDAP Schemas to and from SLP Templates", RFC 2926,
DOI 10.17487/RFC2926, September 2000,
<http://www.rfc-editor.org/info/rfc2926>.
[RFC3510] Herriot, R. and I. McDonald, "Internet Printing
Protocol/1.1: IPP URL Scheme", RFC 3510,
DOI 10.17487/RFC3510, April 2003,
<http://www.rfc-editor.org/info/rfc3510>.
Fleming & McDonald Informational [Page 47]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
[RFC3805] Bergman, R., Lewis, H., and I. McDonald, "Printer
MIB v2", RFC 3805, DOI 10.17487/RFC3805, June 2004,
<http://www.rfc-editor.org/info/rfc3805>.
[RFC3987] Duerst, M. and M. Suignard, "Internationalized Resource
Identifiers (IRIs)", RFC 3987, DOI 10.17487/RFC3987,
January 2005, <http://www.rfc-editor.org/info/rfc3987>.
[RFC3995] Herriot, R. and T. Hastings, "Internet Printing Protocol
(IPP): Event Notifications and Subscriptions", RFC 3995,
DOI 10.17487/RFC3995, March 2005,
<http://www.rfc-editor.org/info/rfc3995>.
[RFC4122] Leach, P., Mealling, M., and R. Salz, "A Universally
Unique IDentifier (UUID) URN Namespace", RFC 4122,
DOI 10.17487/RFC4122, July 2005,
<http://www.rfc-editor.org/info/rfc4122>.
[RFC4510] Zeilenga, K., Ed., "Lightweight Directory Access
Protocol (LDAP): Technical Specification Road Map",
RFC 4510, DOI 10.17487/RFC4510, June 2006,
<http://www.rfc-editor.org/info/rfc4510>.
[RFC4513] Harrison, R., Ed., "Lightweight Directory Access
Protocol (LDAP): Authentication Methods and Security
Mechanisms", RFC 4513, DOI 10.17487/RFC4513, June 2006,
<http://www.rfc-editor.org/info/rfc4513>.
[RFC4517] Legg, S., Ed., "Lightweight Directory Access Protocol
(LDAP): Syntaxes and Matching Rules", RFC 4517,
DOI 10.17487/RFC4517, June 2006,
<http://www.rfc-editor.org/info/rfc4517>.
[RFC4524] Zeilenga, K., Ed., "COSINE LDAP/X.500 Schema", RFC 4524,
DOI 10.17487/RFC4524, June 2006,
<http://www.rfc-editor.org/info/rfc4524>.
[RFC5198] Klensin, J. and M. Padlipsky, "Unicode Format for
Network Interchange", RFC 5198, DOI 10.17487/RFC5198,
March 2008, <http://www.rfc-editor.org/info/rfc5198>.
[RFC5246] Dierks, T. and E. Rescorla, "The Transport Layer
Security (TLS) Protocol Version 1.2", RFC 5246,
DOI 10.17487/RFC5246, August 2008,
<http://www.rfc-editor.org/info/rfc5246>.
Fleming & McDonald Informational [Page 48]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
[RFC5280] Cooper, D., Santesson, S., Farrell, S., Boeyen, S.,
Housley, R., and W. Polk, "Internet X.509 Public Key
Infrastructure Certificate and Certificate Revocation
List (CRL) Profile", RFC 5280, DOI 10.17487/RFC5280,
May 2008, <http://www.rfc-editor.org/info/rfc5280>.
[RFC5870] Mayrhofer, A. and C. Spanring, "A Uniform Resource
Identifier for Geographic Locations ('geo' URI)",
RFC 5870, DOI 10.17487/RFC5870, June 2010,
<http://www.rfc-editor.org/info/rfc5870>.
[RFC6818] Yee, P., "Updates to the Internet X.509 Public Key
Infrastructure Certificate and Certificate Revocation
List (CRL) Profile", RFC 6818, DOI 10.17487/RFC6818,
January 2013, <http://www.rfc-editor.org/info/rfc6818>.
[RFC7235] Fielding, R., Ed., and J. Reschke, Ed., "Hypertext
Transfer Protocol (HTTP/1.1): Authentication", RFC 7235,
DOI 10.17487/RFC7235, June 2014,
<http://www.rfc-editor.org/info/rfc7235>.
[RFC7472] McDonald, I. and M. Sweet, "Internet Printing Protocol
(IPP) over HTTPS Transport Binding and the 'ipps' URI
Scheme", RFC 7472, DOI 10.17487/RFC7472, March 2015,
<http://www.rfc-editor.org/info/rfc7472>.
[STD63] Yergeau, F., "UTF-8, a transformation format of ISO
10646", STD 63, RFC 3629, November 2003,
<http://www.rfc-editor.org/info/std63>.
[STD66] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66, RFC
3986, January 2005,
<http://www.rfc-editor.org/info/std66>.
Fleming & McDonald Informational [Page 49]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
10.2. Informative References
[BCP13] Freed, N. and J. Klensin, "Multipurpose Internet Mail
Extensions (MIME) Part Four: Registration Procedures",
BCP 13, RFC 4289, December 2005.
Freed, N., Klensin, J., and T. Hansen, "Media Type
Specifications and Registration Procedures", BCP 13,
RFC 6838, January 2013.
<http://www.rfc-editor.org/info/bcp13>
[BCP18] Alvestrand, H., "IETF Policy on Character Sets and
Languages", BCP 18, RFC 2277, January 1998,
<http://www.rfc-editor.org/info/bcp18>.
[BCP19] Freed, N. and J. Postel, "IANA Charset Registration
Procedures", BCP 19, RFC 2978, October 2000,
<http://www.rfc-editor.org/info/bcp19>.
[RFC1179] McLaughlin, L., "Line printer daemon protocol",
RFC 1179, DOI 10.17487/RFC1179, August 1990,
<http://www.rfc-editor.org/info/rfc1179>.
[RFC1951] Deutsch, P., "DEFLATE Compressed Data Format
Specification version 1.3", RFC 1951,
DOI 10.17487/RFC1951, May 1996,
<http://www.rfc-editor.org/info/rfc1951>.
[RFC1952] Deutsch, P., "GZIP file format specification
version 4.3", RFC 1952, DOI 10.17487/RFC1952, May 1996,
<http://www.rfc-editor.org/info/rfc1952>.
[RFC1977] Schryver, V., "PPP BSD Compression Protocol", RFC 1977,
DOI 10.17487/RFC1977, August 1996,
<http://www.rfc-editor.org/info/rfc1977>.
[RFC2079] Smith, M., "Definition of an X.500 Attribute Type and an
Object Class to Hold Uniform Resource Identifiers
(URIs)", RFC 2079, DOI 10.17487/RFC2079, January 1997,
<http://www.rfc-editor.org/info/rfc2079>.
[RFC2566] deBry, R., Hastings, T., Herriot, R., Isaacson, S., and
P. Powell, "Internet Printing Protocol/1.0: Model and
Semantics", RFC 2566, DOI 10.17487/RFC2566, April 1999,
<http://www.rfc-editor.org/info/rfc2566>.
Fleming & McDonald Informational [Page 50]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
[RFC2608] Guttman, E., Perkins, C., Veizades, J., and M. Day,
"Service Location Protocol, Version 2", RFC 2608,
DOI 10.17487/RFC2608, June 1999,
<http://www.rfc-editor.org/info/rfc2608>.
[RFC3712] Fleming, P. and I. McDonald, "Lightweight Directory
Access Protocol (LDAP): Schema for Printer Services",
RFC 3712, DOI 10.17487/RFC3712, February 2004,
<http://www.rfc-editor.org/info/rfc3712>.
[RFC4559] Jaganathan, K., Zhu, L., and J. Brezak, "SPNEGO-based
Kerberos and NTLM HTTP Authentication in Microsoft
Windows", RFC 4559, DOI 10.17487/RFC4559, June 2006,
<http://www.rfc-editor.org/info/rfc4559>.
[SLPPRT20] IANA, "Service Location Protocol, Version 2 (SLPv2)
Templates",
<http://www.iana.org/assignments/svrloc-templates>.
Fleming & McDonald Informational [Page 51]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Appendix A. Changes since RFC 3712
1) Added many editorial corrections and clarifications
- corrected typos, missing words, and ambiguous sentences;
- replaced lowercase 'printer' with titlecase 'Printer' for
readability and consistency with IETF and IEEE-ISTO PWG IPP
standards usage;
- added implementation notes;
- updated and added references.
2) Deleted length restrictions from formal definitions of
DirectoryString syntax attributes
- replaced with notes recommending length restrictions for
compatibility with existing implementations of [RFC3712] and
underlying string length limits in [RFC2707], [RFC2911],
[RFC3805], [PWG5107.2], [PWG5100.13], and [PWG5100.14].
3) Added new Printer attributes defined in [PWG5107.2], [PWG5100.13],
and [PWG5100.14] (see Section 7.1)
- updated the table of Printer attributes and source documents in
Section 4 ("Definition of Attribute Types");
- added support for IEEE-ISTO PWG "IPP Everywhere" [PWG5100.14]
project.
4) Added implementation note to Section 4 about string encodings
- added discussion of 'List of xxx' and 'One of xxx' encodings;
- stated that any of these attributes can be represented as
multiple instances (i.e., to avoid length overflow).
5) Improved comma-delimited examples of string attributes
- added both single-valued and multi-valued examples.
Fleming & McDonald Informational [Page 52]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
6) Clarified use of printer-xri-supported and
printer-resolution-supported attributes, and their corresponding
field delimiters
- added note in Section 4 ("Definition of Attribute Types") to
explain the origin of the different field delimiters;
- added examples to show optional *trailing* whitespace after '<'
delimiters in printer-xri-supported;
- added examples to show optional *trailing* whitespace after '>'
delimiters in printer-resolution-supported.
7) Clarified Section 8 ("Internationalization Considerations")
- added note about Net-Unicode [RFC5198] and avoiding use of C0
and C1 control characters.
8) Clarified Section 9 ("Security Considerations")
- added note about security vulnerabilities caused by use of DEL
or any C0 or C1 control characters in names.
9) Clarified terms and abbreviations
- renamed Section 2 ("Conventions Used in This Document");
- added Section 2.1 ("Requirements Language");
- added Section 2.2 ("LDAP Schema Descriptions");
- added Section 2.3 ("Abbreviations").
Fleming & McDonald Informational [Page 53]
^L
RFC 7612 LDAP Schema for Printer Services June 2015
Acknowledgments
The authors wish to acknowledge significant contributions from Ken
Jones and Harry Lewis and excellent comments from Patrik Faltstrom,
Ryan Moats, Robert Moore, Lee Rafalow, Kimberly Reger, and Kurt
Zeilenga during the development of the original LDAP Printer schema
[RFC3712].
The authors wish to acknowledge excellent comments from Nevil
Brownlee, Barry Leiba, Alexey Melnikov, Tom Petch, and Mike Sweet
during the development of this current version of the LDAP Printer
schema.
Thanks to the members of the IEEE-ISTO PWG IPP Working Group, for
their review comments and help in preparing this document.
Authors' Addresses
Pat Fleming
Independent
51796 171 Ave.
Pine Island, MN 55963
United States
Phone: +1 507-356-8277
Email: patfleminghtc@gmail.com
Ira McDonald
High North Inc.
221 Ridge Ave.
Grand Marais, MI 49839
United States
Phone: +1 906-494-2434
Email: blueroofmusic@gmail.com
Fleming & McDonald Informational [Page 54]
^L
|