From owner-freebsd-questions@FreeBSD.ORG Sun Dec 2 05:53:53 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F03E816A420 for ; Sun, 2 Dec 2007 05:53:53 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158]) by mx1.freebsd.org (Postfix) with ESMTP id D431513C4B8 for ; Sun, 2 Dec 2007 05:53:53 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1Iyhm5-0005dt-3E for freebsd-questions@freebsd.org; Sat, 01 Dec 2007 21:53:53 -0800 Message-ID: <14112921.post@talk.nabble.com> Date: Sat, 1 Dec 2007 21:53:53 -0800 (PST) From: cuongvt To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: cuongvt@fpt.vn Subject: setting up slave server with Zoneedit need help 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: Sun, 02 Dec 2007 05:53:54 -0000 I have a `internal' network visible only internally. Let say: hanhnhu.local. This is my master for the local zone. I registered 'vuhanhnhu.com' domain with my registrar and pointed it to zoneedit nameservers: ns3.zoneedit.com and ns9.zoneedit.com. I'm using NAT. So how can I set up slave with zoneedit for "vuhanhnhu.com" zone? Thanks you very much. below is my files related to local internal DNS: File named.conf: options { directory "/etc/namedb"; pid-file "/var/run/named/pid"; dump-file "/var/dump/named_dump.db"; statistics-file "/var/stats/named.stats"; listen-on { 192.168.0.1; 127.0.0.1; }; forwarders { 210.245.0.131; }; }; zone "hanhnhu.local" in { type master; file "grv.zone"; }; zone "0.168.192.in-addr.arpa" in { type master; file "grv.rev"; }; zone "localhost" in { type master; file "local.zone"; }; zone "0.0.127.in-addr.arpa" in { type master; file "local.rev"; }; zone "." { type hint; file "named.root"; }; ---------------------------------------------------------- File grv.zone $TTL 3600 @ IN SOA hanhnhu.local. root.hanhnhu.local. ( 2000012201 ; Selial 10800 ; Refresh 3 hours 3600 ; Retry 1 hour 3600000 ; Expire 1000 hours 86400 ; Minimum 24 hours ) IN NS hanhnhu.local. IN A 192.168.0.1 ; hosts localhost IN A 127.0.0.1 windows1 IN A 192.168.0.253 windows2 IN A 192.168.0.254 ; aliases www IN CNAME hanhnhu.local. ftp IN CNAME hanhnhu.local. mail IN CNAME hanhnhu.local. ----------------------------------------- File grv.rev: $TTL 3600 @ IN SOA hanhnhu.local. root.hanhnhu.local. ( 2000012201 ; Selial 10800 ; Refresh 3 hours 3600 ; Retry 1 hour 3600000 ; Expire 1000 hours 86400 ; Minimum 24 hours ) IN NS hanhnhu.local. ; hosts 1 IN PTR hanhnhu.local. 253 IN PTR windows1.hanhnhu.local. 254 IN PTR windows2.hanhnhu.local. -- View this message in context: http://www.nabble.com/setting-up-slave-server-with-Zoneedit-need-help-tf4930698.html#a14112921 Sent from the freebsd-questions mailing list archive at Nabble.com.