前へ|次へ|戻る

bind 3006 test cash only

じゃ forward て なんだ?

注意 dig の 項目は 抜粋 してあります

named.conf

まず named.conf を zone 統べてなし recursion yes; の 状態に 戻す 其 の内容は

# cat named.conf
acl nyansblx {
           192.168.0.0/24;
           127.0.0.1;
};

options {
           directory "/var/named";
           pid-file "/var/run/named/named.pid";
           recursion yes;
           allow-recursion {    
                             nyansblx ;
           };
           allow-query {
                             nyansblx ;
           };
 
           allow-transfer { 
                             none;
           };  
           forward first ;
           forwarders {
                             192.168.0.1;
           }; 
};
controls {
       inet 127.0.0.1 port 953
               allow { 127.0.0.1; } keys { "rndc-key"; };
 };
include "/etc/rndc.key";

この 状態で 一応仮の 試行を 行う

# ps ax | grep named | grep -v grep
  406 ?        S      0:00 /usr/sbin/named
# :> /var/log/messages 
# :> /var/log/syslog   
# kill -HUP 406
# cat /var/log/syslog 
# cat /var/log/messages 
Apr 11 16:37:31 lx named[406]: loading configuration from '/etc/named.conf'
Apr 11 16:37:31 lx named[406]: no IPv6 interfaces found
$ hostname -i
192.168.0.8 
$ dig @192.168.0.5 cricrima-sa.no-ip.info
;; ANSWER SECTION:
cricrima-sa.no-ip.info. 60      IN      A       219.167.38.78
;; Query time: 187 msec
;; SERVER: 192.168.0.5#53(192.168.0.5)
;; WHEN: Tue Apr 11 16:38:41 2006
;; MSG SIZE  rcvd: 167
$ dig @192.168.0.5 cricrima-sa.no-ip.info
;; Query time: 3 msec
;; SERVER: 192.168.0.5#53(192.168.0.5)
;; WHEN: Tue Apr 11 16:39:20 2006
;; MSG SIZE  rcvd: 167

forward

forward の 項目を 削除

# vi named.conf
# cat named.conf
acl nyansblx {
           192.168.0.0/24;
           127.0.0.1;
};

options {
           directory "/var/named";
           pid-file "/var/run/named/named.pid";
           recursion yes;
           allow-recursion {    
                             nyansblx ;
           };
           allow-query {
                             nyansblx ;
           };
 
           allow-transfer { 
                             none;
           };  
};
controls {
       inet 127.0.0.1 port 953
               allow { 127.0.0.1; } keys { "rndc-key"; };
 };
include "/etc/rndc.key";

一連の処理

# ps ax | grep named | grep -v grep
  406 ?        S      0:00 /usr/sbin/named
# :> /var/log/messages 
# :> /var/log/syslog   
# kill -HUP 406
# cat /var/log/messages 
Apr 11 16:45:59 lx named[406]: loading configuration from '/etc/named.conf'
Apr 11 16:45:59 lx named[406]: no IPv6 interfaces found

Non forward test

どうなると 思います forward ないので 駄目 いや なんとかするのでは?

$ hostname -i
192.168.0.8 
$ dig @192.168.0.5 cricrima-sa.no-ip.info
;; ANSWER SECTION:
cricrima-sa.no-ip.info. 60      IN      A       219.167.38.78
;; Query time: 235 msec
;; SERVER: 192.168.0.5#53(192.168.0.5)
;; WHEN: Tue Apr 11 16:48:57 2006
;; MSG SIZE  rcvd: 167

なんとか するようです。recursion yes の 方が 強烈です。最終良くわから ないが ファイヤーウオール も ないんで 別に 問題が ないようです。 一般に プロバイダー の ネームサーバー 若しくは adsl ルーター の 番号に するとい うことです。これは もう一つ 検証が 出来なかった。本来 問い合わせを 転送 するように 書かれてるようだが。

にゃんたろう 拝!
2006年 4月11日 (火) 23:22:40 JST 作成


前へ|次へ|戻る

Copyright © 2004.-2007. nyantarou All Rights Reserved.