Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Package talk:OpenSSH
Revision as of 08:43, December 27, 2014 by Threesixes (talk | contribs) (rough import of gentoo commits)
keys
Passwordless Authentication
Client
on your client run
root # ssh-keygen -t rsa
then hit enter like 5 times to generate your key move the client ~/.ssh/id_rsa.pub to the server user your logging in as ~/.ssh/authorized_keys
Server
useradd a user
then place clients id_rsa.pub file into the new users ~/.ssh/authorized_keys
Single Machine Testing
root # ssh-keygen -t rsa
enter 5 times
root # mv ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
root # ssh localhost
Intrusion Prevention
ssh is a commonly attacked service. sshguard & fail2ban monitor logs and black list remote users who have repeatedly failed to login.