Ace Fekay [MVP]
Guest
|
Posted:
Thu Nov 03, 2005 9:50 am Post subject:
Re: NSLookup |
|
|
In news:AE65F516-238E-463A-B4BD-C01BA6B102C0@microsoft.com,
kjs <kjs@discussions.microsoft.com> made this post, which I then commented
about below:
| Quote: | How can I use the interactive NSLookup to find what the authoritative
server is for an entry? I lookup an entry and it always says
non-authoritative server. is this my isp dns? I'm confused. thanks in
advance.
|
If the name you are querying is under a zone on the DNS server that nslookup
is using, then it will be an authorative answer. If the server does not have
the zone, and it goes elsewhere to find it (recursion process), then it is a
non-authorative answer.
You can use
set q=soa
to find the SOAs for the zone. Once you know the IP, then you can tell
nslookup to specifically use that server:
server 1.1.1.1
--
Ace
This posting is provided "AS-IS" with no warranties or guarantees and
confers no rights.
If this post is viewed at a non-Microsoft community website, and you were to
respond to it through that community's website, I may not see your reply
unless that website posts replies back to the original Microsoft forum.
Therefore, please direct all replies ONLY to the Microsoft public newsgroup
this thread originated in so all can benefit or ensure the web community
posts it back to the original forum.
Ace Fekay, MCSE 2003 & 2000, MCSA 2003 & 2000, MCSE+I, MCT, MVP
Microsoft MVP - Windows Server Directory Services
Microsoft Certified Trainer
Infinite Diversities in Infinite Combinations.
================================= |
|
Kevin D. Goodknecht Sr. [
Guest
|
Posted:
Thu Nov 03, 2005 5:50 pm Post subject:
Re: NSLookup |
|
|
kjs <kjs@discussions.microsoft.com> wrote:
| Quote: | How can I use the interactive NSLookup to find what the authoritative
server is for an entry? I lookup an entry and it always says
non-authoritative server. is this my isp dns? I'm confused. thanks in
advance.
|
nslookup
set type=ns
and this gives the master name server in case the master does not have an NS
record (hidden master)
set type=soa
This returns NS records, SOA record, MX and TXT records
set type=any
There is nothing wrong with a non-authoritative answer, it simply means the
DNS server doesn't have the zone and it got the answer from its cache,
forwarder, or by recursion..
--
Best regards,
Kevin D. Goodknecht Sr. [MVP]
Hope This Helps
===================================
When responding to posts, please "Reply to Group"
via your newsreader so that others may learn and
benefit from your issue, to respond directly to
me remove the nospam. from my email address.
===================================
http://www.lonestaramerica.com/
http://support.wftx.us/
https://secure.lsaol.com/
===================================
Use Outlook Express?... Get OE_Quotefix:
It will strip signature out and more
http://home.in.tum.de/~jain/software/oe-quotefix/
===================================
Keep a back up of your OE settings and folders
with OEBackup:
http://www.oehelp.com/OEBackup/Default.aspx
=================================== |
|