1
0
Fork 0
knot-resolver/tests/integration/hints_zone.j2
Daniel Baumann fbc604e215
Adding upstream version 5.7.5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:56:17 +02:00

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 %}