I found a problem. Newer versions of OpenSSH have disabled the ssh-dss public key algorithm (DSA). DSA is considered too weak, and the OpenSSH community recommends not using it.
If you see an error like this:
Unable to negotiate with 10.96.8.72: the corresponding host key type was not found. Their suggestion: ssh-dss
... then you must reactivate the DSA keys by editing the ~ / .ssh / config file to add the following line:
HostkeyAlgorithms +ssh-dss
You may need to create the ~ / .ssh / config file if it does not already exist.
After creating the file, you must restrict access rights:
chmod 600 ~/.ssh/config
and then do the clone. That should work just fine!
Keith ape
source share