i do this instruction but in nslookup.exe , it show me list of names ! what's th eproblem.Originally Posted by dgbaker
regard
i do this instruction but in nslookup.exe , it show me list of names ! what's th eproblem.Originally Posted by dgbaker
regard
Mahdionline
Dont' trust everything at dnsreport.com. They will red flag things that are still permissible by the DNS RFC (such as stealth nameservers). It unfortunately can give people a false sense that something is wrong, when in fact there is nothing wrong.Originally Posted by jeffheld
This is what I get:
Oct 20 10:31:50 *** named[******]: /etc/named.conf:21: missing ';' before '(slaves'
Oct 20 10:31:50 *** named[******]: /etc/named.conf:21: missing ';' before '/'
Oct 20 10:31:50 *** named[******]: /etc/named.conf:21: expected IP match list element near '/'
LINE 21 is : allow-transfer { IP's that are allowed (slaves/master);
Well, it should read:Originally Posted by icanectc
allow-transfer { IP's that are allowed (slaves/master); };
Note the number of semi-colons. So, if you want to allow transfer requests from 11.22.33.44 and 44.33.22.11, then that line would look like this:
allow-transfer { 11.22.33.44; 44.33.22.11; };
Jonathan Michaelson
Need your cPanel servers secured and tuned?
cPanel Server Configuration, Security, Recovery and Antivirus/AntiSpam Services
Developers of the most effective (and free) Firewall & Security Solution for cPanel Servers - csf
http://www.configserver.com
Its the last } I did not add. It's working now thanks!
I have prorbles with my dns zones all domains go to a main ip address , I delete account in whm and create again but not work
what is the problem ?
Thanks
alguien que hable español para que me ayude con los dns zones ke no sirven en mi servidor dedicado
tengo problemas con el dns zone no se como editarlo y arreglarlo.
Thanks
I do the instruction ,but now when i go to nslookup.exe and type
> is adomainname.com
it show me a list of names and not show your written message.
what's the problem ?
regrad
Mahdionline
It's not `is domain.com` it is `ls domain.com` lowercase L
Regards,
David
Forum Moderator
I do the instruction but now when i go to nslookup.exe and type
> is adomainame.com
is show me a list of names !
What's the problem ?
Regard
Mahdionline
Here is what we are using at the moment. Add this after controls. Make sure that you have no more options as it is will cause bind/named to fail.
There slaves are the Slave DNS servers, masters are the Master DNS servers and trusted are the server you trust and allow to do recursive lookups and request the DNS zones in full. Usually save to keep by default.Code:acl "slaves" { 127.0.0.1; localhost; }; acl "masters" { 127.0.0.1; localhost; }; acl "trusted" { 127.0.0.1; localhost; }; logging { category lame-servers { null; }; }; options { statistics-file "/var/run/named/named.stats"; allow-transfer { slaves; masters; trusted; }; allow-recursion { trusted; }; allow-notify { masters; }; };
This will also generate the statistics file to the "/var/run/named/named.stats" (not forget to execute "/usr/sbin/ndc stats" prior!)
It could be used by MRTG for example.
P.S. I'm not sure if the allow-notify should include masters only. It is supposed to add there hosts which may force zone update, isn't it? So they should be the Master DNS servers only? Anyone who using DNS clusters to clear this up?
Last edited by ispro; 10-28-2005 at 10:40 AM.
Reliable web-hosting, good resellers plans, web-design.
ISProHosting.com
Probably overkill using so many ACL's. This is what I use, which will achieve the same thing:
Where the IP addresses all the other participants in your DNS cluster, including the server you are on, which makes it nice and easy to duplicate for all your servers.Code:acl "trusted" { 11.22.33.44; 44.33.22.11; 66.55.44.33; 127.0.0.1; }; options { directory "/var/named"; version "not currently available"; allow-recursion { trusted; }; allow-notify { trusted; }; allow-transfer { trusted; }; };
Last edited by chirpy; 03-08-2006 at 03:18 PM.
Jonathan Michaelson
Need your cPanel servers secured and tuned?
cPanel Server Configuration, Security, Recovery and Antivirus/AntiSpam Services
Developers of the most effective (and free) Firewall & Security Solution for cPanel Servers - csf
http://www.configserver.com
Your setup is has sense also.
We just would like to tune each setting using "security through obscurity" method where everything shoulb be blocked, and then necessary things allowed only.
Do you have any valid information that using several ACLs in named.conf may slow down it?
I heard nothing about that.
Reliable web-hosting, good resellers plans, web-design.
ISProHosting.com
I doubt that it would make any difference to performance at all.
Jonathan Michaelson
Need your cPanel servers secured and tuned?
cPanel Server Configuration, Security, Recovery and Antivirus/AntiSpam Services
Developers of the most effective (and free) Firewall & Security Solution for cPanel Servers - csf
http://www.configserver.com
I have the same set up, but I don't have the 'directory "/var/named";' line.Originally Posted by chirpy
Why did you add that? Did you run into trouble without it?