gpbenton
(Graham)
March 9, 2018, 2:35pm
6
Somebody created a bridge between their local broker and cloudMQTT, which might be useful. But having two brokers on a local network is an unusual situation.
For anyone that’s interested this is what I did after following Bruh’s ’s excellent Owntracks / CloudMQTT guide to get my local Mosquitto instance talking to CloudMQTT.
Create a new mosquitto config in the /etc/mosquitto/conf.d/ directory, I used cloudmqtt.conf (it can be any name as long as it ends with .conf so mosquitto will read it) with the following info…
connection cloudmqtt
address <Instance Server>:<Instance Port>
remote_username <Instance User>
remote_password <Instance Password>
clie…