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
|
<!DOCTYPE HTML>
<html>
<!-- SECTION: Man Pages -->
<head>
<link rel="stylesheet" type="text/css" href="../cups-printable.css">
<title>ippproxy(8)</title>
</head>
<body>
<h1 class="title">ippproxy(8)</h1>
<h2 class="title"><a name="NAME">Name</a></h2>
ippproxy - a simple ipp proxy client
<h2 class="title"><a name="SYNOPSIS">Synopsis</a></h2>
<b>ippproxy</b>
[
<b>--help</b>
] [
<b>--version</b>
] [
<b>-d</b>
<i>device-uri</i>
] [
<b>-m</b>
<i>mime/type</i>
] [
<b>-p</b>
<i>password</i>
] [
<b>-u</b>
<i>user</i>
] [
<b>-v[vv]</b>
]
<i>infrastructure-printer-uri</i>
<h2 class="title"><a name="DESCRIPTION">Description</a></h2>
<b>ippproxy</b>
is a simple IPP proxy client conforming to the IPP Shared Infrastructure Extensions (INFRA) specification. It can be used to proxy access to a local IPP printer through an Infrastructure Printer such as
<b>ippserver</b>(8).
<h2 class="title"><a name="OPTIONS">Options</a></h2>
The following options are recognized by
<b>ippproxy:</b>
<dl class="man">
<dt><b>--help</b>
<dd style="margin-left: 5.0em">Show program help.
<dt><b>--version</b>
<dd style="margin-left: 5.0em">Show program version.
<dt><b>-d </b><i>device-uri</i>
<dd style="margin-left: 5.0em">Specifies the local device using its URI.
<b>ippproxy</b>
supports "ipp", "ipps", and "socket" URIs.
<dt><b>-m </b><i>mime/types</i>
<dd style="margin-left: 5.0em">Specifies the output format as a MIME media type.
<b>ippproxy</b>
supports "application/vnd.hp-pcl" (HP PCL), "image/pwg-raster" (PWG Raster), and "image/urf" (Apple Raster).
The default is to choose an output format automatically.
<dt><b>-p </b><i>password</i>
<dd style="margin-left: 5.0em">Specifies the password to use when authenticating with the Infrastructure Printer.
<dt><b>-u </b><i>user</i>
<dd style="margin-left: 5.0em">Specifies the user name to use when authenticating with the Infrastructure Printer.
<dt><b>-v[vvv]</b>
<dd style="margin-left: 5.0em">Be (very) verbose when logging activity to the standard output.
</dl>
<h2 class="title"><a name="EXIT_STATUS">Exit Status</a></h2>
The
<b>ippproxy</b>
program returns 1 if it is unable to process the command-line arguments or connect to either the infrastructure or local printers.
Otherwise
<b>ippproxy</b>
will run continuously until terminated.
<h2 class="title"><a name="CONFORMING_TO">Conforming To</a></h2>
The
<b>ippproxy</b>
program conforms to PWG Candidate Standard 5100.18: IPP Shared Infrastructure Extensions (INFRA).
<h2 class="title"><a name="EXAMPLE">Example</a></h2>
Run
<b>ippproxy</b>
with an infrastructure URI of "ipps://host.example.com/ipp/print" and a local URI of "ipp://10.0.1.42/ipp/print":
<pre class="man">
ippproxy -d ipp://10.0.1.42/ipp/print ipps://host.example.com/ipp/print
</pre>
<h2 class="title"><a name="SEE_ALSO">See Also</a></h2>
<a href="ippserver.html"><b>ippserver</b>(8)</a>,
PWG Internet Printing Protocol Workgroup (<a href="http://www.pwg.org/ipp">http://www.pwg.org/ipp</a>)
<h2 class="title"><a name="COPYRIGHT">Copyright</a></h2>
Copyright © 2014-2018 by the IEEE-ISTO Printer Working Group.
Copyright © 2007-2018 by Apple Inc.
</body>
</html>
|