我想在我的Raspberry Pi上运行的mosquitto代理和我的PC上的mosquitto代理之间建立一座桥梁。
在mosquitto.conf文件中(在Raspberry Pi上)我将网桥设置设置为:
connection raspi-PC
address 192.168.0.104:1883 -> Pc address
topic # both 0 local/sensor remote/sensor
连接似乎没问题但是当我尝试发布本地主题时,我无法在订阅的客户端中看到远程/主题的消息。
示例:
client1 : mosquitto_pub -t local/sensor/room -m "23C"
client2 : mosquitto_sub -h 192.168.0.104 -t remote/sensor/# ->> here is not published msg
我做错了什么?
答案 0 :(得分:1)
您在主题重新映射字符串上缺少最终/
,如mosquitto.conf手册页中所述。你应该使用:
topic # both 0 local/sensor/ remote/sensor/