Hello there , i cannot seem to configure a basic dns server it seem its not 
resolving local domain names although i have 

setup everything as told in the docs, please have a look.


resolve.conf

bash-3.1# cat /etc/resolv.conf 
nameserver 127.0.0.1
search clickonline.net



named.conf

bash-3.1# cat /var/named/etc/named
cat: /var/named/etc/named: No such file or directory
bash-3.1# cat /var/named/etc/named.conf
acl clients {
       10.0.0.0/16;
};

options {
        listen-on    { any; };
        allow-recursion { clients; };
};

zone "." {
        type hint;
        file "standard/root.hint";
};

zone "localhost" {
        type master;
        file "standard/localhost";
        allow-transfer { localhost; };
};

zone "127.in-addr.arpa" {
        type master;
        file "standard/loopback";
        allow-transfer { localhost; };
};
zone "clickonline.net" IN {
  type master;
  file "db.clickonline.net";
  allow-update { none; };
};


db.clickonline.net

cat /var/named/master/db.clickonline.net 
$ORIGIN clickonline.net
$TTL 86400
@     IN     SOA    dns.clickonline.net.     [EMAIL PROTECTED] (
                    2001062501 ; serial
                    21600      ; refresh after 6 hours
                    3600       ; retry after 1 hour
                    604800     ; expire after 1 week
                    86400 )    ; minimum TTL of 1 day
IN      NS      dns.clickonline.net.
        IN      A       10.0.0.4
webserver       IN      A       10.0.0.4
mailserver      IN      A       10.0.0.2
dns             IN      A       10.0.0.6


client window

C:\Documents and Settings\admin>nslookup clickonline.net
*** Can't find server name for address 10.0.0.6: Non-existent domain
*** Default servers are not available
Server:  UnKnown
Address:  10.0.0.6

*** UnKnown can't find clickonline.net: Server failed


what could be wrong ?

 
 *B:B$., B8B8,.B$B:*B(B(B(*B$ Stingray *B:B$., B8B8,.B$B:*B(B(*B$

Reply via email to