【rt-thread网络】第3篇:mqtt加密通信

一、ssl/tls协议

二、mosquitto添加broker证书

# MQTT协议端口号
listener 1883
protocol mqtt

# 订阅主题持久化
persistence true
persistence_location D:\software\mosquitto\data

# 开启日志记录
log_dest file D:\software\mosquitto\mosquitto.log
log_type all

# 开启密码验证
password_file D:\software\mosquitto\pwfile.example
allow_anonymous false

#不需要对端提供证书
require_certificate false

#证书
cafile D:\software\mosquitto\certs\ca.crt
certfile D:\software\mosquitto\certs\server.crt
keyfile D:\software\mosquitto\certs\server.key

三、wireshark抓包

【rt-thread网络】第3篇:mqtt加密通信_第1张图片

四、参考

【安全】进阶的Mosquitto:搭建一个安全的MQTT服务
一篇文章让你彻底弄懂SSL/TLS协议
传输层安全协议TLS——协议解析

你可能感兴趣的:(lwip,lwip)