SSHFでarcfour暗号化を使用する方法は?

SSHFでarcfour暗号化を使用する方法は?

Raspbian Raspberry Piの最近の更新のためにarcfour sshfsが失敗しました。

お客様から:

$ sshfs pi:~ /tmp/alskdjflkasdf/ -o Ciphers=arcfour
read: Connection reset by peer

サーバーから/var/log/auth.log

Oct 23 22:13:58 raspberrypi sshd[5909]: fatal: no matching cipher found: client arcfour server aes128-ctr,aes192-ctr,aes256-ctr,[email protected],[email protected],[email protected] [preauth]

arcfourを再度有効にするには?

ベストアンサー1

サーバーが出力に応じてそれを許可したくないようですauth.logarcfourSSHサーバーのファイルにもう一度追加してみましょうsshd_configsshd_configマニュアルページから:

抜粋
 Ciphers
        Specifies the ciphers allowed for protocol version 2.  Multiple 
        ciphers must be comma-separated.  The supported ciphers are 
        “3des-cbc”, “aes128-cbc”, “aes192-cbc”, “aes256-cbc”, “aes128-ctr”, 
        “aes192-ctr”, “aes256-ctr”, “[email protected]”, [email protected]”, “arcfour128”, “arcfour256”,
        “arcfour”, “blowfish-cbc”, and “cast128-cbc”.  The default is:

            aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,
            [email protected],[email protected],
            aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,
            aes256-cbc,arcfour

-o Ciphers=arcfourちなみに、私が知っている限り、あなたのスイッチには何の問題もありません。以下のタイトルのSU Q&Aも見つかりました。圧縮や暗号化なしのsshfsマウントこれは同じアプローチを示しています。

おすすめ記事