> -----Original Message-----
> From: Larry Brown
> Sent: Sunday, March 30, 2003 6:42 PM
> Subject: RE: NameServer, DNS, and BIND
> 
> 
> My apologies for a feeble attempt at finding the problem.  If 
> whois has yet to be updated and the change has in fact been
> made at the root servers as reflected by that dig request, how
> do you find out the ip address associated with those name
> servers that came back from the dig request to make sure his
> server is even getting the requests?  I'm not versed on dig 
> and don't know how to shovel up that information.
>

To find the ip address (a record) associated with a fqdn...

dig ns1.mydomain.com a

To find the name server record (ns) for a domain...

dig mydomain.com ns

Issue a query to ns1.mydomain.com for the domain name mydomain.com and
return the ns record

dig @ns1.mydomain.com mydomain.com ns

Basically just specify the "type" of dns record to return at the end of dig.
Some of the well known record types are: ns, a, soa, mx, cname

Also, to find the reverse lookup record (PTR) for ip 1.2.3.4

dig -x 1.2.3.4

Steve Cowles



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to