Я загрузил свой открытый ключ в github и получил свой закрытый ключ в ~/.ssh/id_rsa.

Даже после добавления RSAAuthentication = yes и PubkeyAuthentication = yes в ~/.ssh/config, похоже, ssh не пытается использовать какой-либо из закрытых ключей:

$ ssh -vT git@github.com
....
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.

Я считаю, что это должно быть что-то вроде:

debug1: Authentications that can continue: publickey
debug1: Trying private key id_rsa...
debug1: No more authentication methods to try.

Я считаю, что права доступа к ~/.ssh и ~/.ssh/id_rsa установлены правильно:

/home/doriad/.ssh $ ls -al ~/.ssh
total 40
drwx------  2 doriad users  4096 Oct 16 16:05 .
drwx------ 81 doriad users 12288 Oct 16 13:22 ..
-rw-------  1 doriad users   174 Oct 16 16:05 config
-rw-------  1 doriad users   147 Oct 16 16:05 config~
-rw-------  1 doriad users  1679 Sep 23 11:45 id_rsa
-rw-------  1 doriad users   402 Sep 23 11:45 id_rsa.pub
-rw-r-----  1 doriad users  5979 Sep 23 11:37 known_hosts

Может кто-нибудь объяснить, почему он не пытается мой закрытый ключ?

0