Hey guys... I saw your other post Femme, I'll deal with that in just a second... Here's some DNS for everyone's enjoyment. This is my main zone that i host most of my sites out of.
- Code: Select all
$TTL 38400
@ IN SOA ns.bizzarx.com. bizzar.domain.net. (
2003041501
10800
3600
432000
38400 )
IN NS ns.bizzarx.com.
IN MX 10 mail.bizzarx.com.
www IN A 68.81.98.210
something IN CNAME www
(For wildcard, take out www and something and only use * IN A IP.IP.IP.IP)
The $TTL = time to live. Every 38400 seconds, my dns will refresh. The main dns server is ns.bizzarx.com (i have a record for this in the zone for bizzarx.com, but I think you can put an IP in there.) Bizzar.domain.net is my email address. It doesn't work with @ symbols for email, so you have to use a dot. The string of numbers below the first line is my serial number for the dns zone. If i make changes, I have to increase this number otherwise when the world asks for my dns, it will think nothing has changed and continue to use the wrong one. The serial break down is (YYYYMMDDxx) Y=Year, M=Month, D=Day, and xx= number of times I've edited it that day (for example, 01, 02, 03, so on.)
Most of the other numbers won't change.
When you get to the IN CNAME, A stuff, this is what should be looked at each time you edit your dns. If you want wildcarded dns, all the dns for that DOMAIN will go to the IP address you specify.
It would read * (or you can do *.domain.com) IN A IP.IP.IP.IP
If your using a management software package (liky mydomain.com) then you need to take the other stuff out (clear out your dns, and only use *.domain.com and point it to your server's IP address).
Your largest problem sounds like too much confusing DNS. IF your domain serves the purpose of other things, you may need to reorganize how you do your website structure.
(BTW, i have an IP and my main dns server listed in this example, I could take it out, but I'm willing to trust everyone who comes to this site. If there are any hack attempts on it, you will be logged/reported and attacked back.)