The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
12 views

DNS lookup failing

I have a primary and secondary domain controller that we use as our DNS servers. Users are getting mixed results with accessing websites. Some work fine, others are giving an error: Network Access ...
2
votes
2answers
42 views

nslookup capture stderr in a variable and display

In a shell script I am running nslookup on number of URLs Sometimes some url returns cannot resolv error. I need to capture those errors in a variable. here is code for nslookup which gets ip ...
0
votes
3answers
146 views

How to get count of unique IP addresses and errors in shell scripting using uniq or awk?

I am doing a nslookup on URLs for multiple iterations using shell script. I need to check how many times IP was returned for each URL. In output file, output is stored as URL IP address using ...
-4
votes
1answer
68 views

Finding out the Domain Name of an IP Address using C# [duplicate]

In my application, I should get the domain names of the few IP Addresses I give as Input. I guess this process is called NSLOOKUP. However, I would like to confirm if I'm right. Simple program to ...
0
votes
1answer
75 views

Is there any iOS SDK equivalent of gethostbyname and inet_ntoa funtions?

I saw several questions here, but is's still not clear for me. And could Apple reject for using standart gethostbyname function?
-1
votes
1answer
344 views

DNS debian SERVFAIL server can't find, no ping [closed]

I'm trying create a DNS server in my environment of test, but i don't know bind. The settings from my server is created with result of search in google. The bind start without error, but don't resolve ...
0
votes
1answer
386 views

NSlookup - Non-authoritative answer

When I nslookup behind our firewall i got Non-authoritative answer like this Non-authoritative answer: Name: sitius.com Address: 173.44.39.70 but if i nslookup from public internet access i ...
0
votes
1answer
276 views

How to I make a script that does nslookup -q=ns for multiple websites and exports the results to a file

I need to create a script that does outputs the results of nslookup -q=ns for multiple websites into a single file. I know how to make it do so for one webiste, it's just "nslookup -q=ns ...
1
vote
1answer
101 views

DNS query freezes with DnsContextFactory in java

The program below performs a DNS lookup. It works good except for one particular combination of host name and dns: import javax.naming.directory.InitialDirContext; import ...
0
votes
2answers
255 views

reverse lookup multiple IP's

If I do the below on a computer I get two IP's back. Nowthen, I want to extract both IP's and then do a reverse lookup on them - ie "nslookup IPADDRESS". How do I extract each entry and then let it ...
-1
votes
2answers
650 views

nslookup www.google.com multiple ip addresses [closed]

When I ran nslookup nslookup www.google.com got following ouput: nslookup www.google.com Server: 127.0.0.1 Address: 127.0.0.1#53 Non-authoritative answer: Name: www.google.com Address: ...
1
vote
0answers
2k views

DNS resolution through DNSmasq on my DD-WRT router [closed]

I have a router with DD-WRT. I want to add a static DNS entry to DNSmasq by "Additional DNSMasq Options" in the webinterface. I found a tutorial for this So I added address=/meinNAS/192.168.1.53 ...
0
votes
1answer
140 views

nslookup output

Here's some simple output from nslookup: nslookup www.go2linux.org Server: 4.2.2.2 Address: 4.2.2.2#53 What does #53 mean over there?
0
votes
1answer
237 views

NSLOOKUP confusion: Where is it getting its information locally?

I perform nslookup on a non-local address, say Google. On my machine (running Ubuntu 12.10), I get this as a result: Server: 127.0.0.1 Address: 127.0.0.1#53 Non-authoritative answer: Name: ...
0
votes
2answers
3k views

perform nslookup from PowerShell

I'm writing a powershell to exact the ip from a server name, which need me to embed the nslookup code into my powershell how can I do the intergrating work? Can any body help me? Add-PSSnapin ...
-1
votes
1answer
456 views

DNS lookup in c/c++ [closed]

I must write a C/C++ program which works a little bit like dig and nslookup: it must know IP addresses of any site. It should do things like the dig www.example.com MX +short command does. I can't ...
1
vote
2answers
973 views

python module for nslookup

Is there a python-module that's doing the same stuff as nslookup does? I am planning to use nslookup on digging some information regarding the domain of a URL to be scrapped. I know I can use os.sys ...
0
votes
1answer
383 views

Different results between nslookup and Java's InetAddress getHostName

I'm trying to write a simple java program that will return the dns names of ip addresses which I do using the following code: InetAddress host = InetAddress.getByName(ip); String dnsName = ...
0
votes
0answers
232 views

DNS not working on Windows 7

Yesterday, my internet stopped working. I can't access the internet via IE/Chrome, but Firefox still works. I have resetted Winsock. Ping via name doesn't work either, but with ip it still works. ...
-1
votes
2answers
155 views

Put outcome from from nslookup into columns

I have a list of hosts in a testfile. I am trying to organize the output into 3 columns. I want to do nslookup on hostname and ilo-hostname and put the result into columns as below. Hostname ...
-1
votes
2answers
484 views

nslookup an ip address. some issues!!! and python script required

i do nslookup for this ip.. nslookup 74.125.225.79 and the hostname is given as: Host Name : ord08s07-in-f15.1e100.net -- but when i browse to 74.125.225.79 or using the ...
2
votes
1answer
248 views

DNS lookup with custom DNS server in Objective-C

From a Mac OS X app, I want to resolve some domain names using a specific DNS server (that has not been set in System Preferences), and easily retrieve the resolved addresses. I can do this in ...
2
votes
3answers
1k views

Resolve hostname in PHP using different name server

How I can resolve hostname to IP address using PHP, but using different nameserver (eg. OpenDNS or Google Public DNS). It not seem that dns_get_record() or gethostbyname() are able to use a different ...
1
vote
1answer
138 views

bash nslookup runs unmotivated ls

When I run echo `nslookup 100.100.100.100` in bash, it list all files (independent of the (non existing) ip adress). Is this an undocumented error, or what is going on? I do realize that the echo ...
0
votes
1answer
490 views

Using BATCH to get country and ISP name from an IP or Hostname?

I need to complete this job in Batch. I use NSLOOKUP command to find the Hostname of an IP, But how I can locate the country of that IP And the ISP Name? Is it possibly? Thankyou for read. EDIT: ...
0
votes
1answer
284 views

nslookup/host parsing PHP

I'm trying to resolve a hostname in PHP and can't use the builtin gethostbyname function because it doesn't support a timeout option, therefore i'm trying to deal with that problem by looking up the ...
1
vote
0answers
700 views

nslookup: *** Can't find server name

I am using nslookup command line tool from Windows XP but i can't see the IP of the DNS Server i am conducting. I am getting the message: *** Can't find server name for address 192.168.1.1: ...
1
vote
1answer
330 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
574 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 ...
1
vote
2answers
394 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 ...
3
votes
4answers
2k 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 ...
0
votes
1answer
4k 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 24.248.56.68 ...
0
votes
1answer
798 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
1k 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
551 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 ...
2
votes
1answer
2k 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
3k 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
3answers
1k 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
1k 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: ...
1
vote
4answers
5k 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?
3
votes
3answers
5k 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 ...
5
votes
6answers
2k 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 ...
9
votes
8answers
15k 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?
7
votes
3answers
5k 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: # This ...