привет.. помогите уважаемые проффи!
вот такая конфигурашка... синтаксически вроде правилня но вот комьпьютеры в локалке по именам себя не видят... даже r01 сам себя по имени не знает
в интернет однако все ходят нормально
bind 9 стоит на r01 (debian)
в сети еще две workstation
им r01 присылает по dhcp всё что им нужно и проверенно DNS Server они получали... (смотрел командой ipconfig /all под виндовс)
ну так вот сами конфиги.
named.conf
Цитата:
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
//include "/etc/bind/named.conf.options";
//=== Tut MOE ===
acl internals {192.168.0.0/24; };
options
{
directory "/etc/bind";
auth-nxdomain no;
forward only;
forwarders
{
127.0.0.1;
213.191.74.19;
213.191.92.86;
};
allow-transfer {none; };
listen-on {any; };
listen-on-v6 {none; };
transfers-in 20;
transfers-out 20;
notify no;
recursion yes;
allow-recursion {internals; };
};
logging
{
//chanel warnen
//{
// file "/var/log/named/warn.log" version 3 size 100K;
// severity warning;
// print-category yes;
// print-severity yes;
// print-time yes;
//};
//cathegory default {warnen; };
};
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "localhost" {
type master;
file "/etc/bind/db.local";
allow-transfer {internals; };
allow-update {none; };
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
allow-transfer {internals; };
allow-update {none; };
};
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 "com" { type delegation-only; };
// zone "net" { type delegation-only; };
// From the release notes:
// Because many of our users are uncomfortable receiving undelegated answers
// from root or top level domains, other than a few for whom that behaviour
// has been trusted and expected for quite some length of time, we have now
// introduced the "root-delegations-only" feature which applies delegation-only
// logic to all top level domains, and to the root domain. An exception list
// should be specified, including "MUSEUM" and "DE", and any other top level
// domains from whom undelegated responses are expected and trusted.
// root-delegation-only exclude { "DE"; "MUSEUM"; };
include "/etc/bind/named.conf.local";
|