Duck DNS - Home Assistant
https://www.home-assistant.io/integrations/duckdnsDuck DNS. With the DuckDNS integration you can keep your DuckDNS record up to date. DuckDNS is a free dynamic DNS service that allows you to point a subdomain under duckdns.org at your computer. If you are running the Home Assistant DuckDNS add-on this integration is not required. The add-on will keep your IP updated with DuckDNS.
Duck DNS - Home Assistant
www.home-assistant.io › integrations › duckdnsDuck DNS With the DuckDNS integration you can keep your DuckDNS record up to date. DuckDNS is a free dynamic DNS service that allows you to point a subdomain under duckdns.org at your computer. If you are running the Home Assistant DuckDNS add-on this integration is not required. The add-on will keep your IP updated with DuckDNS. Configuration
Duck DNS - install
www.duckdns.org › install#!/bin/bash su - ubuntu -c "nohup ~/duckdns/duck.sh > ~/duckdns/duck.log 2>&1&" now save the file (in vi hit ESC then :wq! then ENTER) now make the duck_daemon.sh file executeable and change its permissions chmod +x duck_daemon.sh sudo chown root duck_daemon.sh sudo chmod 744 duck_daemon.sh to test this we must run it as root sudo ./duck_daemon.sh
Duck DNS - install
https://www.duckdns.org/install.jsp?tab=synology&domain=서브도메인이름now save the file (in vi hit ESC then :wq! then ENTER) now make the duck.sh file executeable and then create the next script file chmod 700 duck.sh vi duck_daemon.sh now copy this text and put it into the file (in vi you hit the i key to insert, ESC then u to undo) #!/bin/bash su - ubuntu -c "nohup ~/duckdns/duck.sh > ~/duckdns/duck.log 2>&1&"