Tagged Questions

2
votes
1answer
461 views

Dns.GetHostEntry error conditions and resolution methods

I have a very specific problem concerning Dns.GetHostEntry: A service uses Dns.GetHostEntry to retrieve all IP Adresses of a host, using the name of of the host. This has always worked fine. At a ...
1
vote
1answer
78 views

Is it possible to set Android apps to connect to dev servers?

When building desktop or web apps, its easy to add fake hosts file entries so apps will connect to dev servers instead of production ones - is something similar possible for Android apps?
0
votes
0answers
17 views

search domain is ignored on mac lion

i have a resolv.conf like below on my mac search example.net nameserver 8.8.8.8 nameserver 8.8.4.4 i can use not dot included prefixes and search domain works as expected. for example "ssh test" ...
0
votes
1answer
243 views

dns timeouts - resolv.conf wrong?

i have a question concerning the correct setup of debian's resolv.conf file. i have 3 domains: a-domain.com, b-domain.com and c-domain.com the server has a static IP. do i have to add ...
0
votes
1answer
148 views

How can I configure “Checking for Errors” for DNS Lookup using Perl?

I have a script which allows me to lookup for a hostname after inputting an IP address which would be forwarded to a DNS server. However even though everything works fine, the program can't seem to ...
0
votes
2answers
95 views

.NET - downloading multiple pages from a website with a single DNS query

I'm using HttpRequest to download several pages from a website (in a loop). Simplifying it looks like this: HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create( ...
0
votes
1answer
131 views

DNS resolve without depending on router for asterisk system

Basically I have a Debian box running asterisk assigned an IP via DHCP with host-name XXX. My windows browser can resolve the host-name but if I use host-name in X-Lite or my SPA922 phone it fails to ...
-1
votes
2answers
56 views

How to get domain name from IP address

I have a website hosted on a shared server. When I use DNS.GetHostEntry(IPAddress) function what I am getting is a domain name for shared server (Name server). I want to fetch the actual domain name. ...