Test your knowledge
Let's see whether you can answer the following questions correctly:
- Which is the default port number for MQTT over TLS:
1883
5883
8883
- Which of the following utilities allows us to generate an X.509 digital certificate:
- OpenX509
- TLS4Devs
- OpenSSL
- When we use MQTT over TLS:
- There are both bandwidth and processing overheads compared to MQTT over TCP without TLS
- There is just a small bandwith overhead but no processing overhead at all compared to MQTT over TCP without TLS
- There is no overhead compared to MQTT over TCP without TLS
- Which of the following can we use to secure and encrypt communications between the MQTT clients and the MQTT server:
- TCPS
- TLS
- HTTPS
- If we specify
true
as the value for therequire_certificate
option of the Mosquitto configuration file (mosquitto.conf
):- Clients that want to connect to the MQTT server will require a client certificate
- Clients that want to connect to the MQTT server won't require a client certificate
- Clients that want to connect to the MQTT server...