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
私は何を間違っていますか?