1.5 KiB
1.5 KiB
ssh
OpenSSH (OpenBSD Secure Shell) is a set of computer programs providing encrypted communication sessions over a computer network using the Secure Shell (SSH) protocol. It was created as an open source alternative to the proprietary Secure Shell software suite offered by SSH Communications Security. OpenSSH is developed as part of the OpenBSD project, which is led by Theo de Raadt. OpenSSH is occasionally confused with the similarly-named OpenSSL; however, the projects have different purposes and are developed by different teams, the similar name is drawn only from similar goals.
Install and enable on Arco-Linux
Key generation from Master & client
ssh-keygen -t rsa 4098
ssh <user>@<client1> mkdir -p .ssh #type "yes" & "password" for <client>
cat .ssh/id_rsa.pub | ssh <user>@<client> 'cat >> .ssh/authorized_keys'
ssh <user>@<client> "chmod 700 .ssh; chmod 640 .ssh/authorized_keys
NOTE: Do the same from other clients from master & from master to all clients
ssh <user>@<client>