Remote login via SSH without login
Do following steps...
- Check if there is a file: id_dsa.pub in your .ssh folder.
- If not, create it: # ssh-keygen -t dsa
- Send to the server you want to login
- # cat id_dsa.pub >> .ssh/authorized_keys
After that, you can login to the server via SSH with no-password.
Comments
Post a Comment