User Tools

Site Tools


networking:dns:unbound:local_data

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
networking:dns:unbound:local_data [2020/12/08 08:58] – [Networking - DNS - Unbound - Local Data] peternetworking:dns:unbound:local_data [2022/10/08 11:48] (current) peter
Line 1: Line 1:
-4====== Networking - DNS - Unbound - Local Data ======+====== Networking - DNS - Unbound - Local Data ======
  
 Local data, which can override  A / AAAA addresses, can be configured to reply to DNS queries. Local data, which can override  A / AAAA addresses, can be configured to reply to DNS queries.
Line 19: Line 19:
 </code> </code>
  
 +</WRAP>
 +
 +<WRAP info>
 +**NOTE:**  local-data is often associated with a [[Networking:DNS:Unbound:Local Zones|local-zone]]
 +
 +<code>
 +local-zone: <zone> <type>
 +local-data: "<resource record string>"
 +</code>
 +
 +If you configure **local-data** without specifying **local-zone**, by default a transparent local-zone is created for the data.
 </WRAP> </WRAP>
 +
 +----
 +
 +You can add locally served data with:
 +
 +<code>
 +local-zone: "local." static
 +local-data: "mycomputer.local. IN A 192.0.2.51"
 +local-data: 'mytext.local TXT "content of text record"'
 +</code>
 +
 +You can override certain queries with:
 +
 +<code>
 +local-data: "adserver.example.com A 127.0.0.1"
 +</code>
 +
 +You can redirect a domain to a fixed address with:
 +
 +<code>
 +# This makes example.com, www.example.com, etc, all go to 192.0.2.3.
 +local-zone: "example.com" redirect
 +local-data: "example.com A 192.0.2.3"
 +</code>
 +
 +You can also add PTR records using local-data directly ("ipv4 name" or "ipv6 name"), but then you need to do the reverse notation yourself:
 +
 +<code>
 +local-data-ptr: "192.0.2.3 www.example.com"
 +</code>
  
 ---- ----
Line 35: Line 76:
  
 https://nlnetlabs.nl/documentation/unbound/unbound.conf/ https://nlnetlabs.nl/documentation/unbound/unbound.conf/
 +
 +https://fossies.org/linux/unbound/doc/example.conf.in
networking/dns/unbound/local_data.1607417899.txt.gz · Last modified: 2020/12/08 08:58 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki