我想在我的 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
我究竟做错了什么 ?