I’ve been using ZHA and a HubZ ZigBee HUSBZB-1 coordinator. It works fine but it is old.
I am trying to set up a second zigbee network on another channel using a slzb-06m. The Z2M dashboard shows my test device and I can turn it on and off so that part works.
I can’t find the device to add to my HA dashboards.
Looking at the Mosquito add on in my HA install I see these log entries
# log of mosquitto starting up
[14:01:22] INFO: Starting NGINX for authentication handling...
s6-rc: info: service legacy-services successfully started
[14:01:22] INFO: Starting mosquitto MQTT broker...
2025-09-27 14:01:22: Warning: Mosquitto should not be run as root/administrator.
2025-09-27 14:01:22: mosquitto version 2.0.22 starting
2025-09-27 14:01:22: Config loaded from /etc/mosquitto/mosquitto.conf.
2025-09-27 14:01:22: Loading plugin: /usr/share/mosquitto/go-auth.so
2025-09-27 14:01:22: ├── Username/password checking enabled.
2025-09-27 14:01:22: ├── TLS-PSK checking enabled.
2025-09-27 14:01:22: └── Extended authentication not enabled.
2025-09-27 14:01:22: Opening ipv4 listen socket on port 1883.
2025-09-27 14:01:22: Opening ipv6 listen socket on port 1883.
2025-09-27 14:01:22: Opening websockets listen socket on port 1884.
2025-09-27 14:01:22: mosquitto version 2.0.22 running
2025-09-27 14:01:23: New connection from ::1:53844 on port 1883.
2025-09-27 14:01:23: Client <unknown> disconnected due to protocol error.
2025-09-27 14:01:23: New connection from 192.168.1.126:62997 on port 1883.
2025-09-27 14:01:23: New client connected from 192.168.1.126:62997 as mqtt-explorer-3ef3f172 (p2, c1, k60, u'wes').
[14:01:23] INFO: Successfully send discovery information to Home Assistant.
[14:01:24] INFO: Successfully send service information to the Supervisor.
2025-09-27 14:02:34: New connection from 172.30.33.10:40304 on port 1883.
2025-09-27 14:02:34: New client connected from 172.30.33.10:40304 as mqttjs_4c019a0e (p2, c1, k60, u'addons').
2025-09-27 14:04:55: New connection from 172.30.32.2:34150 on port 1883.
2025-09-27 14:04:55: Client <unknown> closed its connection.
2025-09-27 14:05:36: Client mqtt-explorer-3ef3f172 disconnected.
2025-09-27 14:05:38: New connection from 192.168.1.126:63197 on port 1883.
2025-09-27 14:05:38: New client connected from 192.168.1.126:63197 as mqtt-explorer-3ef3f172 (p2, c1, k60, u'wes').
2025-09-27 14:06:55: New connection from 172.30.32.2:43758 on port 1883.
2025-09-27 14:06:55: Client <unknown> closed its connection.
2025-09-27 14:08:55: New connection from 172.30.32.2:58352 on port 1883.
2025-09-27 14:08:55: Client <unknown> closed its connection.
2025-09-27 14:10:55: New connection from 172.30.32.2:44238 on port 1883.
2025-09-27 14:10:55: Client <unknown> closed its connection.
So I’m curious what belongs to 172.30.32.2
~ docker ps -q | xargs -I {} docker inspect --format '{{ .Name }} {{range .NetworkSettings.Networks}} - {{.IPAddress}}{{end}}' {}
/addon_core_mosquitto - 172.30.33.0
/addon_45df7312_zigbee2mqtt - 172.30.33.10
/addon_a0d7b954_wireguard - 172.30.33.9
/addon_a0d7b954_sqlite-web - 172.30.33.8
/addon_cebe7a76_hassio_google_drive_backup - 172.30.33.7
/addon_a0d7b954_logviewer - 172.30.33.6
/addon_core_configurator - 172.30.33.5
/addon_a0d7b954_grafana - 172.30.33.4
/addon_a0d7b954_influxdb - 172.30.33.3
/addon_5c53de3b_esphome -
/addon_core_zwave_js - 172.30.33.2
/addon_a0d7b954_ssh -
/addon_core_matter_server -
/addon_a0d7b954_chrony - 172.30.33.1
/hassio_multicast -
/hassio_audio - 172.30.32.4
/hassio_dns - 172.30.32.3
/hassio_cli - 172.30.32.5
/homeassistant -
/hassio_supervisor - 172.30.232.2 - 172.30.32.2
/hassio_observer - 172.30.32.6
hassio_supervisor appears to be it. I’m thinking that is my problem but I have no clue as how to fix it.
Help please.