* [gentoo-user] {OT} DNS: no SOA record or DNSSEC
@ 2013-08-27 10:30 Grant
2013-08-27 11:53 ` Alan McKinnon
0 siblings, 1 reply; 7+ messages in thread
From: Grant @ 2013-08-27 10:30 UTC (permalink / raw
To: Gentoo mailing list
I use a fairly well-known (free) DNS provider. I just checked my DNS
settings at dnscheck.pingdom.com and I got:
1. No SOA record was found when querying the name server. This is most
probably due to a misconfiguration at the name server - a zone must
have a SOA record.
2. Nameserver * does not do DNSSEC extra processing.
Are either of these something to worry about?
- Grant
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [gentoo-user] {OT} DNS: no SOA record or DNSSEC
2013-08-27 10:30 [gentoo-user] {OT} DNS: no SOA record or DNSSEC Grant
@ 2013-08-27 11:53 ` Alan McKinnon
2013-08-27 14:36 ` William Kenworthy
2013-09-01 8:24 ` Grant
0 siblings, 2 replies; 7+ messages in thread
From: Alan McKinnon @ 2013-08-27 11:53 UTC (permalink / raw
To: gentoo-user
On 27/08/2013 12:30, Grant wrote:
> I use a fairly well-known (free) DNS provider. I just checked my DNS
> settings at dnscheck.pingdom.com and I got:
>
> 1. No SOA record was found when querying the name server. This is most
> probably due to a misconfiguration at the name server - a zone must
> have a SOA record.
>
> 2. Nameserver * does not do DNSSEC extra processing.
>
> Are either of these something to worry about?
Yes. Without an SOA record you don't actually have a zone.
You should stop using those crappy dns checker sites, they tend to be
full of shit, unreliable and operate off someone's idea of how DNS
should be instead of reading the actual RFCs on the matter. Our abuse
team has long ticket lists from people trusting those sites and now
think there's something with how we do glue. Hint: Our glue is right and
proper :-)
Instead just use dig, using google.com as an example get the NS records
first:
$ dig ns google.com +short
ns3.google.com.
ns2.google.com.
ns1.google.com.
ns4.google.com.
Then query each of those name server in turn directly for the SOA:
$ dig soa google.com +short @ns3.google.com
ns1.google.com. dns-admin.google.com. 2013081400 7200 1800 1209600 300
That's a correct SOA record.
What could have happened with that test site is the query timed out and
the site assumed the universe was therefore about to explode. Use such
if you want but always verify the results yourself using dig.
The DNSSEC message is not a problem. It means your provider does not use
DNSSEC. Again, the universe will not explode from this, we all got along
just fine with plain unsigned DNS transfers for 30 years. DNSSEC is a
way to digitally sign zone transfers and updates. Nothing to do with
zone resolution.
--
Alan McKinnon
alan.mckinnon@gmail.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [gentoo-user] {OT} DNS: no SOA record or DNSSEC
2013-08-27 11:53 ` Alan McKinnon
@ 2013-08-27 14:36 ` William Kenworthy
2013-08-27 15:10 ` Michael Orlitzky
2013-09-01 8:24 ` Grant
1 sibling, 1 reply; 7+ messages in thread
From: William Kenworthy @ 2013-08-27 14:36 UTC (permalink / raw
To: gentoo-user
I used to use "dlint" for this, but the package no longer builds easily
- is there any equivalent package as dig is not ideal to find what the
problem actually is?
BillK
On 27/08/13 19:53, Alan McKinnon wrote:
> On 27/08/2013 12:30, Grant wrote:
>> I use a fairly well-known (free) DNS provider. I just checked my DNS
>> settings at dnscheck.pingdom.com and I got:
>>
>> 1. No SOA record was found when querying the name server. This is most
>> probably due to a misconfiguration at the name server - a zone must
>> have a SOA record.
>>
>> 2. Nameserver * does not do DNSSEC extra processing.
>>
>> Are either of these something to worry about?
>
>
> Yes. Without an SOA record you don't actually have a zone.
>
> You should stop using those crappy dns checker sites, they tend to be
> full of shit, unreliable and operate off someone's idea of how DNS
> should be instead of reading the actual RFCs on the matter. Our abuse
> team has long ticket lists from people trusting those sites and now
> think there's something with how we do glue. Hint: Our glue is right and
> proper :-)
>
>
> Instead just use dig, using google.com as an example get the NS records
> first:
>
> $ dig ns google.com +short
> ns3.google.com.
> ns2.google.com.
> ns1.google.com.
> ns4.google.com.
>
>
> Then query each of those name server in turn directly for the SOA:
>
> $ dig soa google.com +short @ns3.google.com
> ns1.google.com. dns-admin.google.com. 2013081400 7200 1800 1209600 300
>
> That's a correct SOA record.
>
> What could have happened with that test site is the query timed out and
> the site assumed the universe was therefore about to explode. Use such
> if you want but always verify the results yourself using dig.
>
> The DNSSEC message is not a problem. It means your provider does not use
> DNSSEC. Again, the universe will not explode from this, we all got along
> just fine with plain unsigned DNS transfers for 30 years. DNSSEC is a
> way to digitally sign zone transfers and updates. Nothing to do with
> zone resolution.
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [gentoo-user] {OT} DNS: no SOA record or DNSSEC
2013-08-27 14:36 ` William Kenworthy
@ 2013-08-27 15:10 ` Michael Orlitzky
0 siblings, 0 replies; 7+ messages in thread
From: Michael Orlitzky @ 2013-08-27 15:10 UTC (permalink / raw
To: gentoo-user
On 08/27/2013 10:36 AM, William Kenworthy wrote:
> I used to use "dlint" for this, but the package no longer builds easily
> - is there any equivalent package as dig is not ideal to find what the
> problem actually is?
>
The 'donuts' tool from net-dns/dnssec-tools can supposedly do this, if
you can figure out how to use it (I gave up).
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [gentoo-user] {OT} DNS: no SOA record or DNSSEC
2013-08-27 11:53 ` Alan McKinnon
2013-08-27 14:36 ` William Kenworthy
@ 2013-09-01 8:24 ` Grant
2013-09-01 9:03 ` Alan McKinnon
1 sibling, 1 reply; 7+ messages in thread
From: Grant @ 2013-09-01 8:24 UTC (permalink / raw
To: Gentoo mailing list
>> I use a fairly well-known (free) DNS provider. I just checked my DNS
>> settings at dnscheck.pingdom.com and I got:
>>
>> 1. No SOA record was found when querying the name server. This is most
>> probably due to a misconfiguration at the name server - a zone must
>> have a SOA record.
>>
>> 2. Nameserver * does not do DNSSEC extra processing.
>>
>> Are either of these something to worry about?
>
> Yes. Without an SOA record you don't actually have a zone.
>
> You should stop using those crappy dns checker sites, they tend to be
> full of shit, unreliable and operate off someone's idea of how DNS
> should be instead of reading the actual RFCs on the matter. Our abuse
> team has long ticket lists from people trusting those sites and now
> think there's something with how we do glue. Hint: Our glue is right and
> proper :-)
>
> Instead just use dig, using google.com as an example get the NS records
> first:
>
> $ dig ns google.com +short
> ns3.google.com.
> ns2.google.com.
> ns1.google.com.
> ns4.google.com.
>
> Then query each of those name server in turn directly for the SOA:
>
> $ dig soa google.com +short @ns3.google.com
> ns1.google.com. dns-admin.google.com. 2013081400 7200 1800 1209600 300
>
> That's a correct SOA record.
Does this look OK?
$ dig soa MASKED.com +short @MASKED1.MASKED.com
MASKED1.MASKED.com. MASKED.MASKED.com. YYYYMMDD00 3600 1801 604800 3601
> What could have happened with that test site is the query timed out and
> the site assumed the universe was therefore about to explode. Use such
> if you want but always verify the results yourself using dig.
Will do.
> The DNSSEC message is not a problem. It means your provider does not use
> DNSSEC. Again, the universe will not explode from this, we all got along
> just fine with plain unsigned DNS transfers for 30 years. DNSSEC is a
> way to digitally sign zone transfers and updates. Nothing to do with
> zone resolution.
Got it, thanks.
- Grant
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [gentoo-user] {OT} DNS: no SOA record or DNSSEC
2013-09-01 8:24 ` Grant
@ 2013-09-01 9:03 ` Alan McKinnon
2013-09-01 9:17 ` Grant
0 siblings, 1 reply; 7+ messages in thread
From: Alan McKinnon @ 2013-09-01 9:03 UTC (permalink / raw
To: gentoo-user
On 01/09/2013 10:24, Grant wrote:
>> Instead just use dig, using google.com as an example get the NS records
>> > first:
>> >
>> > $ dig ns google.com +short
>> > ns3.google.com.
>> > ns2.google.com.
>> > ns1.google.com.
>> > ns4.google.com.
>> >
>> > Then query each of those name server in turn directly for the SOA:
>> >
>> > $ dig soa google.com +short @ns3.google.com
>> > ns1.google.com. dns-admin.google.com. 2013081400 7200 1800 1209600 300
>> >
>> > That's a correct SOA record.
> Does this look OK?
>
> $ dig soa MASKED.com +short @MASKED1.MASKED.com
> MASKED1.MASKED.com. MASKED.MASKED.com. YYYYMMDD00 3600 1801 604800 3601
That looks OK, doubly so if all listed NS servers return the same answer
In all likelihood I'd say you are dealing with a DNS-check web site that
is over-enthusiastic, or can't deal with network errors or just plain buggy.
IOW, odds are very good that there is nothing wrong with your domain at
all :-)
--
Alan McKinnon
alan.mckinnon@gmail.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [gentoo-user] {OT} DNS: no SOA record or DNSSEC
2013-09-01 9:03 ` Alan McKinnon
@ 2013-09-01 9:17 ` Grant
0 siblings, 0 replies; 7+ messages in thread
From: Grant @ 2013-09-01 9:17 UTC (permalink / raw
To: Gentoo mailing list
>> Does this look OK?
>>
>> $ dig soa MASKED.com +short @MASKED1.MASKED.com
>> MASKED1.MASKED.com. MASKED.MASKED.com. YYYYMMDD00 3600 1801 604800 3601
>
> That looks OK, doubly so if all listed NS servers return the same answer
They do indeed.
> In all likelihood I'd say you are dealing with a DNS-check web site that
> is over-enthusiastic, or can't deal with network errors or just plain buggy.
>
> IOW, odds are very good that there is nothing wrong with your domain at
> all :-)
Many thanks Alan.
- Grant
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-09-01 9:17 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-27 10:30 [gentoo-user] {OT} DNS: no SOA record or DNSSEC Grant
2013-08-27 11:53 ` Alan McKinnon
2013-08-27 14:36 ` William Kenworthy
2013-08-27 15:10 ` Michael Orlitzky
2013-09-01 8:24 ` Grant
2013-09-01 9:03 ` Alan McKinnon
2013-09-01 9:17 ` Grant
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox