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
doc:dns [2015/09/13 14:02] – [Description of service] Romain Boissatdoc:dns [2023/08/25 16:38] (current) – external edit 127.0.0.1
Line 10: Line 10:
 <note important> <note important>
   * Anycast DNS IPv4: **192.168.248.53**.   * Anycast DNS IPv4: **192.168.248.53**.
-  * Anycast DNS IPv6: **''fd00:6b64:f3b0:53::1''**.+  * Anycast DNS IPv6: **''fd00:6b64:f3b0::53''**.
 </note> </note>
  
Line 17: Line 17:
 zone "168.192.in-addr.arpa" { zone "168.192.in-addr.arpa" {
   type forward;   type forward;
-  forwarders { 192.168.248.53; fd00:6b64:f3b0:53::1; };+  forwarders { 192.168.248.53; fd00:6b64:f3b0::53; };
 }; };
  
 zone "0.b.3.f.4.6.b.6.0.0.d.f.ip6.arpa" { zone "0.b.3.f.4.6.b.6.0.0.d.f.ip6.arpa" {
   type forward;   type forward;
-  forwarders { 192.168.248.53; fd00:6b64:f3b0:53::1; };+  forwarders { 192.168.248.53; fd00:6b64:f3b0::53; };
 }; };
 </code></note> </code></note>
  
-  [[doc:dns:core#core_glanet_domain_name-server_without_recursion|Running a ‘core’ GLaNET domain name-server]].+<note tip>**Unbound configuration example (forwarder)** 
 +<code> 
 +server: 
 +(...) 
 +    local-zone        "168.192.in-addr.arpa." nodefault 
 +    local-zone:         "0.b.3.f.4.6.b.6.0.0.d.f.ip6.arpa." transparent
  
 +    domain-insecure:    "0.b.3.f.4.6.b.6.0.0.d.f.ip6.arpa."
 +(...)
  
 +stub-zone:
 +  name:         168.192.in-addr.arpa.
 +  stub-addr:    fd00:6b64:f3b0::53
 +  stub-addr:    192.168.248.53
 +
 +stub-zone:
 +  name:         0.b.3.f.4.6.b.6.0.0.d.f.ip6.arpa.
 +  stub-addr:    fd00:6b64:f3b0::53
 +  stub-addr:    192.168.248.53
 +
 +</code></note>
 +
 +<note tip>**Knot Resolver configuration example (forwarder)**
 +<code>
 +(...)
 +-- Forward all requests for 168.192.in-addr.arpa. to fd00:6b64:f3b0::53 and 192.168.248.53
 +policy.add(policy.suffix(policy.STUB({'fd00:6b64:f3b0::53', '192.168.248.53'}), {todname('168.192.in-addr.arpa')}))
 +
 +-- Forward all requests for 0.b.3.f.4.6.b.6.0.0.d.f.ip6.arpa to fd00:6b64:f3b0::53 and 192.168.248.53
 +policy.add(policy.suffix(policy.STUB({'fd00:6b64:f3b0::53', '192.168.248.53'}), {todname('0.b.3.f.4.6.b.6.0.0.d.f.ip6.arpa')}))
 +(...)
 +</code></note>
 ===== Recursive DNS ===== ===== Recursive DNS =====
  
Line 35: Line 64:
 <note important> <note important>
   * Anycast recursive DNS IPv4: **192.168.248.153**.   * Anycast recursive DNS IPv4: **192.168.248.153**.
-  * Anycast recursive DNS IPv6: **''fd00:6b64:f3b0:153::1''**.+  * Anycast recursive DNS IPv6: **''fd00:6b64:f3b0::153''**.
 </note> </note>
- 
-  * [[doc:dns:core#core_glanet_domain_name-server_with_recursion|Running a ‘core’ GLaNET recursive domain name-server]].