首页  :: 新随笔  :: 管理

ssh连接报错处理

Posted on 2023-05-17 08:35  高&玉  阅读(580)  评论(0编辑  收藏  举报

问题现象

[root]# ssh -p 10000 secure@xx.xx.xx.xx
/etc/ssh/ssh_config line 59: Unsupported option "gssapiauthentication"

 

处理方法:注释/etc/ssh/ssh_config文件第59行

[root]# vi /etc/ssh/ssh_config
#       GSSAPIAuthentication yes

 

重启sshd服务

[root]# systemctl restart sshd

 

再次连接无报错