shicris
(usa Ubuntu)
Enviado em 22/11/2011 - 21:54h
Olá, sou iniciante "nesse mundo" e ultimamente ando apanhando muito!
Tenho que configurar dois servidores cuja sua distribuição é Red Hat 5.7, já baixei o bind pelo seguinte comando : yum install bind
em seguida dei um "dig
www.google.com.br @127.0.0.1 um amigo começou a me ajudar mas ainda estou perdida. o que fizemos foi colocar no named.conf o seguinte:
options {
directory "/var/cache/bind";
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
version "N/A";
listen-on {any;};
allow-query {any;};
port 53;
forwarders {
8.8.8.8;
8.8.4.4;
};
};
logging {
channel "named_log" {
// send most BIND logs to a dedicated log file
file "/var/log/named/named.log" versions 10 size 500k;
severity dynamic;
print-category yes;
print-severity yes;
print-time yes;
};
channel "query_log" {
file "/var/log/named/query.log" versions 10 size 500k;
severity debug;
print-severity yes;
print-time yes;
};
category default { named_log; };
category queries { query_log; };
};
// 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";
};
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";
};
///Registered Zones:///
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/rev.0.0.10";
notify no;
allow-update { key "rndc-key"; };
};
//Primary server:
zone "shireya.com.br" IN {
type master;
file "/etc/bind/zones/db.shireya";
allow-transfer { 10.130.183.127; 172.30.0.197; };
allow-update { key "rndc-key"; };
depois coloquei os seguinte comandos, mkdir /var/log/named/ e mkdir /var/cache/bind
paramos ai e eu não sei mais o que fazer, se alguem tiver um passo a passo bem explicativo para fazer a confiuração deste dois (DNS E NTP) para essa distribuição agradeço
};