SSLPROT (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 10: Line 10:
SSLPROT is a bitmask parameter whose main values are:
SSLPROT is a bitmask parameter whose main values are:


<table>
<table class="list">
<tr><th>X'01'</th>
<tr><th>X'01'</th>
<td>SSL, V2 support. This is less secure than SSL V3 or TLS.</td></tr>
<td>SSL, V2 support. This is less secure than SSL V3 or TLS.</td></tr>

Revision as of 18:29, 1 November 2011

<section begin="desc" />SSLPROT xxx -- Degree of SSL-like encryption<section end="desc" />

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

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, V1 support.
X'07' The default. SSL V2, SSL V3, and TLS are available. Janus will try for them in the order: TLS, SSL V3, SSL V2.

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.

Before Version 6.0 of the Sirius Mods, only SSL V2 was supported and the SSLPROT parameter was not available.

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

References

See: List of Janus commands | List of JANUS DEFINE parameters.