Hey
I've managed to implement tls on mosquitto broker. on CLI everything works fine.
I connect the broker to my nodered and ticked "TLS" but in the configuration I have NOT upload any certificate and it works!?
my config from mosquitto:
# this will be replaces :)
allow_anonymous true
listener 8883
certfile /etc/letsencrypt/live/x.x.org/cert.p>
cafile /etc/letsencrypt/live/x.x.org/chain.pem
keyfile /etc/letsencrypt/live/x.x.org/privkey>
listener 8083
protocol websockets
certfile /etc/letsencrypt/live/x.x.org/cert.p>
cafile /etc/letsencrypt/live/x.x.org/chain.pem
keyfile /etc/letsencrypt/live/x.x.org/privkey>
require_certificate true
How can I test, if ssl is really enabled? Only with wireshark?
What do I mixed up here?