1

私は2台のPCを持っています

1. 192.168.56.102 => winXP
2. 192.168.56.103 => ubuntu 10.04 (bind9 and apache2 installed)

simas.tes を 192.168.56.103 に登録しました

私がしたこと :

# vi /etc/bind/named.conf.local

zone "simas.tes" {
    type master;
    file "/etc/bind/zones/simas.tes.db";
};

zone "56.168.192.in-addr-arpa" {
    type master;
    file "/etc/bind/zones/rev.56.168.192.in-addr.arpa";
};

それから :

# vi /etc/bind/zones/simas.tes.db

simas.tes.  IN  SOA ns1.simas.tes.  admin.simas.tes. (
    2006081401
    28800
    3600
    604800
    38400
)

simas.tes.  IN  NS      NS1.simas.tes. 
simas.tes.  IN  MX  10  mta.simas.tes.

www IN  A   192.168.56.103
mta IN  A   192.168.56.103
ns1 IN  A   192.168.56.103

それから :

# vi /etc/bind/zones/rev.56.168.192.in-addr.arpa

@ IN SOA ns1.simas.tes. admin.simas.tes. (
    2006081401;
    28800;
    604600;
    604800;
    86400
)

    IN  NS  ns1.simas.tes.
103 IN  PTR simas.tes.

私の発掘状態:

root@my-ubuntu:/var/www# dig simas.tes

; <<>> DiG 9.7.0-P1 <<>> simas.tes
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 9559
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0

;; QUESTION SECTION:
;simas.tes.         IN  A

;; AUTHORITY SECTION:
simas.tes.      38400   IN  SOA ns1.simas.tes. admin.simas.tes. 2006081401 28800 3600 604800 38400

;; Query time: 0 msec
;; SERVER: 192.168.56.103#53(192.168.56.103)
;; WHEN: Thu May  3 17:25:05 2012
;; MSG SIZE  rcvd: 73

私のnslookup状態:

root@my-ubuntu:/var/www# nslookup simas.tes
Server:     192.168.56.103
Address:    192.168.56.103#53

*** Can't find simas.tes: No answer

192.168.56.102 (私の winXP) から simas.tes サイトにアクセスできるようになりましたが、(192.168.56.103 ではなく) simas.tes に ping できません。.. simas.tes を正常に ping する方法を知りたいだけです。

4

1 に答える 1

2

「simas.tes」の「IN A」エントリが欠落しているようです。/etc/bind/zones/simas.tes.db ファイル内。それを設定する1つの可能性は次のとおりです。

simas.tes. 192.168.56.103 で
simas.tes. IN NS NS1.simas.tes.
この例では、既存の NS レコードの上に記載した「A」レコードを追加しました。

于 2012-05-03T19:41:00.147 に答える