Also make sure you install an absolute bare-bone system. After installing, do a check to see what ports have services on them:
netstat -nlp |more
Uninstall everything that's listening on a port other than bind (and ssh if you wish).
Also uninstall any compilers such as gcc g++ etc to make it harder for a potential hacker to compile his tools. Try running bind in a chroot jail:
http://www.falkotimme.com/howtos/debian_bind_chroot/http://tldp.org/HOWTO/Chroot-BIND-HOWTO.htmlAs you can see, your focus will be more on securing the box itself than securing bind. You can rest assured that bind 9 is in its own right a rather secure beast and for forwarding-only servers there's not THAT much that you can do. The 3 or 4 things mentioned in the doc provided before is about it.