From fb041fe434cbe6db73b1fe6d20cd090c1c1d58d7 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Tue, 23 May 2017 15:35:13 +0000 Subject: [PATCH] Site updated at 2017-05-23 15:35:12 UTC --- addons/dhcp_server/index.html | 165 ++++++++++++++++++ addons/index.html | 1 + atom.xml | 2 +- blog/categories/announcements/atom.xml | 2 +- blog/categories/community/atom.xml | 2 +- blog/categories/device-tracking/atom.xml | 2 +- blog/categories/esp8266/atom.xml | 2 +- blog/categories/how-to/atom.xml | 2 +- blog/categories/ibeacons/atom.xml | 2 +- blog/categories/internet-of-things/atom.xml | 2 +- blog/categories/iot-data/atom.xml | 2 +- blog/categories/merchandise/atom.xml | 2 +- blog/categories/micropython/atom.xml | 2 +- blog/categories/mqtt/atom.xml | 2 +- blog/categories/organisation/atom.xml | 2 +- blog/categories/owntracks/atom.xml | 2 +- blog/categories/presence-detection/atom.xml | 2 +- .../public-service-announcement/atom.xml | 2 +- blog/categories/release-notes/atom.xml | 2 +- blog/categories/survey/atom.xml | 2 +- blog/categories/talks/atom.xml | 2 +- blog/categories/technology/atom.xml | 2 +- blog/categories/user-stories/atom.xml | 2 +- blog/categories/video/atom.xml | 2 +- blog/categories/website/atom.xml | 2 +- sitemap.xml | 33 ++-- 26 files changed, 207 insertions(+), 38 deletions(-) create mode 100644 addons/dhcp_server/index.html diff --git a/addons/dhcp_server/index.html b/addons/dhcp_server/index.html new file mode 100644 index 0000000000..0de082e022 --- /dev/null +++ b/addons/dhcp_server/index.html @@ -0,0 +1,165 @@ + + + + + + + + + DHCP server - Home Assistant + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+
+ +
+

+ DHCP Server +

+
+
+

Create a simple DHCP server for your network and allow set fix ip for some devices.

+
{
+  "domain": "mynetwork.local",
+  "dns": ["8.8.8.8", "8.8.4.4"],
+  "networks": [
+    {
+      "subnet": "192.168.1.0",
+      "netmask": "255.255.255.0",
+      "range_start": "192.168.1.100",
+      "range_end": "192.168.1.200",
+      "broadcast": "192.168.1.254",
+      "routers": ["192.168.1.1"]
+    }
+  ],
+  "hosts": [
+    {
+      "name": "webcam_xy",
+      "mac": "aa:bb:ee:cc",
+      "ip": "192.168.1.40"
+    }
+  ]
+}
+
+
+

Configuration variables:

+
    +
  • token (Required): Your Duck DNS API key.
  • +
  • domains (Required): A list of domains to update DNS.
  • +
  • seconds (Optional): Seconds between updates to Duck DNS.
  • +
+
+
+ +
+
+ + + + diff --git a/addons/index.html b/addons/index.html index 161cefa3a0..ed56020f0c 100644 --- a/addons/index.html +++ b/addons/index.html @@ -70,6 +70,7 @@

Add-ons for Hass.io allows the user to extend the functionality around Home Assistant. This can be running an application that Home Assistant can integrate with (like an MQTT broker) or to share the configuration via Samba for easy editing from other computers. Add-ons can be configured via the Hass.io panel in Home Assistant.