Hi@ll,
I want to use my fonera as my internal DNS with bind. But if I try to start the bind I get the folling error message.
root@fonera:/etc/bind# /etc/init.d/named start
Starting isc-bind
/usr/sbin/named: can't load library 'liblwres.so.30'
root@fonera:/etc/bind#
After some googleing I found this here. https://dev.openwrt.org/ticket/2454. So I made an ipkg update && ipkg upgrade, but that didn't solved my problem.
So can anyone say me what I have to install, so that all neccessary files are avalible ???
regards
j0inty.sL
Bind Config
options
{
directory "/etc/bind";
forwarders {
217.9.16.14;
193.158.124.58;
194.183.128.35;
192.168.0.1;
};
listen-on-v6 { none; };
listen-on { any; };
pid-file "/tmp/named.pid";
statistics-file "/tmp/named.stats";
dump-file "/tmp/named.dump";
zone-statistics yes;
allow-recursion { any; };
allow-query { any; };
}
zone "." {
type hint;
file "/etc/bind/db.root";
};
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
zone "<myDmoain>" {
type master;
file "/etc/bind/<myDomain>.zone";
};
zone "192.168.0.in-addr.arpa" {
type master;
file "/etc/bind/<myDomain>.0.168.192";
};