dns

Is BIND DNS + DLZ good for adding subdomain's dynamically?

Is BIND DNS + DLZ reliable? scalable? Is it a better solution than writing a script and restarting BIND to support adding subdomain's dynamically? Thank you! ...

Placing a web application on all continents. What is the best way?

Suppose I have to put x.com CMS app to Japan, Mexico, US, Australia, and to London. They all access a central MySQL database over IP. Is there something before the load balance or is it just you receive the IP on your code, geo-locate it and redirect to page to appropriate domain? Is there a way to have x.com to point to different IP'...

C# Newbie: How do I fix this code to do a DNS lookup?

This is my first time using C#, so I'm very much out of my element. But I have faith that the wonderful people here at Stack Overflow can help me out! I've come up with the following code (below) based on some other pieces of code I found floating around on the internet. What I am trying to do is to look up all the "text" DNS records (TX...

Volume DNS Lookup API Provider which finds all domains for a given IP Address

We're currently looking for a reliable Reverse DNS lookup service (Input IP Address -> output domain name) which is accessible by API. Volumes are not not huge but we need a reliable service. Anybody know any providers? experience with them? NB: I need reverse lookup - i.e. I have the IP address, I want to domain name. ...

Can all Sub-Domains of a Domain in the Name Server be publicly listed or not?

Hello, When querying a full URL (with Subdomain and Domain) my browser will first "query" for the Name-Server of the Domain. The Name-Server of the Domain has the "NS Entry", that points to the "final (in most cases)" Name-Server where it can try to resolve the Subdomain... Is my assumption correct, that there is no possibility to quer...

How to access/ping a server located on AWS?

With what address should a server located on AWS be accessed? I've created an AWS instance and installed a web server on it. However the server is not reachable via any of the: ec2-174-129-24-92.compute-1.amazonaws.com the IP address from instance's ifconfig an elastic IP address I've created on the AWS dashboard and associated with t...

appengine and no-ip.org

Hi folks! :) I'd like to run an appengine app on a subdomain like something.no-ip.org instead of something.appspot.com is this doable? If so, can you please help me understand? :) Thank you so much for your help! ...

non english (hebrew) chars in hostname

Is it official? Where is it defined? How can I transform between the english and non-english version, programmatically? I see domains that google recognizes as hebrew, but the browser does not. Examples: http://www.xn----ogc3ffxd2br0d.com/ http://www.xn------wpehbcibg3bcah2ftaym6h.com/ http://www.xn----6hcesc7ap3c.ws/ ...

Load balancing: DNS round robin in front of hardware load balancers. How to share stickiness?

Hi, DNS Round Robin (DRR) permits to do cheap load balancing (distribution is a better term). It has the pro of permitting infinite horizontal scaling. The con is that if one of the web servers goes down, some clients continue to use the broken IP for minutes (min TTL 300s) or more, even if the DNS implements fail-over. An Hardware Loa...

querying for dns aliases

I found some code from the msdn site (Code included below), which looks like it will return all dns aliases for a given server. I've implemented the code in a cosole app, which should allow me to enter the host name of a server and it should return all dns alias names. I enter the host name of a server in our domain known to have alias...

obtaining POST parameters at a URL passed through by DYNDNS

Background: Foobar.htm form uses this: <form action="http://rawurl-here.gotdns.org" method="POST"> [...] </form> rawurl-here.gotdns.org is a Dynamic DNS url that redirects the user to: http://currentsite001.mysite.org Question: Is there a way to ensure that the POST parameters sent by Foobar.htm always reach the final target,...

A massive and non-trivial way to block many URLS on Windows XP ?

Hello, My GF is from a country X. She is now living abroad but is addicted to internet and often spends many hours per day on her laptop browsing "nonsense" information by websites from that country X, or written in a language used by people from that country X. She hates this habit of hers, and asks me to block as many possible URL fr...

search domain name by registrant

how do I search domain names by registrant? how can this be done programatically? ...

Web Application Client DNS Server Detection

On the opendns.org website, their content changes based on if you are using their DNS servers or not. If you are not, then there is a callout to the user to change their DNS settings. If your machine is setup to use their DNS servers then the callout is a link to manage your settings. How are they able to detect what the client's DNS ser...

Why won't my site load from one computer, but it will another?

Pretty vague title, but basically I can only get "my site" to load from one computer. I've purchased hosting and a domain name, set it all up, and there's nothing there yet, but the default directory browser thing shows up when I go to the url on my work computer, but from my home computer and a virtual machine it doesn't... what should ...

how to force python httplib library to use only A requests

The problem is that urllib using httplib is querying fro AAAA records what i would like to avoid. Is there a nice way to do that? >>> import socket >>> socket.gethostbyname('www.python.org') '82.94.164.162' 21:52:37.302028 IP 192.168.0.9.44992 > 192.168.0.1.53: 27463+ A? www.python.org. (32) 21:52:37.312031 IP 192.168.0.1.53 > 192.168...

Convert downgrade Linq to normal C# .NET 2.0 for domainname-parser codes that use publicsuffix.org

Hi, Based on this answer http://stackoverflow.com/questions/288810/get-the-subdomain-from-a-url, I am trying to use code.google.com/p/domainname-parser/ that will use Public Suffix List from publicsuffix.org to get subdomain and domain for managing my cookie collection. In the current moment, Domainname-parser is the only .NET code I f...

How to get the list of current DNS servers on iPhone?

So I've got this code that does asynchronous DNS resolution using the ares library that I need to port to the iPhone. Getting the list of DNS servers on the desktop is straightforward, SCDynamicStoreContext context = {0, NULL, NULL, NULL, NULL}; SCDynamicStoreRef store = SCDynamicStoreCreate(NULL,CFSTR("init_by_defaults_systemconfigurat...

Public Wildcard Domain Name To Resolve To 127.0.0.1

Is anyone aware of a public wildcard domain name that resolves to IP address 127.0.0.1. For example if I wanted to test a URL locally such as mywebsite.localhost.com or example.localhost.com but I don't have control of DNS settings (hosts file or whatever) then I would use this public DNS to resolve to 127.0.0.1. It needs to be wildcar...

Query DNS using specific DNS servers in .NET

From a .NET application, I need to query a specific DNS server for resolving a domain name (the DNS server is not defined in the Windows network configuration). I know this is not possible using standard .NET Framework classes (See this other question). My question is what my options are. There is one open source library on CodePlex (Dn...