I’m using DVC for several weeks, but I’m now trying to use a ssh remote for the first time.
I configured the ssh remote as indicated in the documentation and each time I’m trying to pull or push on the remote storage I get this error:
I have this error even when I’m providing my ssh password in the dvc config file, or when I’m asking the password with the “ask_password true” option.
My ssh key is using a passphrase and was generated with ssh-keygen (no special CLI arguments).
I’m not sure if ssh-keygen is generating by default a key with bcrypt and KDF support (but ideally I would prefer to use my ssh password and not an ssh private key).
Am I doing something wrong here?
If someone has some insights about this issue, I would be very glad to know how to solve this issue.
When I’m doing a dvc push I’m receiving the following message: Enter a private key passphrase or a password for host 'REMOTE_IP' port '22' user 'USERNAME':
And if I type my ssh password (not my private key passphrase as I would prefer to log directly with my account password), I’m receiving this error: ERROR: unexpected error - OpenSSH private key encryption requires bcrypt with KDF support
The dvc pull command gives me the same error message.