]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/root-addresses.hh
Merge pull request #3592 from pieterlexis/issue-3591-secure-delegated-test-broken
[thirdparty/pdns.git] / pdns / root-addresses.hh
1 /*
2 PowerDNS Versatile Database Driven Nameserver
3 Copyright (C) 2002 - 2016 PowerDNS.COM BV
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2
7 as published by the Free Software Foundation
8
9 Additionally, the license of this program contains a special
10 exception which allows to distribute the program in binary form when
11 it is linked against OpenSSL.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #pragma once
24
25 static const char*rootIps4[]={"198.41.0.4", // a.root-servers.net.
26 "192.228.79.201", // b.root-servers.net.
27 "192.33.4.12", // c.root-servers.net.
28 "199.7.91.13", // d.root-servers.net.
29 "192.203.230.10", // e.root-servers.net.
30 "192.5.5.241", // f.root-servers.net.
31 "192.112.36.4", // g.root-servers.net.
32 "198.97.190.53", // h.root-servers.net.
33 "192.36.148.17", // i.root-servers.net.
34 "192.58.128.30", // j.root-servers.net.
35 "193.0.14.129", // k.root-servers.net.
36 "199.7.83.42", // l.root-servers.net.
37 "202.12.27.33" // m.root-servers.net.
38 };
39
40 static const char*rootIps6[]={"2001:503:ba3e::2:30", // a.root-servers.net.
41 "2001:500:84::b", // b.root-servers.net.
42 "2001:500:2::c", // c.root-servers.net.
43 "2001:500:2d::d", // d.root-servers.net.
44 NULL, // e.root-servers.net.
45 "2001:500:2f::f", // f.root-servers.net.
46 NULL, // g.root-servers.net.
47 "2001:500:1::53", // h.root-servers.net.
48 "2001:7fe::53", // i.root-servers.net.
49 "2001:503:c27::2:30", // j.root-servers.net.
50 "2001:7fd::1", // k.root-servers.net.
51 "2001:500:9f::42", // l.root-servers.net.
52 "2001:dc3::35" // m.root-servers.net.
53 };