hi, I’m fairly new to HA and my question probably is a tell
I’ve taken the Docker route with HA mostly because I have quite a lot of experience with containers - so setting up the containers on my Synology wasn’t too hard -
So I have these containers running
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
283461b5c1f9 koenkk/zigbee2mqtt:latest "docker-entrypoint.s…" 3 hours ago Up 8 minutes 0.0.0.0:8080->8080/tcp koenkk-zigbee2mqtt1
cfad357bc747 eclipse-mosquitto:latest "/docker-entrypoint.…" 2 weeks ago Up 7 days 0.0.0.0:49154->1883/tcp mosquitto
1905ed89a0ad homeassistant/home-assistant:stable "/init" 14 months ago Up 7 days home-assistant
I have the MQTT integration installed on HA and in ‘Devices’ I have a ‘Zigbee2MQTT Bridge’ listed
On my Zigbee2MQTT frontend (8080) I have a Sonoff SNZB-02P (temperature and humidity sensor) listed so I know that my Zigbee2MQTT communicates with my SMLIGHT SLZB-06M via ethernet and all logs seams to be all good and green
My zigbee2mqtt/configuration.yaml
looks like this
version: 4
mqtt:
base_topic: zigbee2mqtt
server: mqtt://172.17.0.2:1883
# user: x
# password: x
client_id: 'z2mqtt'
include_device_information: true
serial:
port: tcp://10.4.3.127:6638
baudrate: 115200
adapter: ember
rtscts: false
advanced:
log_level: info
channel: 11
network_key:
- 195
- 163
- 236
- 79
- 101
- 94
- 249
- 70
- 214
- 78
- 37
- 37
- 48
- 255
- 47
- 58
pan_id: 31631
ext_pan_id:
- 203
- 169
- 2
- 134
- 157
- 223
- 214
- 141
frontend:
enabled: true
port: 8080
homeassistant:
enabled: true
discovery_topic: 'homeassistant'
status_topic: 'homeassistant/status'
experimental_event_entities: false
legacy_action_sensor: false
permit_join: true
But I get no ‘new devices discovered’ in HA - and trying to add new devices do not list any?
Any ideas?