Re: setting up dns server

2012-07-04 Thread Doug Barton
On 07/04/2012 06:43, m s wrote:
> I want to config FreeBSD as a dns server.

You don't mention what kind of name server you want, but from the rest
of your post I'm assuming that you want a local resolver. If that's the
case, your best bet is to stick with all of the defaults in the base
currently, since it's specifically designed to perform that function.

hope this helps,

Doug

-- 

This .signature sanitized for your protection


___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"


Re: setting up dns server

2012-07-04 Thread Paul A. Procacci
- What bind listening?  (Can you see it with netstat?)
- What port is it listening to?
- What errors (if any) are in the error log?

I'm afraid your question really isn't a specific FreeBSD problem.
You might have better luck on the BIND mailing list.

~Paul

On Wed, Jul 04, 2012 at 06:43:00AM -0700, m s wrote:
> Hi all.
> I want to config FreeBSD as a dns server. I did below configuration but
> when I use "nslookup" command it doesn't work. I also enabled named service
> in rc.conf file and put my ip as a nameserver in "resolv.conf".
> what am I missing?is there anything else I should do?
>
> any help would be appriciated.
>
> My "named.conf" file:
> ---
>
> options {
>
> directory  "/etc/namedb";
>
> pid-file  "/var/run/named/pid";
>
> dump-file"/var/dump/named_dump.db";
>
> statistics-file   "/var/stats/named.stats";
>
> };
>
>
>
> zone "." { type hint; file "/etc/namedb/named.root"; };
>
>
>
> zone "0.0.127.IN-ADDR.ARPA" {
>
>   type master;
>
>   file "master/localhost.rev;
>
> };
>
>
>
> zone "ictptk.net" { type master; file "/etc/namedb/master/db.domain"; };
>
>
>
> zone "10.10.10.in-addr.arpa" {
>
>  type master;
>
>  file "/etc/named/master/db.ict";
>
> };
>
> ---
>
>
> my "db.ict" file :
>
>
> ---
>
>
>
> $TTL   3600
>
>
>
> @IN   SOA   ns.ictptk.net. root.ns.ictptk.net.   (
>
>
> 2001220200
> ;Serial
>
> 3600
> ;Refresh
>
> 900
> ;Retry
>
>
> 360
> ;Expire
>
> 3600
> )
>  ;Minimum
>
> IN   NS  ns.ictptk.net.
>
> 1  IN   PTRictptk.net.
>
> ---
>
> my "db.domain" file :
>
> ---
>
> $TTL   3600
>
>
>
> @IN   SOA   ns.ictptk.net. root.ns.ictptk.net.   (
>
>
> 2001220200
> ;Serial
>
> 3600
> ;Refresh
>
> 900
> ;Retry
>
>
> 360
> ;Expire
>
> 3600
> )
>  ;Minimum
>
>INNS ns.ictptk.net.
>
> ictptk.net   IN  A   10.10.10.1
>
> www.ictptk.net.   INCNAME   ictptk.net.
> ___
> freebsd-net@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-net
> To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"



This message may contain confidential or privileged information. If you are not 
the intended recipient, please advise us immediately and delete this message. 
See http://www.datapipe.com/legal/email_disclaimer/ for further information on 
confidentiality and the risks of non-secure electronic communication. If you 
cannot access these links, please notify us by reply message and we will send 
the contents to you.
___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"


setting up dns server

2012-07-04 Thread m s
Hi all.
I want to config FreeBSD as a dns server. I did below configuration but
when I use "nslookup" command it doesn't work. I also enabled named service
in rc.conf file and put my ip as a nameserver in "resolv.conf".
what am I missing?is there anything else I should do?

any help would be appriciated.

My "named.conf" file:
---

options {

directory  "/etc/namedb";

pid-file  "/var/run/named/pid";

dump-file"/var/dump/named_dump.db";

statistics-file   "/var/stats/named.stats";

};



zone "." { type hint; file "/etc/namedb/named.root"; };



zone "0.0.127.IN-ADDR.ARPA" {

  type master;

  file "master/localhost.rev;

};



zone "ictptk.net" { type master; file "/etc/namedb/master/db.domain"; };



zone "10.10.10.in-addr.arpa" {

 type master;

 file "/etc/named/master/db.ict";

};

---


my "db.ict" file :


---



$TTL   3600



@IN   SOA   ns.ictptk.net. root.ns.ictptk.net.   (


2001220200
;Serial

3600
;Refresh

900
;Retry


360
;Expire

3600
)
 ;Minimum

IN   NS  ns.ictptk.net.

1  IN   PTRictptk.net.

---

my "db.domain" file :

---

$TTL   3600



@IN   SOA   ns.ictptk.net. root.ns.ictptk.net.   (


2001220200
;Serial

3600
;Refresh

900
;Retry


360
;Expire

3600
)
 ;Minimum

   INNS ns.ictptk.net.

ictptk.net   IN  A   10.10.10.1

www.ictptk.net.   INCNAME   ictptk.net.
___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"