Changeset 1894
- Timestamp:
- 01/18/11 16:33:31 (2 years ago)
- Location:
- trunk/pdns/pdns
- Files:
-
- 2 modified
-
docs/pdns.xml (modified) (2 diffs)
-
pdnssec.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/docs/pdns.xml
r1884 r1894 9385 9385 Sets NSEC3 parameters for this zone. A sample commandline is: "pdnssec set-nsec3 powerdnssec.org '1 0 1 ab' narrow". 9386 9386 The NSEC3 parameters must be quoted on the command line. 9387 WARNING: an empty salt is not yet supported!9388 9387 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. 9389 9396 </para> 9390 9397 </listitem> … … 9403 9410 <para> 9404 9411 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. 9405 9420 </para> 9406 9421 </listitem> -
trunk/pdns/pdns/pdnssec.cc
r1893 r1894 235 235 if(cmds.empty() || g_vm.count("help")) { 236 236 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"; 238 238 cerr<<"activate-zone-key ZONE KEY-ID Activate the key with key id KEY-ID in ZONE\n"; 239 239 cerr<<"add-zone-key ZONE [zsk|ksk] Add a ZSK or KSK to a zone\n"; … … 248 248 cerr<<"remove-zone-key ZONE KEY-ID Remove key with KEY-ID from ZONE\n"; 249 249 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"; 251 252 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"; 254 255 cerr<<"Options:"<<endl; 255 256 cerr<<desc<<endl;