-
Notifications
You must be signed in to change notification settings - Fork 159
MQTT TLS Configuration
The options in this section map directly to the paho-mqtt TLS settings, so refer to those for more information.
Boolean value that enables or disables TLS for the MQTT server connection.
Certificate Authority certificates to use.
Public certificate to use.
Private key to use.
Defines the certificate requirements that the client imposes on the broker. The default setting is CERT_REQUIRED
and the options are:
CERT_NONE
CERT_OPTIONAL
CERT_REQUIRED
Specifies the version of the SSL/TLS protocol to be used. By default (if the python version supports it) the highest TLS version is detected. If unavailable, TLS v1 is used.
String specifying which encryption ciphers are allowable for this connection.
Boolean value that enables or disables the verification of the server's TLS certificate. The default, and recommended value is false
.