2

我想在我的 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

我究竟做错了什么 ?

4

1 回答 1

1

如mosquitto.conf手册页中所述,您缺少/关于重新映射字符串主题的最终结果。你应该使用:

topic # both 0 local/sensor/ remote/sensor/
于 2014-06-08T19:00:52.837 回答