Changes between Version 1 and Version 2 of PDNSSEC

Show
Ignore:
Timestamp:
04/21/10 15:08:27 (3 years ago)
Author:
ahu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDNSSEC

    v1 v2  
    11= Everything you need to know about PowerDNSSEC = 
    22The very latest and greatest can be found on http://svn.powerdns.com/dnssec-wild-testing/ 
     3PowerDNS is currently in a very wild state, and is completely unsuitable for production use. Even compiling it is surprisingly hard. 
    34 
     5== Compiling == 
     6Get the latest source snapshot from the 'dnssec-wild-testing' URL above, and untar: 
     7{{{ 
     8$ tar xzf pdns-3.0-pre.tar.gz 
     9$ cd pdns-3.0-pre 
     10$ ./configure --with-modules="" (if you have MySQL, leave out --with-modules="") 
     11$ make -j2  
     12wait 
     13}}} 
     14 
     15You will probably get an error about missing 'boost' libraries right now. If you are lucky, you can simply install packages like 'boost-filesystem-dev' and 'boost-program-options-dev', and re-run make. If installing these packages worked, but 'make' still does not complete successfully, try editing pdns/Makefile.am and pdns/modules/bind/Makefile.am and replace -lboost_*-mt by -lboost_*. 
     16 
     17== Packages == 
     18Check the 'dnssec-wild-testing' URL in a while, packages might have appeared 
     19 
     20== Running == 
     21For now, use only the BIND backend. A suggested named-dnssec.conf consists of: 
     22{{{ 
     23zone "powerdnssec.org" { 
     24        type master; 
     25        file "powerdnssec.org"; 
     26}; 
     27}}} 
     28 
     29