I wanted to monitor if devices are connected to my LAN.
Via twoenter.nl i found a Ping script to do exactly that but after copy/paste the script was up and running.
Sadly the log states every minute that all pinged devices failed to answer...
After a LONG search i found out the ping-command is not working because it's not included in the docker file.
Maybe i missed the obvious but i couldnt got it to work.
What i found to be te sollution is to add the ping command via bash to the dockerfile.
Open Docker on your Synology, go to the Domoticz container, select Details, Terminal, and open 'bash'.
Copy/paste these 2 lines separatly
Code: Select all
apt-get update -y
apt-get install -y iputils-ping
The only problem with this is that after a update or reinstall these steps have to be redone.
Cheers, Ron.