SSH: Difference between revisions
iwu |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
= SSH certificiate authentication = | |||
Referenced from https://allthingscloud.eu/2020/01/05/ssh-certificate-based-authentication-a-quick-guide/ as of 2021-10-28 | |||
* https://smallstep.com/docs/tutorials/ssh-certificate-login | |||
* https://smallstep.com/blog/use-ssh-certificates/ | |||
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 = | ||
* [https://medium.com/@jasonrigden/hardening-ssh-1bcb99cd4cef Hardening SSH] | * [https://medium.com/@jasonrigden/hardening-ssh-1bcb99cd4cef Hardening SSH] | ||
* [https://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html OpenSSH Security Practices] | * [https://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html OpenSSH Security Practices] |
Latest revision as of 12:29, 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
- https://smallstep.com/docs/tutorials/ssh-certificate-login
- https://smallstep.com/blog/use-ssh-certificates/
Certificate Authority (CA) Server Create HOST CA signing keys
$ ssh-keygen -t rsa -N '' -C HOST-CA -b 4096 -f host-ca