-
Download the project:
git clone https://github.com/zoilomora/hikvision-to-mqtt.git # or wget https://github.com/zoilomora/hikvision-to-mqtt/archive/master.zip
-
Check the
docker-compose.yml
to see if there are any conflicts with the ports. -
Start the whole environment:
make start
-
Once started you will be in a shell inside the php container, check the correct functioning of the system:
/var/app $ console about -------------------- ---------------------------------------- Symfony -------------------- ---------------------------------------- Version 5.0.2 Long-Term Support No End of maintenance 07/2020 End of life 07/2020 -------------------- ---------------------------------------- Kernel -------------------- ---------------------------------------- Type ZoiloMora\HikvisionCommunicator\Kernel Environment dev Debug true Charset UTF-8 Cache directory ./var/cache/dev (674 KiB) Log directory ./var/log (0 B) -------------------- ---------------------------------------- PHP -------------------- ---------------------------------------- Version 7.4.1 Architecture 64 bits Intl locale n/a Timezone UTC (2020-01-06T12:39:19+00:00) OPcache false APCu false Xdebug false -------------------- ---------------------------------------- Environment (.env) -------------------- ---------------------------------------- APP_ENV dev APP_SECRET 154543ee90e00d4cb8d63fe74bd73a60 TIMEZONE Europe/Madrid FAKE_SMTP_API_URI http://fake-smtp-server:1080 MQTT_CLIENT_ID hikvision MQTT_BROKER mqtt MQTT_PORT 1883 MQTT_TOPIC alerts -------------------- ----------------------------------------
-
Now leave the container:
/var/app $ exit
-
You can leave the system connected:
docker-compose up -d
-
Use the iVMS-4200 Client to access the remote configuration of the device.
-
Go to
Event > Email
and configure thefake-smpt-server
as SMTP Server (default port 1025). You can enter any source and destination address, for example:Sender Address: <hikvision> [email protected] Receiver Address: <server> [email protected]
-
Activate in the events that the Linkage Action: Email Linkage.
Run a MQTT Client to monitor the topic (replace <server_id>
with the IP Address of your MQTT Server):
docker run --init -it --rm efrecon/mqtt-client sub -h <server_ip> -t "alerts" -v
# Result
alerts {"type":"Motion Detected","device":{"name":"Embedded Net DVR","serial_number":"******"},"camera":{"name":"Camera 1","number":"A1"},"occurred_on":{"date":"2020-01-06 14:51:02.000000","timezone_type":3,"timezone":"Europe\/Madrid"}}
You can also see the logs of the docker containers to see what is happening:
docker-compose logs -f
# Result
mqtt_1 | 1578318663: New connection from 10.10.12.4 on port 1883.
mqtt_1 | 1578318663: New client connected from 10.10.12.4 as hikvision (p2, c1, k60).
php_1 | Published message: {"type":"Motion Detected","device":{"name":"Embedded Net DVR","serial_number":"******"},"camera":{"name":"Camera 1","number":"A1"},"occurred_on":{"date":"2020-01-06 14:51:02.000000","timezone_type":3,"timezone":"Europe\/Madrid"}}
mqtt_1 | 1578318663: Client hikvision disconnected.