1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
.TH SSH-CERTINFO "1" "March 2024" "SSH-TOOLS" "User Commands"
.SH NAME
ssh-certinfo \- shows validity and information of SSH certificates
.SH SYNOPSIS
ssh\-certinfo [OPTIONS] CERT\-FILE [...]
.SH DESCRIPTION
shows validity and information of SSH certificates
.SH OPTIONS
.TP
\fB\-c\fR
show colors
.TP
\fB\-h\fR
show this message
.TP
\fB\-w\fR days
warning threshold (default: 30)
.TP
\fB\-v\fR
verbose output
.TP
\fB\-\-version\fR
show version information
.SH EXAMPLES
.TP
# Default
.TP
ssh\-certinfo ~/.ssh/id_rsa\-cert.pub
.TP
ssh\-certinfo ~/.ssh/*.pub
.TP
# Certificates which expire within the next 2 months (colored output):
.TP
ssh\-certinfo \fB\-c\fR \fB\-w\fR 60 ~/.ssh/id_rsa\-cert.pub
.TP
ssh\-certinfo \fB\-c\fR \fB\-w\fR 60 ~/.ssh/*.pub
|