when I use user@ip to login remote system, it report like this:
user@ip
debug1: /etc/ssh/ssh_config line 17: Applying options for * /etc/ssh/ssh_config: lin
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
vi ~/.ssh/config
:%s/GSSAPITrustDns/# GSSAPITrustDns/g
:wq
Similarly, comment other options also, like gssapikeyexchange etc.