10 lines
402 B
Django/Jinja
10 lines
402 B
Django/Jinja
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; This file holds the information on root name servers needed to
|
|
; initialize cache of Internet domain name servers
|
|
|
|
. 3600000 NS K.ROOT-SERVERS.NET.
|
|
{% if ':' in ROOT_ADDR %}
|
|
K.ROOT-SERVERS.NET. 3600000 AAAA {{ROOT_ADDR}}
|
|
{% else %}
|
|
K.ROOT-SERVERS.NET. 3600000 A {{ROOT_ADDR}}
|
|
{% endif %}
|