497
个编辑
更改
无编辑摘要
* 默认是不允许root远程登录的,可以再配置文件开启。sudo vim /etc/ssh/sshd_config
找到PermitRootLogin without-password 修改为PermitRootLogin yes
* 重启SSH服务:service sshd restart * 连接Ubuntu,出现错误:Failed SSH Key Exchange/提示key exchange failed.这是密匙交换错误,说明Ubuntu还没有打开密匙交换的配置。# 打开配置文件进行编辑:vim /etc/ssh /ssh_config# 去掉前面的注释符,使用22端口。#* port 22#* protocol 2#* Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc#* MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160# 使用vi /etc/ssh/sshd_config打开并修改服务器端的配置文件。# 在protocol 2 下面粘贴:#* Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc#* MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160# 然后重启sshd服务:service sshd restart