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.