mirror of
https://github.com/openvswitch/ovs
synced 2025-10-29 15:28:56 +00:00
The new .xml files in this commit are translations to XML of the existing nroff fragments in .man files. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Ryan Moats <rmoats@us.ibm.com>
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<dl>
|
|
<dt><code>-p</code> <var>privkey.pem</var></dt>
|
|
<dt><code>--private-key=</code><var>privkey.pem</var></dt>
|
|
<dd>
|
|
Specifies a PEM file containing the private key used as
|
|
identity for outgoing SSL connections.
|
|
</dd>
|
|
|
|
<dt><code>-c</code> <var>cert.pem</var></dt>
|
|
<dt><code>--certificate=</code><var>cert.pem</var></dt>
|
|
<dd>
|
|
Specifies a PEM file containing a certificate that certifies the
|
|
private key specified on <code>-p</code> or <code>--private-key</code> to be
|
|
trustworthy. The certificate must be signed by the certificate
|
|
authority (CA) that the peer in SSL connections will use to verify it.
|
|
</dd>
|
|
|
|
<dt><code>-C</code> <var>cacert.pem</var></dt>
|
|
<dt><code>--ca-cert=</code><var>cacert.pem</var></dt>
|
|
<dd>
|
|
Specifies a PEM file containing the CA certificate for
|
|
verifying certificates presented to this program by SSL peers. (This
|
|
may be the same certificate that SSL peers use to verify the
|
|
certificate specified on <code>-c</code> or <code>--certificate</code>, or it may
|
|
be a different one, depending on the PKI design in use.)
|
|
</dd>
|
|
|
|
<dt><code>-C none</code></dt>
|
|
<dt><code>--ca-cert=none</code></dt>
|
|
<dd>
|
|
Disables verification of certificates presented by SSL peers. This
|
|
introduces a security risk, because it means that certificates cannot
|
|
be verified to be those of known trusted hosts.
|
|
</dd>
|
|
</dl>
|