Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Feb 2004 16:41:02 -0500
From:      "Xpression" <admin@atenas.cult.cu>
To:        "FreeBSD-questions" <freebsd-questions@FreeBSD.ORG>
Subject:   named question...
Message-ID:  <001e01c3e90c$16c2f260$0901a8c0@bloodlust>

next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.

------=_NextPart_000_001B_01C3E8E2.2DC69DB0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

        Hi list, I have running named/BIND as DNS server, recently I have
some problems and I don't know the source of it, I have checked the logs and
config files but there is nothing unusual, here is my configs files, any
suggestion ???

------=_NextPart_000_001B_01C3E8E2.2DC69DB0
Content-Type: text/plain;
	name="named.txt"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="named.txt"

named.root
----------------------------------------------------------------------
;       This file holds the information on root name servers needed to
;       initialize cache of Internet domain name servers
;       (e.g. reference this file in the "cache  .  <file>"
;       configuration file of BIND domain name servers).
;
;       This file is made available by InterNIC registration services
;       under anonymous FTP as
;           file                /domain/named.root
;           on server           FTP.RS.INTERNIC.NET
;       -OR- under Gopher at    RS.INTERNIC.NET
;           under menu          InterNIC Registration Services (NSI)
;              submenu          InterNIC Registration Archives
;           file                named.root
;
;       last update:    Aug 22, 1997
;       related version of root zone:   1997082200
; $FreeBSD: src/etc/namedb/named.root,v 1.9 1999/09/13 17:09:08 peter Exp $
;
; formerly NS.INTERNIC.NET
;
.                        3600000  IN  NS    A.ROOT-SERVERS.NET.
A.ROOT-SERVERS.NET.      3600000      A     198.41.0.4
;
; formerly NS1.ISI.EDU
;
.                        3600000      NS    B.ROOT-SERVERS.NET.
B.ROOT-SERVERS.NET.      3600000      A     128.9.0.107
;
; formerly C.PSI.NET
;
.                        3600000      NS    C.ROOT-SERVERS.NET.
C.ROOT-SERVERS.NET.      3600000      A     192.33.4.12
;
; formerly TERP.UMD.EDU
;
.                        3600000      NS    D.ROOT-SERVERS.NET.
D.ROOT-SERVERS.NET.      3600000      A     128.8.10.90
;
; formerly NS.NASA.GOV
;
.                        3600000      NS    E.ROOT-SERVERS.NET.
E.ROOT-SERVERS.NET.      3600000      A     192.203.230.10
;
; formerly NS.ISC.ORG
;
.                        3600000      NS    F.ROOT-SERVERS.NET.
F.ROOT-SERVERS.NET.      3600000      A     192.5.5.241
;
; formerly NS.NIC.DDN.MIL
;
.                        3600000      NS    G.ROOT-SERVERS.NET.
G.ROOT-SERVERS.NET.      3600000      A     192.112.36.4
;
; formerly AOS.ARL.ARMY.MIL
;
.                        3600000      NS    H.ROOT-SERVERS.NET.
H.ROOT-SERVERS.NET.      3600000      A     128.63.2.53
;
; formerly NIC.NORDU.NET
;
.                        3600000      NS    I.ROOT-SERVERS.NET.
I.ROOT-SERVERS.NET.      3600000      A     192.36.148.17
;
; temporarily housed at NSI (InterNIC)
;
.                        3600000      NS    J.ROOT-SERVERS.NET.
J.ROOT-SERVERS.NET.      3600000      A     198.41.0.10
;
; housed in LINX, operated by RIPE NCC
;
.                        3600000      NS    K.ROOT-SERVERS.NET.
K.ROOT-SERVERS.NET.      3600000      A     193.0.14.129 
;
; temporarily housed at ISI (IANA)
;
.                        3600000      NS    L.ROOT-SERVERS.NET.
L.ROOT-SERVERS.NET.      3600000      A     198.32.64.12
;
; housed in Japan, operated by WIDE
;
.                        3600000      NS    M.ROOT-SERVERS.NET.
M.ROOT-SERVERS.NET.      3600000      A     202.12.27.33
; End of File



named.conf (course, IPs aren't the real ones)
----------------------------------------------------------------------
options {
	directory "/etc/namedb";
	forwarders {
		111.111.111.111;
		222.222.222.222;
	};
};

zone "." {
	type hint;
	file "named.root";
};

zone "0.0.127.IN-ADDR.ARPA" {
	type master;
	file "localhost.rev";
};

zone "my.domain.here" {
	type master;
	file "db.my.domain.here";
};

zone "333.333.333.in-addr.arpa" {
	type master;
	file "db.333.333.333";
};



db.my.domain.here
----------------------------------------------------------------------
$TTL	3600

@	IN	SOA	mail.my.domain.here.root.mail.my.domain.here.(
				20021224; Serial
				3600	; Refresh
				900	; Retry
				3600000	; Expire
				3600 )	; Minimum
	IN	NS	mail.my.domain.here.
router	IN	A	XXX.XXX.XXX.XXX
mail	IN	A	YYY.YYY.YYY.YYY
www	IN	A	ZZZ.ZZZ.ZZZ.ZZZ
ftp	IN	A	ZZZ.ZZZ.ZZZ.ZZZ



db.333.333.333
----------------------------------------------------------------------
$TTL	3600

@	IN	SOA	mail.my.domain.here.root.mail.my.domain.here.(
				20021224; Serial
				3600	; Refresh
				900	; Retry
				3600000	; Expire
				3600 )	; Minimum
	IN	NS	mail.my.domain.here.
XXX	IN	PTR	router
YYY	IN	PTR	mail
ZZZ	IN	PTR	www
ZZZ	IN	PTR	ftp
------=_NextPart_000_001B_01C3E8E2.2DC69DB0--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?001e01c3e90c$16c2f260$0901a8c0>