# Possible to be notified from Dahua intercom to Amazon Echo, talk two way and open the door?

**URL:** https://discourse.nodered.org/t/possible-to-be-notified-from-dahua-intercom-to-amazon-echo-talk-two-way-and-open-the-door/100331
**Category:** General
**Created:** [6 February 2026 23:36 UTC](https://discourse.nodered.org/t/possible-to-be-notified-from-dahua-intercom-to-amazon-echo-talk-two-way-and-open-the-door/100331 "2026-02-06T23:36:50Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![GiovanniG](https://avatars.discourse-cdn.com/v4/letter/g/ecd19e/32.png) [@GiovanniG](https://discourse.nodered.org/u/GiovanniG)
#### Post date: [6 February 2026 23:36 UTC](https://discourse.nodered.org/t/possible-to-be-notified-from-dahua-intercom-to-amazon-echo-talk-two-way-and-open-the-door/100331/1 "2026-02-06T23:36:50Z")

</div>

Hi, much stuff is involved here, get noticed by intercom by CGI commands I don't know if possible, notify Alexa about the incoming call is possible I've read, establish a two way audio can be possible by SIP? I guess.. then open the gate it's easy by CGI. What is your opinion? Thanks

---

<div class="post-metadata">

### Author: ![leftymuller](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/leftymuller/32/102326_2.png) [@leftymuller](https://discourse.nodered.org/u/leftymuller)
#### Post date: [7 February 2026 03:11 UTC](https://discourse.nodered.org/t/possible-to-be-notified-from-dahua-intercom-to-amazon-echo-talk-two-way-and-open-the-door/100331/2 "2026-02-07T03:11:24Z")

</div>

Hi Giovanni,

I do something similar on my voip intercom that when its dialled it turns on the lights on the driveway  
If you can get the intercom to access a url you could get it to access a cgi-bin script that issues a MQTT command which node-red could then send a notification to alexa.  
Keep in mind, you'd need a webserver installed with cgi-bin configured

```auto
#!/usr/bin/python
import time
import sys
import os
import datetime
import subprocess

os.system("/usr/bin/mosquitto_pub -h localhost -t phonedial -m ON")

```

as far as audio/SIP, I don't believe this is possible

---

<div class="post-metadata">

### Author: ![GiovanniG](https://avatars.discourse-cdn.com/v4/letter/g/ecd19e/32.png) [@GiovanniG](https://discourse.nodered.org/u/GiovanniG)
#### Post date: [11 February 2026 10:14 UTC](https://discourse.nodered.org/t/possible-to-be-notified-from-dahua-intercom-to-amazon-echo-talk-two-way-and-open-the-door/100331/3 "2026-02-11T10:14:23Z")

</div>

thank you a lot, this is cool 🙂  
So I need to setup a cgi server, and ask intercom to notify there a call coming, is it right? Should it be done each time the intercome reboots?  
May you please explain a bit better waht about MQTT? If you can briefly describe the steps that has to be taken, thank you a lot!

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/1X/d073cd938eafa2e558d7c2cd59003b3ef4963033.png) [@system](https://discourse.nodered.org/u/system)
#### Post date: [12 May 2026 10:15 UTC](https://discourse.nodered.org/t/possible-to-be-notified-from-dahua-intercom-to-amazon-echo-talk-two-way-and-open-the-door/100331/4 "2026-05-12T10:15:21Z")

</div>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.
