Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
33 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
233 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
1answer
159 views

Difficulty using Python's socket.gethostbyaddr()

I am trying to reverse dns a list of IPs using socket.gethostbyaddr() in python, which returns 'Unknown Host' for some values, but using dig for the same ip returns the Hostname. Also, dig seems to be ...
2
votes
2answers
773 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 ...
2
votes
3answers
1k views

Why does my Perl backticks complain “sh: line 1: any: command not found”?

I've never programmed before, but needed to write a very simple webapp for work. I'm trying to get this dig query to work: dig @8.8.8.8 +nocomments +nostats +noquestion +nocmd google.com any With ...
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
356 views

Is there a OWL reasoner for .NET

I'm looking for an OWL-DL reasoner that provides an .NET API. Alternatively I could use a DIG compliant reasoner written in any language, but i need a .NET library that is able to convert OWL ...
1
vote
2answers
485 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
0answers
21 views

Can I discover all Round Robin DNS Record with dig?

I thought this was possible but cannot see which options for the "dig" command will output ALL round robin A records for a particular host name.
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
123 views

Determining if some dig answer is authoritative or not

I'm being asked to determine whether this dig answer is authoritative or not. I'd say yes, but I am not too keen on that. The rationale behind believing it is indeed authoritative is that the ...
0
votes
1answer
388 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
968 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
518 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
373 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 ...
-5
votes
1answer
35 views

Difference in behaviour of system commands [closed]

This is a multiple answer type question(One or more may be correct) Using which command can one figure out if a port on a certain host is open? • ping • telnet • traceroute • dig ...