Date: Thu, 28 Jun 2007 22:12:30 -0700 From: "Minseok Choi" <eraser95@gmail.com> To: freebsd-stable@freebsd.org Subject: BIND Configuration Message-ID: <e4ffd2990706282212m7c6eb5dex2ec067f3c1a64822@mail.gmail.com>
next in thread | raw e-mail | index | archive | help
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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?e4ffd2990706282212m7c6eb5dex2ec067f3c1a64822>
