Re: named question...

2004-02-02 Thread Ceri Davies
On Sun, Feb 01, 2004 at 04:41:02PM -0500, Xpression wrote:
> 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 ???

State the problems that you are having, and don't obscure your IP
addresses - it gains you nothing in the way of security and makes trying
to help you more difficult.

Ceri

-- 


pgp0.pgp
Description: PGP signature


Re: named question...

2004-02-01 Thread Melvyn Sopacua
On Sunday 01 February 2004 22:41, Xpression wrote:
> 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 ???

It might help to define "some problems".
-- 
Melvyn

===
FreeBSD sarevok.webteckies.org 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jan 28 
18:01:18 CET 2004 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/SAREVOK_NOAPM_NODEBUG  
i386
===


pgp0.pgp
Description: signature


named question...

2004-02-01 Thread Xpression
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 ???
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  .  "
;   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 atRS.INTERNIC.NET
;   under menu  InterNIC Registration Services (NSI)
;  submenu  InterNIC Registration Archives
;   filenamed.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
;
.360  IN  NSA.ROOT-SERVERS.NET.
A.ROOT-SERVERS.NET.  360  A 198.41.0.4
;
; formerly NS1.ISI.EDU
;
.360  NSB.ROOT-SERVERS.NET.
B.ROOT-SERVERS.NET.  360  A 128.9.0.107
;
; formerly C.PSI.NET
;
.360  NSC.ROOT-SERVERS.NET.
C.ROOT-SERVERS.NET.  360  A 192.33.4.12
;
; formerly TERP.UMD.EDU
;
.360  NSD.ROOT-SERVERS.NET.
D.ROOT-SERVERS.NET.  360  A 128.8.10.90
;
; formerly NS.NASA.GOV
;
.360  NSE.ROOT-SERVERS.NET.
E.ROOT-SERVERS.NET.  360  A 192.203.230.10
;
; formerly NS.ISC.ORG
;
.360  NSF.ROOT-SERVERS.NET.
F.ROOT-SERVERS.NET.  360  A 192.5.5.241
;
; formerly NS.NIC.DDN.MIL
;
.360  NSG.ROOT-SERVERS.NET.
G.ROOT-SERVERS.NET.  360  A 192.112.36.4
;
; formerly AOS.ARL.ARMY.MIL
;
.360  NSH.ROOT-SERVERS.NET.
H.ROOT-SERVERS.NET.  360  A 128.63.2.53
;
; formerly NIC.NORDU.NET
;
.360  NSI.ROOT-SERVERS.NET.
I.ROOT-SERVERS.NET.  360  A 192.36.148.17
;
; temporarily housed at NSI (InterNIC)
;
.360  NSJ.ROOT-SERVERS.NET.
J.ROOT-SERVERS.NET.  360  A 198.41.0.10
;
; housed in LINX, operated by RIPE NCC
;
.360  NSK.ROOT-SERVERS.NET.
K.ROOT-SERVERS.NET.  360  A 193.0.14.129 
;
; temporarily housed at ISI (IANA)
;
.360  NSL.ROOT-SERVERS.NET.
L.ROOT-SERVERS.NET.  360  A 198.32.64.12
;
; housed in Japan, operated by WIDE
;
.360  NSM.ROOT-SERVERS.NET.
M.ROOT-SERVERS.NET.  360  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
--
$TTL3600

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



db.333.333.333
--
$TTL3600

@   IN  SOA mail.my.domain.here.root.mail.my.domain.here.(
20021224; Serial
3600; Refresh
900 ; Retry
360 ; 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___
[E