mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-16 16:08:58 +00:00
858 B
858 B
layout, title, description, date, sidebar, comments, sharing, footer
layout | title | description | date | sidebar | comments | sharing | footer |
---|---|---|---|---|---|---|---|
page | Dnsmasq | A simple DNS server. | 2017-04-30 13:28 | true | false | true | true |
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 variables:
- defaults (Required): A list of DNS servers to forward default requests to.
- forwards (Optional): A list of domains that will forward to a specific server.
- hosts (Optional): A list of hosts to resolve statically.