mqtt.yuv.al

public mqtt broker

Connection
Host mqtt.yuv.al
Port 8883
TLS Required
Public Channels no auth

Anyone can subscribe and publish to public/* topics.

# subscribe
mosquitto_sub -h mqtt.yuv.al -p 8883 \
  --capath /etc/ssl/certs/ \
  -t "public/#" -v

# publish
mosquitto_pub -h mqtt.yuv.al -p 8883 \
  --capath /etc/ssl/certs/ \
  -t "public/hello" -m "world"
Private Channels auth required

Authenticated users can access private/* topics.

# subscribe
mosquitto_sub -h mqtt.yuv.al -p 8883 \
  --capath /etc/ssl/certs/ \
  -u USER -P PASS \
  -t "private/#" -v