Generally wondering whether its possible to have both a CNAME entry with a " * " to domain and a seperate subdomain mapping i.e. like

*              | CNAME | domain.com
bla.domain.com | CNAME | some.example.com

Is this possible or does the * overwrite the "bla.domain.com" and therefore when you enter "bla.domain.com" you go to "domain.com" ?

link|improve this question
feedback

2 Answers

In BIND, the wildcard matches when another record does not exist. See http://en.wikipedia.org/wiki/Wildcard_DNS_record.

link|improve this answer
5  
Not just BIND, any RFC 1912 DNS server will do this. – BrianEss Feb 28 '10 at 23:23
RFC1912 is telling operators how not to do wildcards. RFC 1035 is the one that servers comply with. – Alnitak Sep 16 '10 at 12:42
feedback

A more specific entry always overrides a wildcard, not the other way around.

For chapter and verse, see ยง4.3.3 of RFC 1034.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown