From owner-freebsd-questions@FreeBSD.ORG Tue Dec 25 15:19:31 2007 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E99CB16A418 for ; Tue, 25 Dec 2007 15:19:30 +0000 (UTC) (envelope-from gelsemap@superhero.nl) Received: from superman.superhero.nl (superhero.nl [82.95.198.17]) by mx1.freebsd.org (Postfix) with ESMTP id 28D2013C44B for ; Tue, 25 Dec 2007 15:19:29 +0000 (UTC) (envelope-from gelsemap@superhero.nl) Received: (qmail 80620 invoked by uid 80); 25 Dec 2007 14:52:32 -0000 Received: from robin.ad.superhero.nl ([10.202.77.197]) (SquirrelMail authenticated user gelsemap) by webmail.superhero.nl with HTTP; Tue, 25 Dec 2007 15:52:32 +0100 (CET) Message-ID: <1262.10.202.77.197.1198594352.squirrel@webmail.superhero.nl> In-Reply-To: <4770A5A3.6080605@gmail.com> References: <4770A5A3.6080605@gmail.com> Date: Tue, 25 Dec 2007 15:52:32 +0100 (CET) From: "Gelsema, P \(Patrick\)" To: =?iso-8859-1?Q?Sd=E4vtaker?= User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: questions@freebsd.org Subject: Re: Problem setting up DNS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Dec 2007 15:19:31 -0000 On Tue, December 25, 2007 07:39, Sdävtaker wrote: > Hello, im using FBSD 6.2 > > I got 2 domains registered in the local nic and I could get one working > but the second one doesnt :-/ > This is my first attemp to set up a real DNS, so im pretty sure i did > something wrong, i copy/pasted here all the info i think can be usefull, > i can add more data if necesary. > BTW, sorry for my english, it is not my main language. > Thanks for any help. > Sdav Sounds like somewhere you got a }; on the wrong line. named-checkconf is your friend for checking the config file. named-checkzone for your zone files. Rgds, Patrick > > Info: > > I got this in named.conf: > (...) > zone "unhost.com.ar" { > type master; > file "master/unhost.com.ar"; > allow-transfer { > 202.157.182.142; > }; > }; > > zone "sacrarium.com.ar" { > type master; > file "master/sacrarium.com.ar"; > allow-transfer { > 202.157.182.142; > }; > }; > (...) > > The first one is working the second one is not. > In nic.ar both point to ns1.unhost.com.ar and 202.157.182.142 > (twisted4life free secondary) > > the Zone files are: > master/unhost.com.ar: > $TTL 86400 ; 1 day > unhost.com.ar. IN SOA ns1.unhost.com.ar. admin.unhost.com.ar. > ( > 2007102801 ; Serial > 10800 ; Refresh > 3600 ; Retry > 604800 ; Expire > 86400 ; Minimum TTL > ) > > ; DNS Servers > IN NS ns1.unhost.com.ar. > > ; MX Records > IN MX 10 mx.unhost.com.ar. > IN A 190.2.50.197 > > ; Machine Names > ns1 IN A 190.2.50.197 > mx IN A 190.2.50.197 > ftp IN A 190.2.50.197 > > ; Aliases > www IN CNAME @ > > > and master/sacrarium.com.ar say: > $TTL 86400 ; 1 day > sacrarium.com.ar. IN SOA ns1.unhost.com.ar. > admin.unhost.com.ar. ( > 2007102801 ; Serial > 10800 ; Refresh > 3600 ; Retry > 604800 ; Expire > 86400 ; Minimum TTL > ) > > ; MX Records > IN MX 10 mx.unhost.com.ar. > > ; Machine Names > www IN A 190.2.50.197 > > > When i do: > nslookup www.unhost.com.ar > Server: 200.69.193.1 > Address: 200.69.193.1#53 > > Non-authoritative answer: > www.unhost.com.ar canonical name = unhost.com.ar. > Name: unhost.com.ar > Address: 190.2.50.197 > > nslookup www.sacrarium.com.ar > Server: 200.69.193.1 > Address: 200.69.193.1#53 > > ** server can't find www.sacrarium.com.ar: SERVFAIL > > when dig: > dig @unhost.com.ar www > > ; <<>> DiG 9.3.3 <<>> @unhost.com.ar www > ; (1 server found) > ;; global options: printcmd > ;; Got answer: > ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 38338 > ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0 > > ;; QUESTION SECTION: > ;www. IN A > > ;; AUTHORITY SECTION: > . 10437 IN SOA a.root-servers.net. > nstld.verisign-grs.com. 2007122401 1800 900 604800 86400 > > ;; Query time: 2 msec > ;; SERVER: 190.2.50.197#53(190.2.50.197) > ;; WHEN: Tue Dec 25 03:34:23 2007 > ;; MSG SIZE rcvd: 96 > > dig @unhost.com.ar sacrarium.com.ar > > ; <<>> DiG 9.3.3 <<>> @unhost.com.ar sacrarium.com.ar > ; (1 server found) > ;; global options: printcmd > ;; Got answer: > ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 17321 > ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 > > ;; QUESTION SECTION: > ;sacrarium.com.ar. IN A > > ;; Query time: 2 msec > ;; SERVER: 190.2.50.197#53(190.2.50.197) > ;; WHEN: Tue Dec 25 03:34:40 2007 > ;; MSG SIZE rcvd: 34 > > dig sacrarium.com.ar > > ; <<>> DiG 9.3.3 <<>> sacrarium.com.ar > ;; global options: printcmd > ;; Got answer: > ;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 62816 > ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 > > ;; QUESTION SECTION: > ;sacrarium.com.ar. IN A > > ;; Query time: 451 msec > ;; SERVER: 200.69.193.1#53(200.69.193.1) > ;; WHEN: Tue Dec 25 03:35:01 2007 > ;; MSG SIZE rcvd: 34 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" >