Changes between Version 2 and Version 3 of MQTT
- Timestamp:
- 05/27/21 10:30:27 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MQTT
v2 v3 35 35 {{{ 36 36 [krit@mini MQTT]$ mosquitto_passwd ./mosquitto/config/passwd alice 37 }}] 37 }}} 38 39 With ACL (Access Control List), we allow user to pub/sub to specific topic by 40 {{{ 41 [krit@mini MQTT]$ cat mosquitto/config/acls.conf 42 # add by KRIT 43 user admin 44 topic # 45 46 user alice 47 topic readwrite cat/# 48 49 user bob 50 topic read gw/+/status/# 51 topic write gw/+/cmd/# 52 }}}