Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
7answers
9k views

Reverse DNS lookup in perl

How do I perform a reverse DNS lookup, that is how do I resolve an IP address to its DNS hostname in Perl?
5
votes
8answers
1k views

Most efficient way to programatically determine if a web domain is available?

I am writing some code to determine whether a network domain is registered. For example, I want to check if "Google123.com" is available. There are at least two ways I can do this programatically, but ...
5
votes
3answers
3k views

Reverse DNS in Ruby?

I'm in an environment with a lot of computers that haven't been properly inventoried. Basically, no one knows which IP goes with which mac address and which hostname. So I wrote the following: # ...
2
votes
3answers
3k views

Capturing nslookup shell output with C#

I have a command-line process I would like to automate and capture in C#. At the command line, I type: nslookup This launches a shell which gives me a > prompt. At the prompt, I then type: ls -a ...
1
vote
1answer
82 views

DNS problem, whois shows new servers, dig and soa nslookup show old older dns

I recently began migrating an old site to Drupal, and the hosting service I was using was really cheap and wouldn't have worked with all the modules I installed. I already hired a hosting account at a ...
1
vote
1answer
142 views

Linux Command for a Raw DNS Response

Does anyone know how to fetch the raw output of a DNS query using a particular linux command? The commands that I am familiar with are: % host % nslookup % dig % whois however, each of these ...
1
vote
4answers
576 views

How to perform “nslookup host server”

My C# service needs to periodically poll nslookup host server. Currently it spawns a Process that executes batch script. Due to performance reason I'm considering to do this check using some API. But ...
1
vote
1answer
877 views

External DNS lookup web service (NSLOOKUP / DiG)

Several sites offer hostname to IP conversions, or in their wording: Query a DNS domain nameserver to lookup and find IP address information of computers in the internet. Convert a host or ...
1
vote
1answer
1k views

Android name resolution in internal server doesn't work (device and emulator)

i try to connect (HttpClient) to an internal server in my app via wi-fi. But every time i got an UnknownHostException if I use the domain name of the server (http://domainname/..). If i use the Ip ...
0
votes
1answer
226 views

Spoofing CNAME in nslookup answer (DNS cloaking)

Is there a way to send custom reply to, for example, livejournal's nslookup request with custom CNAME answer? Example: livejournal sends nslookup request type CNAME to site.com; site.com somehow ...
0
votes
1answer
825 views

Using nslookup to find what name servers were contacted in a query

I'm using nslookup to find the DNS name that has the a given IP address as one of its associated addresses. So, I use nslookup interactively... command line> nslookup - set query=ptr ...
0
votes
1answer
325 views

How to query TXT and SRV records from Windows?

I am attempting to query a set of SRV records using the naked host name (e.g. _service._proto) however this fails unless I also include the domain name. This is strange because other tools such as ...
0
votes
1answer
389 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
172 views

Is there a unix command to retrieve NS records from domain?

I am looking for a way to get the primary and secondary NS records of a given domain name, and the IP addresses associated with it. Which means that I am looking for these: dns1: ip1: dns2: ip2: Now ...
0
votes
3answers
734 views

Using Java for 'nslookup -type=srv'

Is there a way in Java to do a Nslookup search on SRV records? I need to bind to Active Directory and would like to use the SRV records to help determine which of the ADs in the cluster are live. In ...
0
votes
1answer
771 views

nslookup for C# and C++ to resolve a host using a specific Server

i need to resolve a hostname using a specific DNS server like you would in nslookup C:\>nslookup hotname 192.100.10.10 Server: UnKnown Address: 192.100.10.10 Name: hostname.host Address: ...
0
votes
4answers
2k views

how to write nslookup programmatically?

instead of using exec in our script to do an nslookup, is there an easy way to write it programmatically in PHP, Python, or Ruby?