I changed it to a slave, and it works. Sort of. I can resolve local machines (x.x.42.x) but not other branches (x.x.40.x, x.x.41.x, x.x.44.x, etc)
Main Topics
Browse All TopicsI'm running a windows AD domain, but I'm finding more and more uses for SUSE Linux: file sharing, backups, snort, etc.
I'd like to create a dns server on one of my Linux boxes. I've installed the dns server and created a zone. I've added a couple of records (my-test 10.71.45.2, etc). I set a test machine to use this box as the name server, but it's not resolving my-test.
Can someone direct me to a real simple setup? I just want to have it running as a secondary server in case my primary fails, so I expect to be entering records manually.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Did you setup zone transfers to the linux dns servers.
You need to allow it on the host
And set the slave arguments in the named.conf
You need to do it for the foward and reverse zones
// These are our slave zone files
zone "openna.com" in {
type slave;
file "db.openna";
masters { 208.164.186.1; };
};
zone "186.164.208.in-addr.arpa"
type slave;
file "db.208.164.186";
masters { 208.164.186.1; };
};
Business Accounts
Answer for Membership
by: Static-shockPosted on 2008-10-21 at 12:30:51ID: 22770583
Really simple you want to do apt-get bind 9
ldp/howto/ DNS-HOWTO- 7.html
It should set up pretty much a forwarding look up sever.
This is a simple howto that fills you in more then I could.
The howto goes over the nessary files you need to get things working.
To be honest thou you prob just want to be a slave of your Windows DNS server.
http://www.linux.org/docs/
Hope this helps
Cheers