Kali root用户SSH远程登录
一、修改SSH参数
修改sshd_config文件
vi /etc/ssh/sshd_config
将#PasswordAuthentication no的注释去掉,并且将NO改为YES //kali中默认是yes
将PermitRootLogin without-password改为
PermitRootLogin yes
二、启动SSH服务
systemctl start ssh
systemctl enable ssh
查看SSH服务状态
systemctl status ssh
重启ssh服务
systemctl restart ssh
三、使用SSH登录工具连接kali