Linux Stuff: How to setup SSH certificates to simplify logins to remote systems
SSH and Server Certificates If you haven’t done this yet, we’re going to make life easy and get the SSH Certificates setup to make it super easy to SSH from our Linux Desktop. You’ll want to make sure to install SSH Server and client on both the machines you’re planning on configuring. Most of the time this is done already. Debian Based machines: apt-get install ssh openssh-server openssh-client Red Hat Based machines: yum install ssh openssh-server openssh-client When that’s done test out connecting from your local machine to your remote host using: ssh steve@208.28.163.39 The authenticity of host ’208.28.163.39 (208.28.163.39)’ can’t be established. RSA key fingerprint is 69:23:4c:49:35:41:ca:ae:23:3f:69:63:b2:ba:12:3c. Are you sure you want to continue connecting (yes/no)? … Continue reading