RE: Dominio caido (supuestamente por las DNS) - kilburn - 02-05-2010 08:04 PM
@tecfernandez: tío curratelo un poco más. En el thread al que te mandé para que vieras de donde sacar los logs de bind, resulta que el usuario que preguntaba tenia exactamente el mismo problema que tú y le pasé la referencia para solucionarlo. Vuelve a ese thread y leetelo.
@arturo: el caso es que después no consiguió reinstalar él solo y tuvo que pedir ayuda in-extremis. Además, la cultura del "reinstala que es más fácil" provoca que la gente no aprenda nada sobre los sistemas que se supone que administra (sí, ispcp es para administradores, no para usuarios "siguiente siguiente finalizar").
Por ambos motivos, lo mejor es siempre pelear con el problema, comprenderlo y aprender a solucionarlo. El próximo problema que salga será mucho más facil de solucionar... y a la larga mucho más rapido que ir a golpe de reinstalaciones también.
RE: Dominio caido (supuestamente por las DNS) - tecfernandez92 - 02-05-2010 09:40 PM
(02-05-2010 08:04 PM)kilburn Wrote: @tecfernandez: tío curratelo un poco más. En el thread al que te mandé para que vieras de donde sacar los logs de bind, resulta que el usuario que preguntaba tenia exactamente el mismo problema que tú y le pasé la referencia para solucionarlo. Vuelve a ese thread y leetelo.
Si efectivamente jeje. Pero esque no todos tenemos la suerte de hablar y comprender el Ingles como tu...jeje. Lo he traducido con el Google pero la traduccion que me dá y nada es lo mismo xD
Yo he abierto el archivo el archivo "named.conf":
Code:
// 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";
// 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" {
// 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";
// 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;
// dmn [ks304364.kimsufi.com] cfg entry END.
// dmn [seleccionpelis.com] cfg entry BEGIN.
zone "seleccionpelis.com" {
type master;
file "/var/cache/bind/seleccionpelis.com.db";
notify YES;
};
// dmn [seleccionpelis.com] cfg entry END.
// dmn [seleccionhouse.com] cfg entry BEGIN.
zone "seleccionhouse.com" {
type master;
file "/var/cache/bind/seleccionhouse.com.db";
notify YES;
};
// dmn [seleccionhouse.com] cfg entry END.
// dmn [seleccionpop.com] cfg entry BEGIN.
zone "seleccionpop.com" {
type master;
file "/var/cache/bind/seleccionpop.com.db";
notify YES;
};
// dmn [seleccionpop.com] cfg entry END.
// dmn [selecciondescargas.com] cfg entry BEGIN.
zone "selecciondescargas.com" {
type master;
file "/var/cache/bind/selecciondescargas.com.db";
notify YES;
};
// dmn [selecciondescargas.com] cfg entry END.
// dmn [{DMN_NAME}] cfg entry BEGIN.
// dmn [{DMN_NAME}] cfg entry END.
Tambien he abierto el "named.conf.options"
Code:
options {
directory "/var/cache/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See http://www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
// forwarders {
// 0.0.0.0;
// };
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { ::1; };
#listen-on { 127.0.0.1; };
allow-recursion { 127.0.0.1; localnets; };
allow-transfer { 213.186.33.199; };
};
Yo la verdad. En el post que me has dado arriba veo que el usuario entiende algo y ha visto que tiene un dato duplicado. Yo eso no lo se, por eso pido vuestra ayuda.
RE: Dominio caido (supuestamente por las DNS) - kilburn - 02-05-2010 09:59 PM
traducción del post que explica como arreglar este problema.
|