<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/dnsserver/">
    <title>DNSサーバー実験室 @ ウィキ</title>
    <link>http://w.atwiki.jp/dnsserver/</link>
    <atom:link href="https://w.atwiki.jp/dnsserver/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>DNSサーバー実験室 @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2012-03-12T01:10:43+09:00</dc:date>
    <utime>1331482243</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/23.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/22.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/21.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/20.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/19.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/dnsserver/pages/14.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/23.html">
    <title>BINDのコンパイル</title>
    <link>https://w.atwiki.jp/dnsserver/pages/23.html</link>
    <description>
      CentOS5で[[BIND]]9.9をコンパイルする。
*configure
#region
 [root@localhost bind-9.9.0]# env CFLAGS=&#039;-DDIG_SIGCHASE=1&#039; ./configure --with-openssl --with-libtool --enable-ipv6
 checking build system type... i686-pc-linux-gnu
 checking host system type... i686-pc-linux-gnu
 checking whether make sets $(MAKE)... yes
 checking for gcc... gcc
 checking whether the C compiler works... yes
 checking for C compiler default output file name... a.out
 checking for suffix of executables... 
 checking whether we are cross compiling... no
 checking for suffix of object files... o
 checking whether we are using the GNU C compiler... yes
 checking whether gcc accepts -g... yes
 checking for gcc option to accept ISO C89... none needed
 checking for a sed that does not truncate output... /bin/sed
 checking for grep that handles long lines and -e... /bin/grep
 checking for egrep... /bin/grep -E
 checking for ld used by gcc... /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... yes
     </description>
    <dc:date>2012-03-12T01:10:43+09:00</dc:date>
    <utime>1331482243</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/22.html">
    <title>PowerDNSのrecursorを設定する</title>
    <link>https://w.atwiki.jp/dnsserver/pages/22.html</link>
    <description>
      /etc/pdns-recursor/recursor.conf
インストール直後
#region
 [root@localhost ~]# cat recursor.conf
 setuid=pdns-recursor
 setgid=pdns-recursor
 # Autogenerated configuration file template
 #################################
 # aaaa-additional-processing	turn on to do AAAA additional processing (slow)
 #
 # aaaa-additional-processing=off
 
 #################################
 # allow-from	If set, only allow these comma separated netmasks to recurse
 #
 # allow-from=127.0.0.0/8, 10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12, ::1/128, fe80::/10
 
 #################################
 # allow-from-file	If set, load allowed netmasks from this file
 #
 # allow-from-file=
 
 #################################
 # auth-can-lower-ttl	If we follow RFC 2181 to the letter, an authoritative server can lower the TTL of NS records
 #
 # auth-can-lower-ttl=off
 
 #################################
 # auth-zones	Zones for which we have authoritative data, comma separated domain=file pairs 
 #
    </description>
    <dc:date>2012-02-24T07:17:46+09:00</dc:date>
    <utime>1330035466</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/21.html">
    <title>PowerDNSのrecursorをインストールする</title>
    <link>https://w.atwiki.jp/dnsserver/pages/21.html</link>
    <description>
      CentOS に yum install する
yum info
#region
 [root@localhost ~]# yum info pdns-recursor 
 Loaded plugins: fastestmirror
 Loading mirror speeds from cached hostfile
  * base: rsync.atworks.co.jp
  * extras: rsync.atworks.co.jp
  * updates: rsync.atworks.co.jp
 Available Packages
 Name       : pdns-recursor
 Arch       : x86_64
 Version    : 3.1.5
 Release    : 1.el5.centos
 Size       : 458 k
 Repo       : extras
 Summary    : Modern, advanced and high performance recursing/non authoritative
            : nameserver
 URL        : http://powerdns.com
 License    : GPLv2
 Description: PowerDNS Recursor is a non authoritative/recursing DNS server. Use
            : this package if you need a dns cache for your network.
 
#endregion
install
#region
 [root@localhost ~]# yum -y install pdns-recursor
 Loaded plugins: fastestmirror
 Loading mirror speeds from cached hostfile
  * base: rsync.atworks.co.jp
  * extras: rsync.atworks.co.jp
  * updates: rsync.atworks.co.j    </description>
    <dc:date>2012-02-23T11:51:51+09:00</dc:date>
    <utime>1329965511</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/20.html">
    <title>PowerDNS</title>
    <link>https://w.atwiki.jp/dnsserver/pages/20.html</link>
    <description>
      *[[PowerDNSのrecursorをインストールする]]
*[[PowerDNSのrecursorを設定する]]    </description>
    <dc:date>2012-02-24T07:14:12+09:00</dc:date>
    <utime>1330035252</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/19.html">
    <title>スタートアップスクリプト</title>
    <link>https://w.atwiki.jp/dnsserver/pages/19.html</link>
    <description>
      CentOS に yum install したときのスタートアップスクリプト
