Такс, так вы все, что Вам надо прописали в конфигах бинда ?
почему он у вас один адрес APIPA показывает automatic empty zone: 254.169.IN-ADDR.ARPA ?
Сколько у Вас интерфейсов если два, то оба ли используются ?
мне кажется эти настройки сделает Плеск когда запустится.
Пробую зайти в Плеск выдает:
"Unable to restart Named: dnsmng failed: dnsmng failed: dnsmng: Service /etc/init.d/bind9 failed to restart"
вот как это победить? 
Попробуйте так
Plesk 10 on Ubuntu 10.04 – Can’t restart DNS service error
Friday, November 12th, 2010
Today, I installed the new Parallels Plesk 10.0.1 on Ubuntu Server 10.04. This is the first release of Plesk that supports any version of Ubuntu newer than 8.04. Anyway, after the install, I went to log in and filled out the initial setup information, and was then given this error:
Unable to restart Named: dnsmng failed: dnsmng failed: dnsmng: Service /etc/init.d/bind9 failed to restart
(What a great error message.)
Whoops. Turns out there’s a problem with the default Plesk configuration of the DNS server BIND (run it in a chrooted environment) and Ubuntu’s configuration (run it with AppArmor, explicitly configuring which files it is allowed to open). You have to give BIND permission to open the files in its chroot environment. The solution to this problem is to edit the file /etc/apparmor.d/usr.sbin.named and add these lines before the closing brace at the end of the file:
/var/named/run-root/etc/* rw,
/var/named/run-root/var/* rw,
/var/named/run-root/dev/* rw,
Then, reboot the machine and you should be good to go.