home-assistant.github.io/source/_addons/dnsmasq.markdown
Vincent Etter 8de831c8e3 Fix two typos in addon pages files (#2813)
* Fix typo in extension of bluetooth_bcm43xx addon

* Fix typo in extension of dnsmasq addon
2017-06-15 08:02:11 +02:00

938 B

layout title description date sidebar comments sharing footer
page Dnsmasq A simple dns server with benefits. 2017-04-30 13:28 true false true true

Setup and manage a Dnsmasq dns server. This allow your to manipulate some dns requests. I.e. that inside your network, your homeassistant domain will resolve with a internal address.

At the moment, it will not work with resinos!

{
  "defaults": ["8.8.8.8", "8.8.4.4"],
  "forwards": [
    {"domain": "mystuff.local", "server": "192.168.1.40"}
  ],
  "hosts": [
    {"host": "home.mydomain.io", "ip": "192.168.1.10"}
  ],
}

Configuration variables:

  • defaults (Required): A list of dns server to forward default requests.
  • forwards (Optional): A list of domains that will forward to a specific server.
  • hosts (Optional): A list of hosts to resolve it static.