SSHFS – Use arcfour Cipher with Google Cloud

sshsshfs

I would like to use the arcfour cipher when mounting a drive using sshfs. However, if i specify sshfs -o Ciphers=arcfour my virtual machine resets the connection (I am able to sshfs without this option). Any way to make this work? I am doing this so that sshfs performs faster (I also have compression off).

Best Answer

The arcfour cipher is no longer supported in modern SSH servers because it is considered insecure. You may want to try aes128-ctr or chacha20-poly1305@openssh.com.

Related Topic