Tagged Questions

15
votes
10answers
39k views

How do I get a list of all subdomains of a domain? [closed]

I want to find out all the subdomains of a given domain. I found a hint which tells me to dig the authoritative Nameserver with the following option: dig @ns1.foo.bar some_domain.com axfr But this ...
2
votes
0answers
35 views

How to use NSHost to get the name behind a bunch of LAN ip addresses?

I know how to get the name behind an ip address using the terminal and dig. I.e: dig @224.0.0.251 -p5353 -x 192.168.0.195 +short However, I don't want to use NSTask in my application. How can I use ...
2
votes
1answer
234 views

Resolving gmail.com mail server

I am trying to find the gmail.com mail server using dig command and verifying the results returned by dig command using telnet. $ dig gmail.com MX ; <<>> DiG 9.7.3 <<>> ...
2
votes
2answers
780 views

Using the dig command in python

Just a forewarning, my python skills are almost nonexistent, but I’m trying to learn as I go. I'm doing a few changes via our DNS control panel over the weekend to about 58 CNAMES (just changing the ...
1
vote
2answers
134 views

Domain name existence via “dig”

Would it be possible to check a domain name its existence by checking the output of "dig"? Inside the bind sources I found these constants: 0 DNS_R_NOEROR 1 DNS_R_FORMERR 2 DNS_R_SERVFAIL 3 ...
1
vote
2answers
487 views

DNS: How to Dig thru the right domain name from the TLD?

I'd like to query the DNS records until get the right domain name. For instance, given www.subdomain.site.com.br, be able to dig from .br until site.com.br. Which is the most (protocol-speaking) ...
1
vote
8answers
2k views

Internal DNS configuration woes [closed]

Alright, I am going to state up front that this question may be too involved (amount of detail not complexity) for this medium. But I figured this was the best place to start. I am attempting to ...
0
votes
2answers
26 views

Finding what NS is used for a subdomain?

Two questions from a dns newb: Is it possible for a subdomain to use a different set of nameservers than its parent domain? Eg: abc.ca uses ns.whatever.com and ns2.whatever.com, while sub.abc.ca ...
0
votes
1answer
390 views

dig +short doesn't work when querying root DNS server?

I've found that if I query a UK root DNS server directly (e.g 195.66.240.130) it provides a result in 2-5ms vs querying a regular DNS server which takes 15-40ms. However, for some reason the +short ...
0
votes
2answers
98 views

Can I lookup NS and A at the same time using dig

Is it possible to lookup the A (ip address) and NS (nameservers) of a domain using a single dig command? I can use dig google.com A +short or dig google.com NS +short but surely it's possible to do ...
0
votes
1answer
978 views

Using dig to search for SPF records

I am using dig installed on my machine to search for SPF records for a particular domain. Is there a way to search a particular DNS server for the SPF records. For example will the following work: ...
0
votes
4answers
519 views

Algorithm for sorting response in a round-robin DNS configuration

I'm trying to implement a sorting algorithm to ensure my DNS library always works with an ordered list of DNS records, even if the response comes from a Round-Robin configuration. Let's take the ...
0
votes
1answer
375 views

question about UNIX dig output

Using the unix dig command, I can get the following MX record: $ dig +nocmd gmail.com MX +noall +answer gmail.com. 1868 IN MX 20 alt2.gmail-smtp-in.l.google.com. gmail.com. 1868 IN MX 40 ...