blob: 1eafe8a46eee93dcc323cf689cdc16dafd4fcce4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
; 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 %}
|