As I have been troubleshooting the DNS creation process in Ubuntu I have noticed that the following files appear redundant:
etc/bind/named.conf.options (or a section of named.conf depending on how your files are set up)
forwarders {
1.2.3.4;
5.6.7.8;
9.10.11.12;
};
etc/resolv.conf
domain example.com
nameserver 1.2.3.4
nameserver 5.6.7.8
nameserver 9.10.11.12
Generally when such an observation is made I find that I'm doing something incorrectly, so correct me if I'm wrong. It seems that named.conf likes to have the machines net ip and resolv.conf should have 127.0.0.1. That aside, they should have the ip's of my isp's dns's, which would be the same. Thanks for the help.