antoniy / Gidder

Git server for Android
111 stars 56 forks source link

git server use old ssh-dss #7

Open thmstong opened 8 years ago

thmstong commented 8 years ago

Unable to negotiate with 192.168.1.101: no matching host key type found. Their offer: ssh-dss

affeltranger commented 8 years ago

DSA was dropped in recent ssh versions. You'll have to add

Host [your phone's IP or hostname]
    HostkeyAlgorithms ssh-dss

to your ~/.ssh/config file to enable legacy support for the encryption used by gidder.

More info here: http://www.openssh.com/legacy.html

europa commented 5 years ago

DSA was dropped in recent ssh versions. You'll have to add

Host [your phone's IP or hostname]
    HostkeyAlgorithms ssh-dss

to your ~/.ssh/config file to enable legacy support for the encryption used by gidder.

More info here: http://www.openssh.com/legacy.html

This solve my problem,thanks a lot.