From owner-freebsd-stable@FreeBSD.ORG Fri Jun 29 05:39:16 2007 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F05E16A473 for ; Fri, 29 Jun 2007 05:39:16 +0000 (UTC) (envelope-from eraser95@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.248]) by mx1.freebsd.org (Postfix) with ESMTP id C2D2313C484 for ; Fri, 29 Jun 2007 05:39:15 +0000 (UTC) (envelope-from eraser95@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so189871anc for ; Thu, 28 Jun 2007 22:39:15 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=ZXpmzmlbS772+8mAhEl/qeMCZls+RS5TzTinbr/45qyoUsEi2yYf3GTEvNyDqE+4phNHDFtcbqyTogfHIk9trWRNYWSgHW64qydppx2aP5Ski3qVpBq6KDg2og9eNBswQ4iqUb3wuDxWmtJ3gn/VUW6ECbEKsbhVj8rTYRcJWz0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=MlDp4kRBwWA9KeGhwN2qVW/dkklX2tyFNdVOKg+wtBgvZW1eMKsMmDIgUhr56Unizo/5YDhgQ0tDuzaUyJ+zgqg4vo7McB7q3IPrt7Nflyr1+3sBLP7L98iHr/3XYsZMhIr4cloteIih/Joflp62J0E0mx3qYIIcHEGohLBGSKI= Received: by 10.100.94.3 with SMTP id r3mr1935254anb.1183093950449; Thu, 28 Jun 2007 22:12:30 -0700 (PDT) Received: by 10.100.138.18 with HTTP; Thu, 28 Jun 2007 22:12:30 -0700 (PDT) Message-ID: Date: Thu, 28 Jun 2007 22:12:30 -0700 From: "Minseok Choi" To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: BIND Configuration X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jun 2007 05:39:16 -0000 Hi, I am digging on how to make home server. The home server is for Wireless AP, file server, samba and LAMP. The current progress is almost done but I can't solve this problem so far. I have 3 PCs. One is home server and the others(A, B) are WinXP. I have to know A's IP to access A because WinXP got dynamic IP from the Hom= e Server. Is there any way to assign real name instead of IP. I am trying to use BIND like the below. After the configuration, nslookup said the names - bellevue, issaquah and sammanish - can't be found. I'd merely like to access PCs using real name. If you have any idea or information, please let me know. ---------------------------------------- /etc/named.conf zone "intranet" { type master; file "master/intranet.zone" } zone "0.168.192.IN-ADDR.ARPA" { type master; file "master/intranet.rev" } ---------------------------------------- /etc/master/intranet.zone @ IN SOA localhost. root.localhost. ( =0F 20070628 ; Serial 3600 ; Refresh 900 ; Retry 3600000 ; Expire 3600 ) ; Minimum IN NS localhost. bellevue IN A 192.168.0.1 issaquah IN A 192.168.0.2 sammamish IN A 192.168.0.3 ---------------------------------------- /etc/master/intranet.rev $TTL 3600 @ IN SOA localhost. root.localhost. ( =0F 20070628 ; Serial 3600 ; Refresh 900 ; Retry 3600000 ; Expire 3600 ) ; Minimum IN NS localhost. 1 IN PTR bellevue. 2 IN PTR issaquah. 3 IN PTR sammamish.