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

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 "[EMAIL PROTECTED]"

Reply via email to