/etc/rc.d/init.d/named
----
#region
 #!/bin/bash
 #
 # named           This shell script takes care of starting and stopping
 #                 named (BIND DNS server).
 #
 # chkconfig: - 13 87
 # description: named (BIND) is a Domain Name Server (DNS) \
 # that is used to resolve host names to IP addresses.
 # probe: true
 
 ### BEGIN INIT INFO
 # Provides: $named
 # Required-Start: $local_fs $network $syslog
 # Required-Stop: $local_fs $network $syslog
 # Default-Start:
 # Default-Stop: 0 1 2 3 4 5 6
 # Short-Description: start|stop|status|restart|try-restart|reload|force-reload DNS server
 # Description: control ISC BIND implementation of DNS server
 ### END INIT INFO
 
 # Source function library.
 . /etc/rc.d/init.d/functions
 
 [ -r /etc/sysconfig/named ] &amp;&amp; . /etc/sysconfig/named
 
 RETVAL=0
 export KRB5_KTNAME=${KEYTAB_FILE:-/etc/named.keytab}
 
 named=&#039;named&#039;
 if [ -x /usr/sbin/named-sdb ]; then
 	named=&#039;n    </description>
    <dc:date>2012-02-23T10:04:59+09:00</dc:date>
    <utime>1329959099</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/18.html">
    <title>DNSプロトコル一般</title>
    <link>https://w.atwiki.jp/dnsserver/pages/18.html</link>
    <description>
      TCP/UDP port 53 が使われる。
RFC 1034/1035    </description>
    <dc:date>2012-02-23T09:55:22+09:00</dc:date>
    <utime>1329958522</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/17.html">
    <title>BINDを権威DNSサーバーとして設定する</title>
    <link>https://w.atwiki.jp/dnsserver/pages/17.html</link>
    <description>
      named.conf に zone ステートメントを書く。    </description>
    <dc:date>2012-02-23T09:53:49+09:00</dc:date>
    <utime>1329958429</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/16.html">
    <title>BINDをキャッシュDNSサーバーとして設定する</title>
    <link>https://w.atwiki.jp/dnsserver/pages/16.html</link>
    <description>
      CentOS に yum でインストールされた [[BIND]] をキャッシュDNSサーバーとして設定する。
*caching-nameserver
yum info
#region
 [root@localhost ~]# yum info caching-nameserver
 Loaded plugins: fastestmirror
 Loading mirror speeds from cached hostfile
  * base: rsync.atworks.co.jp
  * extras: rsync.atworks.co.jp
  * updates: rsync.atworks.co.jp
 Available Packages
 Name       : caching-nameserver
 Arch       : x86_64
 Epoch      : 30
 Version    : 9.3.6
 Release    : 16.P1.el5_7.1
 Size       : 62 k
 Repo       : updates
 Summary    : Default BIND configuration files for a caching nameserver
 URL        : http://www.isc.org/products/BIND/
 License    : BSD-like
 Description: The  caching-nameserver package includes the configuration files which will make
            : the ISC BIND named DNS name server act as a simple caching nameserver.
            : A caching nameserver is a DNS Resolver, as defined in RFC 1035, section 7.
            : ISC BIND named(8) provides a very efficient, flexible and r    </description>
    <dc:date>2012-02-23T04:27:06+09:00</dc:date>
    <utime>1329938826</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/15.html">
    <title>BINDのインストール</title>
    <link>https://w.atwiki.jp/dnsserver/pages/15.html</link>
    <description>
      *CentOS に yum で BIND をインストールする
**リポジトリ内のBIND関連パッケージ
#region
 [root@localhost ~]# yum search bind | grep ^bind
 bind.x86_64 : The Berkeley Internet Name Domain (BIND) DNS (Domain Name System)
 bind-chroot.x86_64 : A chroot runtime environment for the ISC BIND DNS server,
 bind-devel.i386 : Header files and libraries needed for BIND DNS development.
 bind-devel.x86_64 : Header files and libraries needed for BIND DNS development.
 bind-libbind-devel.i386 : Include files and library needed to use the BIND
 bind-libbind-devel.x86_64 : Include files and library needed to use the BIND
 bind-libs.i386 : Libraries used by the BIND DNS packages
 bind-libs.x86_64 : Libraries used by the BIND DNS packages
 bind-sdb.x86_64 : The Berkeley Internet Name Domain (BIND) DNS (Domain Name
 bind-utils.x86_64 : Utilities for querying DNS name servers.
 bind97.x86_64 : The Berkeley Internet Name Domain (BIND) DNS (Domain Name
 bind97-chroot.x86_64 : A chroot runtime environment for the ISC BIN    </description>
    <dc:date>2012-02-23T02:47:38+09:00</dc:date>
    <utime>1329932858</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/dnsserver/pages/14.html">
    <title>BIND</title>
    <link>https://w.atwiki.jp/dnsserver/pages/14.html</link>
    <description>
      * [[BINDのインストール]]
* [[BINDのコンパイル]]
* [[BINDをキャッシュDNSサーバーとして設定する]]
* [[BINDを権威DNSサーバーとして設定する]]
* [[スタートアップスクリプト]]
* リリース情報
** [[BIND 9.9.0&gt;http://www.isc.org/software/bind/990]]
[[BIND 9.9.0 Release Notes&gt;https://kb.isc.org/article/AA-00631]]    </description>
    <dc:date>2012-03-12T01:06:20+09:00</dc:date>
    <utime>1331481980</utime>
  </item>
  </rdf:RDF>
