DNS. Non-authoritative answer. canonical nameMS DNS lookup issueBlocking nslookup on A recordWindows 2008 dns server can't find his own host namePowerDNS authoritative name server works but non-authoritative name server servfailI am confused about the Authoritative DNS Server actual definitionDNS Always Getting Non-Authoritative AnswerUnable to Receive DNS ResponsesWhy do Network Solutions DNS servers answer an incorrect IP for google.com etc.?Non-Authoritative DNS conflicting with established TLD RegistrarSamba Secondary DC,No DNS Forwarding
Why is my code printing rvalue 2 times instead of rvalue & lvalue?
STM Microcontroller burns every time
Plotting with different color for a single curve
Are Finite Automata Turing Complete?
Could Sauron have read Tom Bombadil's mind if Tom had held the Palantir?
Should I tell my insurance company I'm making payments on my new car?
How come I was asked by a CBP officer why I was in the US?
Changing the opacity of lines on a plot based on their value
How risky is real estate?
MH370 blackbox - is it still possible to retrieve data from it?
A player is constantly pestering me about rules, what do I do as a DM?
Can’t attend PhD conferences
Why is C++ initial allocation so much larger than C's?
Do flight schools typically have dress codes or expectations?
How can I repair scratches on a painted French door?
Should I hide continue button until tasks are completed?
Should I include salary information on my CV?
An expansion from Ramanujan related to birthday problem
Policemen catch thieves
How to reply to small talk/random facts in a non-offensive way?
Importance of the principal bundle in Chern-Simons theory
What happens when your group is victim of a surprise attack but you can't be surprised?
Which verb form to use with "с"
When is it ok to add filler to a story?
DNS. Non-authoritative answer. canonical name
MS DNS lookup issueBlocking nslookup on A recordWindows 2008 dns server can't find his own host namePowerDNS authoritative name server works but non-authoritative name server servfailI am confused about the Authoritative DNS Server actual definitionDNS Always Getting Non-Authoritative AnswerUnable to Receive DNS ResponsesWhy do Network Solutions DNS servers answer an incorrect IP for google.com etc.?Non-Authoritative DNS conflicting with established TLD RegistrarSamba Secondary DC,No DNS Forwarding
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a DNS understanding problem. (Using Windows AD integrated DNS, Windows 2012)
I'm trying to find out why I get the reply I get.
When going to "www.company.cn" I get an internal IP. But I do not have any records in my DNS with "www.company.cn"
A few NSLOOKUP results:
The simple one:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
Name: www.company.dk
Address: 192.168.0.15
Aliases: www.company.cn
> exit
As I understand, the "Non-authoritative answer" tells me its not from my local DNS I get the data (Also I do not have a company.cn zone in my DNS)
More NSLOOKUP:
C:WINDOWSsystem32>nslookup -type=soa www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
www.company.cn canonical name = www.company.dk
So it tells me it's from a CNAME record? (And somehow related to "www.company.dk")
I do have a "www.company.dk" DNS entry in my DNS:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.dk
Server: DC.company.net
Address: 192.168.0.5
Name: www.company.dk
Address: 192.168.0.15
If I try the nslookup SOA command on www.google.com, I get another, more usefull answer:
C:WINDOWSsystem32>nslookup -type=soa www.google.com
Server: DC.company.net
Address: 192.168.0.5
google.com
primary name server = ns1.google.com
responsible mail addr = dns-admin.google.com
serial = 180758758
refresh = 900 (15 mins)
retry = 900 (15 mins)
expire = 1800 (30 mins)
default TTL = 60 (1 min)
ns1.google.com internet address = 216.239.32.10
So here it tells me the name server where it got the reply from. (which understandably is not a local server, and not within my control)
In general I just want to know where I can control the DNS record of "www.company.cn"
How can I get more useful information as to where to control www.company.cn?
domain-name-system
add a comment |
I have a DNS understanding problem. (Using Windows AD integrated DNS, Windows 2012)
I'm trying to find out why I get the reply I get.
When going to "www.company.cn" I get an internal IP. But I do not have any records in my DNS with "www.company.cn"
A few NSLOOKUP results:
The simple one:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
Name: www.company.dk
Address: 192.168.0.15
Aliases: www.company.cn
> exit
As I understand, the "Non-authoritative answer" tells me its not from my local DNS I get the data (Also I do not have a company.cn zone in my DNS)
More NSLOOKUP:
C:WINDOWSsystem32>nslookup -type=soa www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
www.company.cn canonical name = www.company.dk
So it tells me it's from a CNAME record? (And somehow related to "www.company.dk")
I do have a "www.company.dk" DNS entry in my DNS:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.dk
Server: DC.company.net
Address: 192.168.0.5
Name: www.company.dk
Address: 192.168.0.15
If I try the nslookup SOA command on www.google.com, I get another, more usefull answer:
C:WINDOWSsystem32>nslookup -type=soa www.google.com
Server: DC.company.net
Address: 192.168.0.5
google.com
primary name server = ns1.google.com
responsible mail addr = dns-admin.google.com
serial = 180758758
refresh = 900 (15 mins)
retry = 900 (15 mins)
expire = 1800 (30 mins)
default TTL = 60 (1 min)
ns1.google.com internet address = 216.239.32.10
So here it tells me the name server where it got the reply from. (which understandably is not a local server, and not within my control)
In general I just want to know where I can control the DNS record of "www.company.cn"
How can I get more useful information as to where to control www.company.cn?
domain-name-system
add a comment |
I have a DNS understanding problem. (Using Windows AD integrated DNS, Windows 2012)
I'm trying to find out why I get the reply I get.
When going to "www.company.cn" I get an internal IP. But I do not have any records in my DNS with "www.company.cn"
A few NSLOOKUP results:
The simple one:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
Name: www.company.dk
Address: 192.168.0.15
Aliases: www.company.cn
> exit
As I understand, the "Non-authoritative answer" tells me its not from my local DNS I get the data (Also I do not have a company.cn zone in my DNS)
More NSLOOKUP:
C:WINDOWSsystem32>nslookup -type=soa www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
www.company.cn canonical name = www.company.dk
So it tells me it's from a CNAME record? (And somehow related to "www.company.dk")
I do have a "www.company.dk" DNS entry in my DNS:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.dk
Server: DC.company.net
Address: 192.168.0.5
Name: www.company.dk
Address: 192.168.0.15
If I try the nslookup SOA command on www.google.com, I get another, more usefull answer:
C:WINDOWSsystem32>nslookup -type=soa www.google.com
Server: DC.company.net
Address: 192.168.0.5
google.com
primary name server = ns1.google.com
responsible mail addr = dns-admin.google.com
serial = 180758758
refresh = 900 (15 mins)
retry = 900 (15 mins)
expire = 1800 (30 mins)
default TTL = 60 (1 min)
ns1.google.com internet address = 216.239.32.10
So here it tells me the name server where it got the reply from. (which understandably is not a local server, and not within my control)
In general I just want to know where I can control the DNS record of "www.company.cn"
How can I get more useful information as to where to control www.company.cn?
domain-name-system
I have a DNS understanding problem. (Using Windows AD integrated DNS, Windows 2012)
I'm trying to find out why I get the reply I get.
When going to "www.company.cn" I get an internal IP. But I do not have any records in my DNS with "www.company.cn"
A few NSLOOKUP results:
The simple one:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
Name: www.company.dk
Address: 192.168.0.15
Aliases: www.company.cn
> exit
As I understand, the "Non-authoritative answer" tells me its not from my local DNS I get the data (Also I do not have a company.cn zone in my DNS)
More NSLOOKUP:
C:WINDOWSsystem32>nslookup -type=soa www.company.cn
Server: DC.company.net
Address: 192.168.0.5
Non-authoritative answer:
www.company.cn canonical name = www.company.dk
So it tells me it's from a CNAME record? (And somehow related to "www.company.dk")
I do have a "www.company.dk" DNS entry in my DNS:
C:WINDOWSsystem32>nslookup
Default Server: DC.company.net
Address: 192.168.0.5
> www.company.dk
Server: DC.company.net
Address: 192.168.0.5
Name: www.company.dk
Address: 192.168.0.15
If I try the nslookup SOA command on www.google.com, I get another, more usefull answer:
C:WINDOWSsystem32>nslookup -type=soa www.google.com
Server: DC.company.net
Address: 192.168.0.5
google.com
primary name server = ns1.google.com
responsible mail addr = dns-admin.google.com
serial = 180758758
refresh = 900 (15 mins)
retry = 900 (15 mins)
expire = 1800 (30 mins)
default TTL = 60 (1 min)
ns1.google.com internet address = 216.239.32.10
So here it tells me the name server where it got the reply from. (which understandably is not a local server, and not within my control)
In general I just want to know where I can control the DNS record of "www.company.cn"
How can I get more useful information as to where to control www.company.cn?
domain-name-system
domain-name-system
asked Jan 4 '18 at 9:02
LisbjergLisbjerg
183 bronze badges
183 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
In the last query you asked your local DNS server about google,unless your company is google.com the SOA lookup for google tells you nothing about your local DNS zones, only that you can resolve public/internet zones.
Did you mean to ask googleDNS about your domain, to see your records are in public DNS; if so you wanted
nslookup -type=soa company.cn. 8.8.8.8
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f890656%2fdns-non-authoritative-answer-canonical-name%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In the last query you asked your local DNS server about google,unless your company is google.com the SOA lookup for google tells you nothing about your local DNS zones, only that you can resolve public/internet zones.
Did you mean to ask googleDNS about your domain, to see your records are in public DNS; if so you wanted
nslookup -type=soa company.cn. 8.8.8.8
add a comment |
In the last query you asked your local DNS server about google,unless your company is google.com the SOA lookup for google tells you nothing about your local DNS zones, only that you can resolve public/internet zones.
Did you mean to ask googleDNS about your domain, to see your records are in public DNS; if so you wanted
nslookup -type=soa company.cn. 8.8.8.8
add a comment |
In the last query you asked your local DNS server about google,unless your company is google.com the SOA lookup for google tells you nothing about your local DNS zones, only that you can resolve public/internet zones.
Did you mean to ask googleDNS about your domain, to see your records are in public DNS; if so you wanted
nslookup -type=soa company.cn. 8.8.8.8
In the last query you asked your local DNS server about google,unless your company is google.com the SOA lookup for google tells you nothing about your local DNS zones, only that you can resolve public/internet zones.
Did you mean to ask googleDNS about your domain, to see your records are in public DNS; if so you wanted
nslookup -type=soa company.cn. 8.8.8.8
answered Jan 7 '18 at 12:02
CGretskiCGretski
1012 bronze badges
1012 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f890656%2fdns-non-authoritative-answer-canonical-name%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown