Ver Mensaje Individual
  #11 (permalink)  
Antiguo 21/12/2009, 21:49
Avatar de boy-computer
boy-computer
 
Fecha de Ingreso: diciembre-2006
Ubicación: Cuba, Pinar del Río
Mensajes: 337
Antigüedad: 18 años
Puntos: 1
Respuesta: Ayuda con SERVFAIL

Te voy a postear la configuración de mis ficheros pero de antemano te digo que cuando hago:

Código:
host linux.jcbriones.pri.jovenclub.cu 192.168.0.2
Me devuelve:

Código:
Using domain server:
Name: 192.168.0.2
Address: 192.168.0.2#53
Aliases:

Host linux.jcbriones.pri.jovenclub.cu not found: 3(NXDOMAIN)
A continuación mis ficheros:

named.conf.local
Código:
//
// Do any local configuration here
//

// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";

zone "jcbriones.pri.jovenclub.cu" {
type master;
file "/var/cache/bind/jcbriones.pri.jovenclub.cu";
};

zone "0.168.192.in-addr.arpa" {
type master;
file "/var/cache/bind/0.168.192.in-addr.arpa";
};
named.conf.options
Código:
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 {
	 	192.168.22.4; 192.168.22.3;
	};

	auth-nxdomain no;    # conform to RFC1035
	listen-on-v6 { any; };
};
Datos de la zona directa: jcbriones.pri.jovenclub.cu
Código:
$TTL	604800
$ORIGIN jcbriones.pri.jovenclub.cu.
@		IN	SOA	linux.jcbriones.pri.jovenclub.cu. root.jcbriones.pri.jovenclub.cu. (
				2009122001	; Serial
			 	604800		; Refresh
			  	86400		; Retry
				2419200		; Expire
			 	604800 )	; Negative Cache TTL
;
@		IN	NS	linux.jcbriones.pri.jovenclub.cu.
@		IN	A	192.168.0.2
servidor	IN	A	192.168.0.1
instructor	IN	A	192.168.0.10
pc1		IN	A	192.168.0.50
pc2		IN	A	192.168.0.51
pc3		IN	A	192.168.0.52
pc4		IN	A	192.168.0.53
pc5		IN	A	192.168.0.54
pc6		IN	A	192.168.0.55
pc7		IN	A	192.168.0.56
pc8		IN	A	192.168.0.57
pc9		IN	A	192.168.0.58
pc10		IN	A	192.168.0.59
;================================================
web		IN	CNAME	instructor
ftp		IN	CNAME	pc5
Datos d ela zona inversa: 0.168.192.IN-ADDR.ARPA
Código:
$TTL	604800
$ORIGIN 0.168.192.IN-ADDR.ARPA.
@		IN	SOA	linux.jcbriones.pri.jovenclub.cu. root.jcbriones.pri.jovenclub.cu. (
			      	2009122001	; Serial
			 	604800		; Refresh
			  	86400		; Retry
				2419200		; Expire
			 	604800 )	; Negative Cache TTL
;
@		IN	NS	linux.jcbriones.pri.jovenclub.cu.
2.0.168		IN	PTR	linux.jcbriones.pri.jovenclub.cu.
1.0.168		IN	PTR	servidor.jcbriones.pri.jovenclub.cu.
10.0.168	IN	PTR	instructor.jcbriones.pri.jovenclub.cu.
50.0.168	IN	PTR	pc1.jcbriones.pri.jovenclub.cu.
51.0.168	IN	PTR	pc2.jcbriones.pri.jovenclub.cu.
52.0.168	IN	PTR	pc3.jcbriones.pri.jovenclub.cu.
53.0.168	IN	PTR	pc4.jcbriones.pri.jovenclub.cu.
54.0.168	IN	PTR	pc5.jcbriones.pri.jovenclub.cu.
55.0.168	IN	PTR	pc6.jcbriones.pri.jovenclub.cu.
56.0.168	IN	PTR	pc7.jcbriones.pri.jovenclub.cu.
57.0.168	IN	PTR	pc8.jcbriones.pri.jovenclub.cu.
58.0.168	IN	PTR	pc9.jcbriones.pri.jovenclub.cu.
59.0.168	IN	PTR	pc10.jcbriones.pri.jovenclub.cu.
Dime si ahora entiendes mejor