Assuming that the named.conf is a working one (that you actually had in use) the line:
- Code: Select all
directory "/var/lib/named";
says that your zone file names will be in relation to this directory. The line:
- Code: Select all
include "/etc/named.conf.include";
means to also include statements that reside in "named.conf.include" so if that file actually contains anything I would like to see it as well. Your actual zone "addicted2tech.com":
- Code: Select all
zone "addicted2tech.com" in {
file "master/addicted2tech.com";
type master;
};
says that the zone file should be named "/var/lib/named/master/addicted2tech.com" assuming the "directory" statement that I mentioned first is not changed in that "named.conf.include" file. Also, that zone file must be readable by the user that the named process is running under (usually user "named"). If this doesn't solve your problem feel free to upload all of the files in question to my anonymous FTP server to the uploads directory. Note that after you upload them you will not see them in the directory but they will be there for me to get (security by obscurity).
The files I would be interested in for now would be your "named.conf", "named.conf.include", "addicted2tech.com", "localhost.zone", "127.0.0.zone", and your "root.hint". With these I should be able to create a working setup and tar them up and get them back to you.
Another great place to look to figure out your problem is in your log (usually /var/log/messages). If you have verified all of your files are in the proper place and the permissions are right restart named and then look in your messages log for problems associated with "named". Many times this will give you the exact answer you need.
EDIT: I just noticed that you mentioned that your zone doesn't show up in SuSE's DNS tool. I have to admit that I don't use any graphical DNS tools. Red Hat also comes with one but I don't use it. I opt for editing the zone files directly. I believe the Red Hat graphical tool also will not display zones if they have been manually edited. Usually if you get the zone file from a slave server it will contain all of the data but not formatted in any way that a graphical tool might expect it to be physically formated.. Probably the only way to get it to work in your graphical tool is to recreate the zone and manually add the records again using the graphical tool. I assume you only have a few so it shouldn't be too hard. Just open the zone file and see what's in it, then manually add the records in your graphical tool then restart named.