Marek Nowak Administrator
Temat: problem z bindem - HELP
Witam,Do konfiguracji zimbry potrzebowalem ustawić lokalny dns, niestety nie działa mi taki wpis w dnsie:
andromeda IN A xxx.xxx.xxx.xxx
z tego co się orientuje (a w bindzie jestem zielony) powinien pojawić się on tutaj na końcu, może coś źle robie? :
[root@andromeda ~]# dig domain.pl any
;; QUESTION SECTION:
;domain.pl. IN ANY
;; ANSWER SECTION:
domain.pl. 86400 IN SOA domain.pl. root.domain.pl. 100 3600 60 604800 86400
domain.pl. 86400 IN NS ns1.domain.pl.
domain.pl. 86400 IN A xxx.xxx.xxx.xxx
domain.pl. 86400 IN MX 10 mail.domain.pl.
;; ADDITIONAL SECTION:
ns1.domain.pl. 86400 IN A xxx.xxx.xxx.xxx
mail.domain.pl. 86400 IN A xxx.xxx.xxx.xxx
Konfiguracja wygląda następująco:
[root@andromeda ~]# cat /etc/named.conf
//
// named.conf for Red Hat caching-nameserver
//
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "domain.pl" IN {
type master;
file "/var/named/domain.pl.zone";
allow-update { none; };
};
include "/etc/rndc.key";
[root@andromeda ~]# cat /var/named/domain.pl.zone
$TTL 86400
@ IN SOA domain.pl. root.domain.pl. (
100 ; serial
1H ; refresh
1M ; retry
1W ; expiry
1D ) ; minimum
@ IN NS ns1.domain.pl.
@ IN A xxx.xxx.xxx.xxx
ns1 IN A xxx.xxx.xxx.xxx
@ IN MX 10 mail.domain.pl.
mail IN A xxx.xxx.xxx.xxx
andromeda IN A xxx.xxx.xxx.xxx
Dzieki za pomoc.
Pozdrawiam.
Marek