SSH: Difference between revisions

From Han Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
= SSH certificiate authentication =
= SSH certificiate authentication =


Most people are familiar with public key authentication, but they aren't familiar with certificate authentication.
Referenced from https://allthingscloud.eu/2020/01/05/ssh-certificate-based-authentication-a-quick-guide/ as of 2021-10-28
 
* PKI: Public key infrastructure
 


Certificate Authority (CA) Server
Create HOST CA signing keys


<source lang="bash">
$ ssh-keygen -t rsa -N '' -C HOST-CA -b 4096 -f host-ca
</source>


= Tray =
= Tray =

Revision as of 13:28, 28 October 2021

SSH certificiate authentication

Referenced from https://allthingscloud.eu/2020/01/05/ssh-certificate-based-authentication-a-quick-guide/ as of 2021-10-28

Certificate Authority (CA) Server

Create HOST CA signing keys

$ ssh-keygen -t rsa -N '' -C HOST-CA -b 4096 -f host-ca

Tray