My dns zone contains a loopback:
localhost IN A 127.0.0.1
Do I need it, and if so why? I can't think of a reason to have it here, especially as - without a dot - it would be localhost.example.com
|
This answer on ServerFault explains what this localhost entry is for http://serverfault.com/questions/120769/localhost-in-a-dns-zone
It also talks about the possibility that such a DNS record could be use for Cross Site Scripting (XSS) attacks and suggest removing it for that reason. |
|||
|
|
|
Did your DNS undergo testing because a many times loopback entry tests ability to process Web requests without actually sending any messages out. I believe it is not needed. |
|||
|
|
local IN A 192.168.1.13- avoids the need to edit the local hosts file and works for all machines on the network. Is this related? – w3d Dec 27 '12 at 15:56example.localandexample.internalas tlds - in the questionlocalhostis a subdomain – adam Dec 27 '12 at 16:07