Changeset 1894

Show
Ignore:
Timestamp:
01/18/11 16:33:31 (2 years ago)
Author:
ahu
Message:

document (un)set-presigned

Location:
trunk/pdns/pdns
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/docs/pdns.xml

    r1884 r1894  
    93859385                Sets NSEC3 parameters for this zone. A sample commandline is: "pdnssec set-nsec3 powerdnssec.org '1 0 1 ab' narrow". 
    93869386                The NSEC3 parameters must be quoted on the command line. 
    9387                 WARNING: an empty salt is not yet supported! 
    93889387                WARNING: This requires updating the 'DS" over at the parent zone! 
     9388              </para> 
     9389            </listitem> 
     9390        </varlistentry> 
     9391        <varlistentry> 
     9392            <term>set-presigned ZONE</term> 
     9393            <listitem> 
     9394              <para> 
     9395                        Switches zone to presigned operation, utilizing in-zone RRSIGs. 
    93899396              </para> 
    93909397            </listitem> 
     
    94039410              <para> 
    94049411                Converts a zone to NSEC operations. WARNING: This requires updating the 'DS" over at the parent zone! 
     9412              </para> 
     9413            </listitem> 
     9414        </varlistentry> 
     9415        <varlistentry> 
     9416            <term>unset-presigned ZONE</term> 
     9417            <listitem> 
     9418              <para> 
     9419                        Disables presigned operation for ZONE. 
    94059420              </para> 
    94069421            </listitem> 
  • trunk/pdns/pdns/pdnssec.cc

    r1893 r1894  
    235235  if(cmds.empty() || g_vm.count("help")) { 
    236236    cerr<<"Usage: \npdnssec [options] [show-zone] [secure-zone] [rectify-zone] [add-zone-key] [deactivate-zone-key] [remove-zone-key] [activate-zone-key]\n"; 
    237     cerr<<"         [import-zone-key] [export-zone-key] [set-nsec3] [unset-nsec3] [export-zone-dnskey]\n\n"; 
     237    cerr<<"         [import-zone-key] [export-zone-key] [set-nsec3] [set-presigned] [unset-nsec3] [unset-presigned] [export-zone-dnskey]\n\n"; 
    238238    cerr<<"activate-zone-key ZONE KEY-ID   Activate the key with key id KEY-ID in ZONE\n"; 
    239239    cerr<<"add-zone-key ZONE [zsk|ksk]     Add a ZSK or KSK to a zone\n"; 
     
    248248    cerr<<"remove-zone-key ZONE KEY-ID     Remove key with KEY-ID from ZONE\n"; 
    249249    cerr<<"secure-zone                     Add KSK and two ZSKs\n"; 
    250     cerr<<"set-nsec3 'params' [narrow]     Enable NSEC3 with PARAMs. Optionally narrow\n"; 
     250    cerr<<"set-nsec3 ZONE 'params' [narrow]     Enable NSEC3 with PARAMs. Optionally narrow\n"; 
     251    cerr<<"set-presigned ZONE              Use presigned RRSIGs from storage\n"; 
    251252    cerr<<"show-zone ZONE                  Show DNSSEC (public) key details about a zone\n"; 
    252     cerr<<"unset-nsec3 ZONE                Switch back to NSEC\n\n"; 
    253  
     253    cerr<<"unset-nsec3 ZONE                Switch back to NSEC\n"; 
     254        cerr<<"unset-presigned ZONE            No longer use presigned RRSIGs\n\n"; 
    254255    cerr<<"Options:"<<endl; 
    255256    cerr<<desc<<endl;