vote up 1 vote down star

I think the title says it all really, but to reiterate, I'd like to know how to configure Windows 2003 to allow a wildcard on a subdomain. So site1.sub.domain.tld and site2.sub.domain.tld should both go to the same IIS site, whose host header value is sub.domain.tld.

I've tried the following without success - sub.domain.tld works, but not site1.sub.domain.tld.

sub     A   my.ip.goes.here
*.sub   A   my.ip.goes.here

Thanks, Iain

flag

20% accept rate

2 Answers

vote up 1 vote down

In Windows 2003 DNS, your subdomain should show up as a "folder" inside the parent domain (to create: right-click the parent domain, choose "New domain...", and enter the subdomain name). For the wildcard, you make a new host ('A') record with '*' as the name.

In this case, it sounds like you want something like this:

  1. In domain.tld, create a new domain "sub".
  2. In sub.domain.tld, create a new 'A' record with no name, and give it the IP address of your server. (This will respond to sub.domain.tld).
  3. In sub.domain.tld, create a new 'A' record with '*' as the name, and give it the IP address.

Just to be confusing, Windows will allow you to create a 'A' record called "sub" in the parent domain. But for the wildcarding Windows will need to have the subdomain.

link|flag
vote up 0 vote down

It's been a while I configured my wildcard DNS, but if I remember correctly, the record has to be:

*.sub.domain.tld IN A 11.22.33.44
link|flag
Hi thanks for your answer - it doesn't work at least for me however. – Iain Jul 25 at 9:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.