Solution to this problem: Bad permissions: ignore key: /home/USERNAME/.ssh/id_rsa.
Error:
Source code viewer
$ ssh -i ~/.ssh/id_rsa example@browse-tutorials.com reverse mapping checking getaddrinfo for browse-tutorials.com [127.0.0.1] failed - POSSIBLE BREAK-IN ATTEMPT! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0744 for '/home/USERNAME/.ssh/id_rsa' are too open. It is recommended that your private key files are NOT accessible by others. This private key will be ignored. bad permissions: ignore key: /home/USERNAME/.ssh/id_rsa Permission denied (publickey,gssapi-keyex,gssapi-with-mic).Programming Language: Text
Solution:
Source code viewer
cd ~/ chmod 700 id_rsaProgramming Language: Bash