Configuring TLS (SSL)
You can configure the connector to use Transport Layer Security (TLS, formerly called SSL) when connecting to a host.
To configure TLS:
- Set the
SSL
property to1
. - Optionally, if you do not want to verify the host in the certificate is the host being connected to, set the
disableHostVerification
property to1
. - Optionally, if you do not want to verify the certificate against the local trust store, set the
disableCertificateVerification
property to1
. - Optionally, set the
TrustedCerts
property to the location of the.pem
file that contains your trusted certificates. - Choose one:
- To specify a minimum version of TLS to use, set the
Min_TLS
property to the minimum version of TLS. Supported options include0
for TLS 1.0,1
for TLS 1.1, and2
for TLS 1.2. - Or, to specify the exact version of TLS to use, set the
UseExactTLSProtocolVersion
property to1
, then set theTLSProtocol
property to the version of TLS you want used. Supported options includetlsv1
,tlsv11
, ortlsv12
.
- To specify a minimum version of TLS to use, set the