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.log. arcfourSSH 서버의 파일에 다시 추가해 보겠습니다 sshd_config. sshd_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 마운트이는 동일한 접근 방식을 보여줍니다.

관련 정보