SSLPROT (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
No edit summary
Line 16: Line 16:
<td>SSL, V3 support. This is less secure than TLS.</td></tr>
<td>SSL, V3 support. This is less secure than TLS.</td></tr>
<tr><th>X'04'</th>
<tr><th>X'04'</th>
<td>TLS, V1 support.</td></tr>
<td>TLS, 1.0 support.</td></tr>
<tr><th>X'08'</th>
<td>TLS 1.1  support. Only available in <var class="prod">Model 204</var> 7.5 and later.</td></tr>
<tr><th>X'10'</th>
<td>TLS 1.2  support. Only available in <var class="prod">Model 204</var> 7.5 and later</td></tr>
<tr><th>X'07'</th>
<tr><th>X'07'</th>
<td>The default. SSL V2, SSL V3, and TLS are available. Janus will try for them in the order: TLS, SSL V3, SSL V2.
<td>The default under <var class="prod">Model 204</var> 7.4 and earlier. SSL V2, SSL V3, and TLS 1.0 are available. Janus will try for them in the order: TLS 1.0, SSL V3, and SSL V2.
</td></tr>
<tr><th>X'1E'</th>
<td>The default under <var class="prod">Model 204</var> 7.5 and later. SSL V3, and TLS 1.0, TLS 1.1, and TLS1.2 are available. Janus will try for them in the order: TLS 1.2, TLS 1.1, TLS 1.0, and SSL V3.</td></tr>
</table>
</table>



Revision as of 00:39, 27 February 2014

SSLPROT xxx — Degree of SSL-like encryption

SSLPROT is a parameter on JANUS DEFINE, which defines and sets characteristics of a Janus port.

This parameter lets you specify the degree of SSL-like encryption available at this port. Janus Network Security currently supports two Secure Socket Layer (SSL) protocols (SSL V2 and SSL V3) and the Transport Layer Security (TLS) protocol, an extension to SSL V3 but developed by the IETF Internet standards group.

During the negotiation for a connection to or from this port, Janus will offer the most secure protocol available, then, if necessary, will fall back to the next lower one available, and so on. The SSLPROT parameter lets you explicitly disallow one or more protocols from the negotiation.

SSLPROT is a bitmask parameter whose main values are:

X'01' SSL, V2 support. This is less secure than SSL V3 or TLS.
X'02' SSL, V3 support. This is less secure than TLS.
X'04' TLS, 1.0 support.
X'08' TLS 1.1 support. Only available in Model 204 7.5 and later.
X'10' TLS 1.2 support. Only available in Model 204 7.5 and later
X'07' The default under Model 204 7.4 and earlier. SSL V2, SSL V3, and TLS 1.0 are available. Janus will try for them in the order: TLS 1.0, SSL V3, and SSL V2.
X'1E' The default under Model 204 7.5 and later. SSL V3, and TLS 1.0, TLS 1.1, and TLS1.2 are available. Janus will try for them in the order: TLS 1.2, TLS 1.1, TLS 1.0, and SSL V3.

A typical reason for explicitly specifying an SSLPROT value is to require a more secure connection for a port. If a client attempts to connect to a Janus server port using a protocol explicitly disallowed by SSLPROT, the connection is immediately broken, except for WEBSERV ports where the SSLPROTOCOLERR exception handler will be run if available.

Janus CLSOCK ports will attempt to connect under the most secure protocol available, and will fall back to the next-most secure protocol available; if less-secure protocols are disallowed by SSLPROT, the connection attempt will fail.

SSLPROT is valid for SRVSOCK, WEBSERV, OPENSERV, and SDS port types.

See also