]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
manpage tweaks
authorMiek Gieben <miekg@NLnetLabs.nl>
Tue, 27 Sep 2005 12:56:50 +0000 (12:56 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Tue, 27 Sep 2005 12:56:50 +0000 (12:56 +0000)
doc/ldns-signzone.1
ldns-signzone.c

index 1d491a3140e55b7e9344146937c02c9e649b87fd..25f35f012e68e143c5c0cec7869e7c58f6471e01 100644 (file)
@@ -6,14 +6,19 @@ ldns-signzone \- sign a zonefile with DNSSEC data
 [
 .IR OPTION
 ]
-.IR ZONEFILE  KEYNAME(S)
+.IR ZONEFILE 
+.IR
+KEY 
+[KEY 
+[KEY] ...
+]
 
 .SH DESCRIPTION
 
 \fBldns-signzone\fR is used to generate a DNSSEC signed zone. When run it
 will create a new zonefile that contains RRSIG and NSEC resource records, as
-specified in rfc4033, rfc4034 and rfc4035. It will add the DNSKEY that is
-used to the zone.
+specified in RFC 4033, RFC 4034 and RFC 4035. It will add the DNSKEY(s)
+that is/are used to sign the zone.
 
 Keys must be specified by their base name (i.e. without .key and .private)
 and both the public and private key must be present in the specified
@@ -22,15 +27,17 @@ location. Multiple keys can be specified.
 .SH OPTIONS
 .TP
 \fB-e\f  \fIdate\fR
-Set expiration date of the signatures to this date (format: YYYYMMDD[hhmmss])
+Set expiration date of the signatures to this date, the format can be
+YYYYMMDD[hhmmss], or a timestamp.
 
 .TP
-\fB-f\f  \fIfile\fR
-Use this file to store the signed zone in (default <originalfile>.signed)
+\fB-i\f  \fIdate\fR
+Set inception date of the signatures to this date, the format can be
+YYYYMMDD[hhmmss], or a timestamp.
 
 .TP
-\fB-i\f  \fIdate\fR
-Set inception date of the signatures to this date (format: YYYYMMDD[hhmmss])
+\fB-f\f  \fIfile\fR
+Use this file to store the signed zone in (default <originalfile>.signed)
 
 .TP
 \fB-o\f  \fIorigin\fR
index fb96eec8524e97d3369a9e64a39d9c049a71c564..318d1d58873e5f4d855221706dec8a39f7a07cd9 100644 (file)
@@ -22,7 +22,7 @@ usage(FILE *fp, const char *prog) {
        fprintf(fp, "  signs the zone with the given key(s)\n");
        fprintf(fp, "  -e <date>\texpiration date\n");
        fprintf(fp, "  -f <file>\toutput zone to file (default <name>.signed)\n");
-       fprintf(fp, "  -i <date>t\tinception date\n");
+       fprintf(fp, "  -i <date>\tinception date\n");
        fprintf(fp, "  -o <domain>\torigin for the zone\n");
        fprintf(fp, "  keys must be specified by their base name: K<name>+<alg>+<id>\n");
        fprintf(fp, "  both a .key and .private file must present\n");