SSH
error: “sign_and_send_pubkey: no mutual signature supported”
$ sh -i /tmp/id_rsa_hype hype@10.10.10.79
sign_and_send_pubkey: no mutual signature supported
hype@10.10.10.79's password:
$ ssh -o 'PubkeyAcceptedKeyTypes +ssh-rsa' -i /tmp/id_rsa_hype hype@10.10.10.79 Welcome to Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic x86_64)
* Documentation: https://help.ubuntu.com/
New release '14.04.5 LTS' available.
Run 'do-release-upgrade' to upgrade to it.
Last login: Fri Feb 16 14:50:29 2018 from 10.10.14.3
hype@Valentine:~$
うまくいかないときの調査
-v をつける
ssh -v -L 3306:127.0.0.1:3306 -p 42022 ethan@chal.imaginaryctf.org
SSHポートフォワーディング
ssh -L 3306:127.0.0.1:3306 -p 42022 ethan@chal.imaginaryctf.org
sftpのみの設定が入っている場合は以下のエラーがでて成功しないことがある。そのときは-Nをつけること。
This service allows sftp connections only.
Connection to chal.imaginaryctf.org closed.
ssh -N -L 3306:127.0.0.1:3306 -p 42022 ethan@chal.imaginaryctf.org