home-assistant.io/source/_addons/dnsmasq.markdown
Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

862 B

title, description
title description
Dnsmasq A simple DNS server.

Setup and manage a Dnsmasq DNS server. This allows you to manipulate DNS requests. For example, you can have your Home Assistant domain resolve with an internal address inside your network.

{
  "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 %} defaults: description: A list of DNS servers to forward default requests to. required: true type: list forwards: description: A list of domains that will forward to a specific server. required: false type: list hosts: description: A list of hosts to resolve statically. required: false type: list {% endconfiguration %}