No subject


Tue Apr 2 00:56:56 UTC 2013


stat at thyme:~$ dig -x 208.38.29.231

; <<>> DiG 9.2.1 <<>> -x 208.38.29.231
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 61830
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;231.29.38.208.in-addr.arpa.    IN      PTR

;; AUTHORITY SECTION:
29.38.208.in-addr.arpa. 8475    IN      SOA    
marge.compusmart.ab.ca. hostmaster.interbaun.com. 270 43200 21600
2592000 172800

;; Query time: 5 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Mon Mar 22 03:40:31 2004
;; MSG SIZE  rcvd: 126

#############################################################
# named.conf

options {
	directory "/var/cache/bind";

	 forwarders {
		199.185.131.5;  # These are my ISP's domain name servers
		199.185.130.34;
	 };

	auth-nxdomain yes;    # conform to RFC1035

};

// 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";
};

// add entries for other zones below here

zone "231.29.38.208.in-addr.arpa" {
	type master;
	file "/etc/bind/231.29.38.208.rev";
};

zone "statnet.ca" {
	type master;
	file "/etc/bind/statnet.ca";
};

#############################################################
# 231.29.38.208.rev

;
; BIND reverse data file for local loopback interface
;

$TTL	604800
@	IN	SOA	ns1.statnet.ca. root.statnet.ca. (
			      1		; Serial
			 604800		; Refresh
			  86400		; Retry
			2419200		; Expire
			 604800 )	; Negative Cache TTL

@	IN	NS	ns1.statnet.ca.

1	IN	PTR	statnet.ca
4	IN	PTR	mail.statnet.ca.
5	IN	PTR	gypsy.statnet.ca.
6	IN	PTR	orysia.statnet.ca.
8	IN	PTR	ftp.statnet.ca.

#############################################################
# statnet.ca

; Authoritative data for statnet.ca
;
@		IN	SOA	ns1.statnet.ca. webmaster at statnet.ca. (
					2003042201	; Serial
					10800		; Refresh 3 hours
					3600		; Retry   1 hour
					3600000 	; Expire  1000 hours
					86400		; Minimum 24 hours
					)
		IN	A	208.38.29.231
		IN	MX 100	mail.statnet.ca.
		IN	NS	ns1.statnet.ca.
;

;		IN	A	208.38.29.231
orysia		IN	A	208.38.29.231
gypsy		IN	A	208.38.29.231
mail		IN	A	208.38.29.231
ns1 		IN	A	208.38.29.231
ftp 		IN	A	208.38.29.231
www		IN	CNAME	statnet.ca.

#############################################################

I'm at a loss. Any pointers would be greatly appreciated.

Regards, Luc.


More information about the bind-users mailing list