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 never works. Has anyone a better idea/approach
...
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 setup a proof of concept project and my BIND configuration is my first big hurdle. I want to setup 3 DNS servers on 3 physical boxes. None o...
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) way to achieve that? An recipe using dig/nslookup would be best.
Thanks.
...
Hi,
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 ontologies into DIG XML language.
Anyone heard about such tools/libraries?
...
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 alt4.gmail-smtp-in.l.google.com.
gmail.com. 1868 IN MX 5 gmail-smtp-in.l.google.com.
gmail.com. 1868 IN MX 10 alt1.gmail-smtp-in.l.google.com....
Greetings,
I have a list of 2 Full Network Class C's worth of IP addresses in seperate text files.
What I am interested in doing is finding a way to resolve the hosts of these IP addresses and filter out to display only the top level domain.
for example;
192.168.1.1 resolves to www.mywebsite.com
using shell scripting would it then be ...
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 this bit of perl:
$dig = `/usr/bin/dig \@8.8.8.8 +nocomments +nostats +noquestion +nocmd $query any`;
Except it doesn't seem to recogniz...
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 following two responses.
First.
$ dig google.com A
; <<>> DiG 9.6.0-APPLE-P2 <<>> google.com A
;; ...
;; ANSWER SECTION:
google.com. 201 I...