Alexander Kirillov <[EMAIL PROTECTED]> writes:

> What's in your named.conf?
> Should be something like this:
>
> zone "local.lan" IN {
>       ...
> };
>
> zone "0.168.192.in-addr.arpa" IN {
>       ...
> };
>
> zone "1.168.192.in-addr.arpa" IN {
>       ...
> };

  options {
        directory "/var/bind";
           listen-on-v6 { none; };
          listen-on { LOCALHOST; };
          listen-on { LOCALNETS; };
        pid-file "/var/run/named/named.pid";
  };
  zone "." IN {
        type hint;
        file "named.ca";
  };
  zone "0.0.127.in-addr.arpa" IN {
        type master;
        file "pri/db.127.0.0";
        allow-update { none; };
        notify no;
  };
  zone "local.lan" IN {
    type master;
    file "pri/db.local.lan";
  };
  zone "0.168.192.in-addr.arpa" IN {
    type master;
    file "pri/db.192.168.0";
  };
  zone "1.168.192.in-addr.arpa" IN {
    type master;
    file "pri/db.192.168.1";
  };

This looks right to me... is it?

-- 
gentoo-user@gentoo.org mailing list

Reply via email to