DNS server configuration help! (BIND)
Hiii,
I have been trying to learn more about DNS servers. Soo i have read a bit and want to try to set one up on my LAN but it is a little tricky wandering if anyone can help? This is what im tyring to do: I have a LAN that has 1 Redhat machine(Firewall/Router-DNS Server) and 2 windows machines behind it.
I want to set up the DNS server on the LINUX machine. Cause right now the WINDOWS machines are configured soo that there DNS servers are pointing to my ISP DNS server. I want the LINUX machine to do the DNS queries or FORWARD them to my ISP DNS Server.
Im using:
Redhat 7.3(2.4.20)
BIND-9.2.2rc1
Installed it by:
./configure
make
make install
I have been using the "Redhat 7.3 Bible" as a reference.
< EDIT > OK this is what i got soo far now:
I created the file /etc/named.conf which has this in it:
options {
directory "/var/named";
forwarders { <IP address of forwarder>; };
forward only;
};
And running named-checkconf shows no errors.
I also created a directory /var/named but am confused on the next steps! Any Help?