After update Mac OS Sierra, Can not use ssh login remote system,how can I fix this?

前端 未结 8 2472
醉酒成梦
醉酒成梦 2021-02-07 01:34

when I use user@ip to login remote system, it report like this:

debug1: /etc/ssh/ssh_config line 17: Applying options for *
/etc/ssh/ssh_config: lin         


        
相关标签:
8条回答
  • 2021-02-07 02:02

    You can try to remove ~/.ssh/config file. It worked for me!

    0 讨论(0)
  • 2021-02-07 02:07

    You probably just need to disable GSSAPITrustDns in the ssh config. The following snippet does it by adding a # before the line:

    vi ~/.ssh/config

    :%s/GSSAPITrustDns/# GSSAPITrustDns/g

    :wq

    Similarly, comment other options also, like gssapikeyexchange etc.

    0 讨论(0)
提交回复
热议问题