Skip to content

Commit d5a6b1b

Browse files
authored
Add DuckDNS component (home-assistant#3429)
* Add DuckDNS component * Add period and an additional line break
1 parent d1ae539 commit d5a6b1b

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

source/_addons/duckdns.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: page
3-
title: "Duck DNS"
3+
title: "DuckDNS"
44
description: "Automatically update your Duck DNS IP address."
55
date: 2017-04-30 13:28
66
sidebar: true
@@ -10,7 +10,7 @@ footer: true
1010
featured: true
1111
---
1212

13-
[Duck DNS](https://duckdns.org/) is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice.
13+
[Duck DNS](https://duckdns.org/) is a free dynamic DNS service. Using this service you can have a custom domainname under duckdns.org point at your home computer.
1414

1515
```json
1616
{

source/_components/duckdns.markdown

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: page
3+
title: "DuckDNS"
4+
description: "Keep your computer registered with the DuckDNS dynamic DNS."
5+
date: 2017-09-23 07:08
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: duckdns.png
11+
ha_category: Utility
12+
featured: false
13+
ha_release: 0.55
14+
---
15+
16+
With the DuckDNS component 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.
17+
18+
To use the component in your installation, add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
duckdns:
23+
domain: mysubdomain
24+
access_token: abcdefgh
25+
```
26+
27+
{% configuration binary_sensor.template %}
28+
domain:
29+
description: Your duckdns subdomain (without the `.duckdns.org` suffix).
30+
required: true
31+
type: string
32+
access_token:
33+
description: Your DuckDNS access token. Log in to the site to get one.
34+
required: true
35+
type: string
36+
{% endconfiguration %}

0 commit comments

Comments
 (0)