Using OpenDNS servers with bind9 easily
The OpenDNS FAQ purports to have a solution to this problem, but it does something obscure to a file I don’t have on my system. So I quickly checked the man page and came up with this:
/etc/bind/named.conf.options
//Add this somewhere inside the options{}; section...
forward only;
forwarders {
//OpenDNS
208.67.222.222;
208.67.220.220;
};

I see what you did there.