hi
i am using fedora3.i want to configure dns.i have followed this steps
1> vi /etc/named.conf
in this file i havw added my own dns name as
zone "host-tech.com" IN {
type master;
file "hosttech.zone";
allow-update { none; };
};
2> created file hosttech.zone at location /var/named as
$TTL 86400
$ORIGIN localhost.
@ 1D IN SOA hosttech.com. @ root.hosttech.com. (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
1D IN NS 192.168.24.10
1 1D IN PTR localhost
abhis. 1D IN A 192.168.24.10
host-tech.com. 1D IN A 192.168.24.10
www. 1D IN CNAME 192.168.24.10
3> --- also changed in the path /var/named/chroot/etc/named.conf i have copied the file from /etc/named.conf
--- also changed in the path /var/named/chroot/etc/var/named i have copied the file from /var/named/hosttech.zone here
4> included in /etc/resolv.conf file
nameserver 192.168.24.10
domain host-tech.com
~
5>service named restart.
it is giving error
Stopping named: rndc: connect failed: connection refused [ OK ]
Starting named: [ OK ]
6> i have checked by using ping host-tech.com
it is saying unknown host
can anyone tell me wht to do.i have configured in rhes-3 the same way its working.