will sshfs use my .ssh/config?

7.3k Views Asked by At

I have some options in my ~/.ssh/config:

Host * Ciphers arcfour,blowfish-cbc

These options are intended to speed up transfers. Will sshfs use these options when I do a mount?

1

There are 1 best solutions below

0
On

Yes, sshfs simply calls plain old ssh which is also why you can use your per-host configuration from .ssh/config. Using -F you can specify a different ssh_config if that's what you need.