Question : Setup BIND cache server


I want to set up cache server for my local client users, below is named.conf configuraion. do you think that is all needed?

My BIND server IP is 10.1.3.10
I set /etc/resolv.conf nameserver to 10.1.3.10, same for clients, BIND server Can access internet BUT Client can not, any ideas why? the clients ip range is 192.198.1.x 10.1..x.x.

I have set resolv.conf file to the bind server which is 10.1.3.10

named.conf

options {
 directory "/var/named";
 allow-transfer {"none";};
 allow-recursion {10.1.0.0/16;192.168.1.0/24;};
};

zone "." {
   type hint;
   file "named.root";
   };

zone "testme.org" in {
   type master;
   file "db.testme.org";
   allow-transfer {10.1.1.10;};
   };

zone "localhost" in {
    type master;
    file "master.localhost";
    };

Answer : Setup BIND cache server


See which bit is failing.

On a client run:

nslookup testme.org
nslookup www.google.com

If the first works but the second doesn't it's the DNS servers fault. If both time-out then it's more likely to be the clients fault or any network between the client and DNS server.

If both work it's networking from the client to the Internet and not DNS.

Chris
Random Solutions  
 
programming4us programming4us