diff options
author | djm@openbsd.org <djm@openbsd.org> | 2016-09-21 03:34:45 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2016-09-21 03:41:22 +0200 |
commit | bfa9d969ab6235d4938ce069d4db7e5825c56a19 (patch) | |
tree | 5ff7ef621e0e6660f4eae3a61b133d07f3bd4f5b /sshd_config.5 | |
parent | upstream commit (diff) | |
download | openssh-bfa9d969ab6235d4938ce069d4db7e5825c56a19.tar.xz openssh-bfa9d969ab6235d4938ce069d4db7e5825c56a19.zip |
upstream commit
add a way for principals command to get see key ID and serial
too
Upstream-ID: 0d30978bdcf7e8eaeee4eea1b030eb2eb1823fcb
Diffstat (limited to 'sshd_config.5')
-rw-r--r-- | sshd_config.5 | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sshd_config.5 b/sshd_config.5 index 9e96acf39..dd94b4801 100644 --- a/sshd_config.5 +++ b/sshd_config.5 @@ -33,8 +33,8 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: sshd_config.5,v 1.232 2016/09/14 05:42:25 djm Exp $ -.Dd $Mdocdate: September 14 2016 $ +.\" $OpenBSD: sshd_config.5,v 1.233 2016/09/21 01:34:45 djm Exp $ +.Dd $Mdocdate: September 21 2016 $ .Dt SSHD_CONFIG 5 .Os .Sh NAME @@ -306,14 +306,16 @@ Arguments to may be provided using the following tokens, which will be expanded at runtime: %% is replaced by a literal '%', -%u is replaced by the username being authenticated, -%h is replaced by the home directory of the user being authenticated, -%t is replaced with type of the certificate being offered, -%T with the type of the CA key, -%f is replaced with certificate fingerprint, %F with the fingerprint of the CA key, -%k is replaced with the full base-64 encoded certificate and +%f is replaced with certificate fingerprint, %K is replaced with the base-64 encoded CA key. +%k is replaced with the full base-64 encoded certificate, +%h is replaced with the home directory of the user being authenticated, +%i is replaced with key ID in the certificate, +%s is replaced with the serial number of the certificate, +%T with the type of the CA key, +%t is replaced with type of the certificate being offered, and +%u is replaced by the username being authenticated, If no arguments are specified then the username of the target user will be supplied. .Pp |