Thanks your help its appriciated.
this is my /etc/bind/named.conf
Quote:
// 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";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
|
this is the /etc/bind/named.conf.local
Quote:
zone "eden.local" {
type master;
allow-transfer {none;};
file "/etc/bind/pri.eden.local";
};
|
This is the /etc/bind/pri.eden.local
Quote:
$TTL 3600
@ IN SOA ns.eden.local. info.eden.local. (
2012062806 ; serial, todays date + todays serial #
7200 ; refresh, seconds
540 ; retry, seconds
604800 ; expire, seconds
86400 ) ; minimum, seconds
;
eden.local. 3600 A 192.168.0.3
eden.local. 3600 MX 10 mail.eden.local.
eden.local. 3600 NS ns1.eden.local.
mail 3600 A 192.168.0.3
www 3600 A 192.168.0.3
|