In the DNS settings of a domain, I noticed by default these DNS records are being created:
Just out of curiosity, is there any advantage to this, instead of just:
I guess it doesn't matter, but I just want to make sure I understand 100% what's going on.
It seems to me the first is more redundant (more work involved if your IP ever changes, for example) but they effectively work the same, is that correct?
Code:
example.com A 1.2.3.4
mail.example.com CNAME example.com
www.example.com CNAME example.com
ftp.example.com CNAME example.com
*.example.com A 1.2.3.4
Code:
example.com A 1.2.3.4
*.example.com CNAME example.com
It seems to me the first is more redundant (more work involved if your IP ever changes, for example) but they effectively work the same, is that correct?